Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4264f27 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach Committed by David S. Miller
Browse files

net: skb_trim explicitely check the linearity instead of data_len



The purpose of the check on data_len is to check linearity, so use the inline
helper for this. No overhead and more explicit.

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c378a9c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1442,7 +1442,7 @@ extern int ___pskb_trim(struct sk_buff *skb, unsigned int len);

static inline void __skb_trim(struct sk_buff *skb, unsigned int len)
{
	if (unlikely(skb->data_len)) {
	if (unlikely(skb_is_nonlinear(skb))) {
		WARN_ON(1);
		return;
	}