diff options
author | Thomas Graf <tgraf@suug.ch> | 2005-08-20 17:27:34 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 16:03:10 -0700 |
commit | 33d043d65bbd3d97efca96c9bbada443cac3c4da (patch) | |
tree | 1411bba571bac24220a938d204ebf651b9df49c5 /net/ipv4 | |
parent | 9070683bdac59a3b26e2ce6dd0d05fbfcb3fc7d8 (diff) | |
download | linux-33d043d65bbd3d97efca96c9bbada443cac3c4da.tar.bz2 |
[IPV4]: ip_finish_output() can be inlined
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ip_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index 19f24f778dc8..3f1a263e1249 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c @@ -200,7 +200,7 @@ static inline int ip_finish_output2(struct sk_buff *skb) return -EINVAL; } -static int ip_finish_output(struct sk_buff *skb) +static inline int ip_finish_output(struct sk_buff *skb) { struct net_device *dev = skb->dst->dev; |