diff options
author | Gao Feng <gfree.wind@vip.163.com> | 2017-09-22 10:25:22 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-22 20:43:13 -0700 |
commit | 242c1a28eb61cb34974e8aa05235d84355940a8a (patch) | |
tree | 11769ca81f1be0dc16a4d47b9945e6f122ba57c8 /net/batman-adv | |
parent | dd5437974964c759570d68e50ce13c313808f79a (diff) |
net: Remove useless function skb_header_release
There is no one which would invokes the function skb_header_release.
So just remove it now.
Signed-off-by: Gao Feng <gfree.wind@vip.163.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/soft-interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c index 10f7edfb176e..c2c986746d0b 100644 --- a/net/batman-adv/soft-interface.c +++ b/net/batman-adv/soft-interface.c @@ -69,7 +69,7 @@ int batadv_skb_head_push(struct sk_buff *skb, unsigned int len) int result; /* TODO: We must check if we can release all references to non-payload - * data using skb_header_release in our skbs to allow skb_cow_header to + * data using __skb_header_release in our skbs to allow skb_cow_header to * work optimally. This means that those skbs are not allowed to read * or write any data which is before the current position of skb->data * after that call and thus allow other skbs with the same data buffer |