diff options
| author | Pravin B Shelar <[email protected]> | 2015-08-30 00:44:06 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2015-08-30 02:07:15 +0000 |
| commit | 3eedb41fb43461b5fde3f72fd00a7706f0b90103 (patch) | |
| tree | 96851bd448a2878fac5ba1e8e0c21b049f585547 /net/openvswitch/datapath.h | |
| parent | openvswitch: Remove vport get_name() (diff) | |
| download | kernel-3eedb41fb43461b5fde3f72fd00a7706f0b90103.tar.gz kernel-3eedb41fb43461b5fde3f72fd00a7706f0b90103.zip | |
openvswitch: Remove egress_tun_info.
tun info is passed using skb-dst pointer. Now we have
converted all vports to netdev based implementation so
Now we can remove redundant pointer to tun-info from OVS_CB.
Signed-off-by: Pravin B Shelar <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/openvswitch/datapath.h')
| -rw-r--r-- | net/openvswitch/datapath.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/openvswitch/datapath.h b/net/openvswitch/datapath.h index 4e785ab88973..da15fd3f3c34 100644 --- a/net/openvswitch/datapath.h +++ b/net/openvswitch/datapath.h @@ -94,15 +94,12 @@ struct datapath { /** * struct ovs_skb_cb - OVS data in skb CB - * @egress_tun_key: Tunnel information about this packet on egress path. - * NULL if the packet is not being tunneled. * @input_vport: The original vport packet came in on. This value is cached * when a packet is received by OVS. * @mru: The maximum received fragement size; 0 if the packet is not * fragmented. */ struct ovs_skb_cb { - struct ip_tunnel_info *egress_tun_info; struct vport *input_vport; u16 mru; }; |
