aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch
diff options
context:
space:
mode:
authorZhang Shengju <zhangshengju@cmss.chinamobile.com>2016-05-31 13:41:02 +0000
committerDavid S. Miller <davem@davemloft.net>2016-06-02 18:05:47 -0400
commit684ff4ef5edd758c47929b852b4ea79be56f8bc0 (patch)
tree0534f63a29ede96f6495fb6eee2617bf3ec780ec /net/openvswitch
parentnet: ethernet: wiznet: Remove create_workqueue (diff)
downloadlinux-dev-684ff4ef5edd758c47929b852b4ea79be56f8bc0.tar.xz
linux-dev-684ff4ef5edd758c47929b852b4ea79be56f8bc0.zip
ovs: set name assign type of internal port
Set name_assign_type of internal port to NET_NAME_USER. Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com> Acked-by: Pravin B Shelar <pshelar@ovn.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
-rw-r--r--net/openvswitch/vport-internal_dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/vport-internal_dev.c b/net/openvswitch/vport-internal_dev.c
index 2ee48e447b72..434e04c3a189 100644
--- a/net/openvswitch/vport-internal_dev.c
+++ b/net/openvswitch/vport-internal_dev.c
@@ -195,7 +195,7 @@ static struct vport *internal_dev_create(const struct vport_parms *parms)
}
vport->dev = alloc_netdev(sizeof(struct internal_dev),
- parms->name, NET_NAME_UNKNOWN, do_setup);
+ parms->name, NET_NAME_USER, do_setup);
if (!vport->dev) {
err = -ENOMEM;
goto error_free_vport;