diff options
author | Paolo Abeni <pabeni@redhat.com> | 2019-05-03 17:01:37 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-05-05 10:38:04 -0700 |
commit | 0e219ae48c3bbf382ef96adf3825457315728c03 (patch) | |
tree | caab033dc6fe9c00528d6fc341d53b0b9ce368e5 /net/ipv6/udp.c | |
parent | f5737cbadb7d07c4f71fc5f073ccc7d8d8985a8f (diff) |
net: use indirect calls helpers for L3 handler hooks
So that we avoid another indirect call per RX packet in the common
case.
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 2464fba569b4..b3fcafaf5576 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -36,6 +36,7 @@ #include <linux/skbuff.h> #include <linux/slab.h> #include <linux/uaccess.h> +#include <linux/indirect_call_wrapper.h> #include <net/addrconf.h> #include <net/ndisc.h> @@ -1021,7 +1022,7 @@ static void udp_v6_early_demux(struct sk_buff *skb) } } -static __inline__ int udpv6_rcv(struct sk_buff *skb) +INDIRECT_CALLABLE_SCOPE int udpv6_rcv(struct sk_buff *skb) { return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP); } |