From: Harvey Harrison Date: Thu, 17 Jul 2008 03:12:30 +0000 (-0700) Subject: net: make __skb_splice_bits static X-Git-Tag: accepted/tizen/common/20141203.182822~21394^2~109 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b1c65faa27f5ade3915e4bbc9186b6e64d2d6ec;p=platform%2Fkernel%2Flinux-arm64.git net: make __skb_splice_bits static net/core/skbuff.c:1335:5: warning: symbol '__skb_splice_bits' was not declared. Should it be static? Signed-off-by: Harvey Harrison Signed-off-by: David S. Miller --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 48a4372..e411567 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -1332,7 +1332,7 @@ static inline int __splice_segment(struct page *page, unsigned int poff, * Map linear and fragment data from the skb to spd. It reports failure if the * pipe is full or if we already spliced the requested length. */ -int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset, +static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset, unsigned int *len, struct splice_pipe_desc *spd) {