aboutsummaryrefslogtreecommitdiff
path: root/datapath/vport.h
diff options
context:
space:
mode:
authorPravin Shelar <pshelar@nicira.com>2011-09-08 15:18:42 -0700
committerPravin Shelar <pshelar@nicira.com>2011-09-08 15:18:42 -0700
commitff8d7a5e81625bbb13d33ca73888fc848b02db83 (patch)
treecb19e04f80088ad76d6d1b9b805b28b663859cd0 /datapath/vport.h
parentda3db88f3a7993a8e2a118542704e0babbe93fac (diff)
Strip down vport interface : iflink
Remove iflink from vport interface. iflink is not used anywhere in OVS. So there is not need to have iflink as vport attribute. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'datapath/vport.h')
-rw-r--r--datapath/vport.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/datapath/vport.h b/datapath/vport.h
index 388ba1ce..0a6d831c 100644
--- a/datapath/vport.h
+++ b/datapath/vport.h
@@ -46,7 +46,6 @@ int vport_is_running(const struct vport *);
unsigned char vport_get_operstate(const struct vport *);
int vport_get_ifindex(const struct vport *);
-int vport_get_iflink(const struct vport *);
int vport_get_mtu(const struct vport *);
@@ -172,9 +171,6 @@ struct vport_parms {
* @get_operstate: Get the device's operating state.
* @get_ifindex: Get the system interface index associated with the device.
* May be null if the device does not have an ifindex.
- * @get_iflink: Get the system interface index associated with the device that
- * will be used to send packets (may be different than ifindex for tunnels).
- * May be null if the device does not have an iflink.
* @get_mtu: Get the device's MTU. May be %NULL if the device does not have an
* MTU (as e.g. some tunnels do not).
* @send: Send a packet on the device. Returns the length of the packet sent.
@@ -209,7 +205,6 @@ struct vport_ops {
unsigned char (*get_operstate)(const struct vport *);
int (*get_ifindex)(const struct vport *);
- int (*get_iflink)(const struct vport *);
int (*get_mtu)(const struct vport *);