[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1306043169-26659-1-git-send-email-emmanuel.grumbach@intel.com>
Date: Sun, 22 May 2011 08:46:09 +0300
From: emmanuel.grumbach@...el.com
To: davem@...emloft.net, netdev@...r.kernel.org
Cc: Emmanuel Grumbach <emmanuel.grumbach@...el.com>
Subject: [PATCH] net: skb_trim explicitely check the linearity instead of data_len
From: Emmanuel Grumbach <emmanuel.grumbach@...el.com>
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: Emmanuel Grumbach <emmanuel.grumbach@...el.com>
---
include/linux/skbuff.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index bf221d6..a4f680c 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1439,7 +1439,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;
}
--
1.7.1
---------------------------------------------------------------------
Intel Israel (74) Limited
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists