projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
453e9dc
)
net: Fix coding style in skb_push()
author
Ganesh Goudar
<ganeshgr@chelsio.com>
Thu, 2 Aug 2018 10:04:52 +0000
(15:34 +0530)
committer
David S. Miller
<davem@davemloft.net>
Thu, 2 Aug 2018 17:29:25 +0000
(10:29 -0700)
Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.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 266b954f763eb8bebc7e6400199b9ed885cd3556..51b0a9126e121c3cf092a6baaa6fe58d749213a2 100644
(file)
--- a/
net/core/skbuff.c
+++ b/
net/core/skbuff.c
@@
-1715,7
+1715,7
@@
void *skb_push(struct sk_buff *skb, unsigned int len)
{
skb->data -= len;
skb->len += len;
- if (unlikely(skb->data
<
skb->head))
+ if (unlikely(skb->data
<
skb->head))
skb_under_panic(skb, len, __builtin_return_address(0));
return skb->data;
}