Commit 8ed421dc authored by Jesper Juhl's avatar Jesper Juhl Committed by David S. Miller

[NET]: Fix inline keyword usage in skbuff.c

Signed-off-by: default avatarJesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 44afc83c
...@@ -1350,7 +1350,7 @@ void skb_add_mtu(int mtu) ...@@ -1350,7 +1350,7 @@ void skb_add_mtu(int mtu)
} }
#endif #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, struct sk_buff* skb1,
const u32 len, const int pos) const u32 len, const int pos)
{ {
...@@ -1371,7 +1371,7 @@ static void inline skb_split_inside_header(struct sk_buff *skb, ...@@ -1371,7 +1371,7 @@ static void inline skb_split_inside_header(struct sk_buff *skb,
skb->tail = skb->data + len; 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, struct sk_buff* skb1,
const u32 len, int pos) const u32 len, int pos)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment