diff options
author | John W. Linville <linville@tuxdriver.com> | 2015-05-13 19:57:27 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-13 22:59:13 +0300 |
commit | 35d32e8fe4ab44180e46a0dd54abea6985398d00 (patch) | |
tree | b848fbac0cde4d7e40f193279205e81ea0a72829 /net/openvswitch | |
parent | 125907ae5ef000a3855b33f6545d672275413836 (diff) | |
download | linux-35d32e8fe4ab44180e46a0dd54abea6985398d00.tar.xz |
geneve: move definition of geneve_hdr() to geneve.h
This is a static inline with identical definitions in multiple places...
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/vport-geneve.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/openvswitch/vport-geneve.c b/net/openvswitch/vport-geneve.c index bf02fd5808c9..208c576bd1b6 100644 --- a/net/openvswitch/vport-geneve.c +++ b/net/openvswitch/vport-geneve.c @@ -46,11 +46,6 @@ static inline struct geneve_port *geneve_vport(const struct vport *vport) return vport_priv(vport); } -static inline struct genevehdr *geneve_hdr(const struct sk_buff *skb) -{ - return (struct genevehdr *)(udp_hdr(skb) + 1); -} - /* Convert 64 bit tunnel ID to 24 bit VNI. */ static void tunnel_id_to_vni(__be64 tun_id, __u8 *vni) { |