diff options
author | Thomas Graf | 2005-08-21 02:27:34 +0200 |
---|---|---|
committer | David S. Miller | 2005-08-30 01:03:10 +0200 |
commit | 33d043d65bbd3d97efca96c9bbada443cac3c4da (patch) | |
tree | 1411bba571bac24220a938d204ebf651b9df49c5 | |
parent | [IPV4]: Remove some dead code from ip_forward() (diff) | |
download | kernel-qcow2-linux-33d043d65bbd3d97efca96c9bbada443cac3c4da.tar.gz kernel-qcow2-linux-33d043d65bbd3d97efca96c9bbada443cac3c4da.tar.xz kernel-qcow2-linux-33d043d65bbd3d97efca96c9bbada443cac3c4da.zip |
[IPV4]: ip_finish_output() can be inlined
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
-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; |