projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e18750
)
net: remove BUG_ON from __pskb_pull_tail
author
Li RongQing
<lirongqing@baidu.com>
Tue, 13 Nov 2018 01:16:52 +0000
(09:16 +0800)
committer
David S. Miller
<davem@davemloft.net>
Thu, 15 Nov 2018 23:07:50 +0000
(15:07 -0800)
if list is NULL pointer, and the following access of list
will trigger panic, which is same as BUG_ON
Signed-off-by: Li RongQing <lirongqing@baidu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/skbuff.c
patch
|
blob
|
history
diff --git
a/net/core/skbuff.c
b/net/core/skbuff.c
index fcb1155a00ec3d4fc4d665c41b37ca980f93bfcb..f95ab41c9fb9c6dd04d585c44cd706d910c1b075 100644
(file)
--- a/
net/core/skbuff.c
+++ b/
net/core/skbuff.c
@@
-1925,8
+1925,6
@@
void *__pskb_pull_tail(struct sk_buff *skb, int delta)
struct sk_buff *insp = NULL;
do {
- BUG_ON(!list);
-
if (list->len <= eat) {
/* Eaten as whole. */
eat -= list->len;