aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/core/skbuff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 8731c39b7a54..21a22cce6e53 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -109,7 +109,7 @@ static const struct pipe_buf_operations sock_pipe_buf_ops = {
109 * @skb: buffer 109 * @skb: buffer
110 * @sz: size 110 * @sz: size
111 * @addr: address 111 * @addr: address
112 * @panic: skb_over_panic or skb_under_panic 112 * @msg: skb_over_panic or skb_under_panic
113 * 113 *
114 * Out-of-line support for skb_put() and skb_push(). 114 * Out-of-line support for skb_put() and skb_push().
115 * Called via the wrapper skb_over_panic() or skb_under_panic(). 115 * Called via the wrapper skb_over_panic() or skb_under_panic().
@@ -117,10 +117,10 @@ static const struct pipe_buf_operations sock_pipe_buf_ops = {
117 * __builtin_return_address is not used because it is not always reliable. 117 * __builtin_return_address is not used because it is not always reliable.
118 */ 118 */
119static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr, 119static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
120 const char panic[]) 120 const char msg[])
121{ 121{
122 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n", 122 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
123 panic, addr, skb->len, sz, skb->head, skb->data, 123 msg, addr, skb->len, sz, skb->head, skb->data,
124 (unsigned long)skb->tail, (unsigned long)skb->end, 124 (unsigned long)skb->tail, (unsigned long)skb->end,
125 skb->dev ? skb->dev->name : "<NULL>"); 125 skb->dev ? skb->dev->name : "<NULL>");
126 BUG(); 126 BUG();