From: Jesper Juhl Date: Mon, 29 Nov 2004 11:45:22 +0000 (-0800) Subject: [NET]: Fix inline keyword usage in skbuff.c X-Git-Tag: v2.6.10-rc3~56^2^2 X-Git-Url: http://git.neil.brown.name/?a=commitdiff_plain;h=8ed421dcaf125f58a1663410e85d016a120023e0;p=history.git [NET]: Fix inline keyword usage in skbuff.c Signed-off-by: Jesper Juhl Signed-off-by: David S. Miller --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 0bc35a015555..3e991428fb3d 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -1350,7 +1350,7 @@ void skb_add_mtu(int mtu) } #endif -static void inline skb_split_inside_header(struct sk_buff *skb, +static inline void skb_split_inside_header(struct sk_buff *skb, struct sk_buff* skb1, const u32 len, const int pos) { @@ -1371,7 +1371,7 @@ static void inline skb_split_inside_header(struct sk_buff *skb, skb->tail = skb->data + len; } -static void inline skb_split_no_header(struct sk_buff *skb, +static inline void skb_split_no_header(struct sk_buff *skb, struct sk_buff* skb1, const u32 len, int pos) {