X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=datapath%2Fvport.h;h=6c4da24fb19133ebfc1975d7bdadb963ae7f4cae;hb=9197df76b46ff6fbe1f7a522961730ffc55a860d;hp=bbbb2141483e6960b584fcc8756d2b03d5e6b082;hpb=a89721b529d83aac3a09d5027a01756771c78187;p=sliver-openvswitch.git diff --git a/datapath/vport.h b/datapath/vport.h index bbbb21414..6c4da24fb 100644 --- a/datapath/vport.h +++ b/datapath/vport.h @@ -30,7 +30,6 @@ void vport_del(struct vport *); struct vport *vport_locate(const char *name); -int vport_set_mtu(struct vport *, int mtu); int vport_set_addr(struct vport *, const unsigned char *); int vport_set_stats(struct vport *, struct rtnl_link_stats64 *); @@ -156,7 +155,6 @@ struct vport_parms { * @get_options: Appends vport-specific attributes for the configuration of an * existing vport to a &struct sk_buff. May be %NULL for a vport that does not * have any configuration. - * @set_mtu: Set the device's MTU. May be null if not supported. * @set_addr: Set the device's MAC address. May be null if not supported. * @get_name: Get the device's name. * @get_addr: Get the device's MAC address. @@ -190,7 +188,6 @@ struct vport_ops { int (*set_options)(struct vport *, struct nlattr *); int (*get_options)(const struct vport *, struct sk_buff *); - int (*set_mtu)(struct vport *, int mtu); int (*set_addr)(struct vport *, const unsigned char *); /* Called with rcu_read_lock or RTNL lock. */