Userspace code will need to keep on checking for both ENODEV and ENOENT as long as older kernel modules are around.
Signed-off-by: Jarno Rajahalme <[email protected]> --- datapath/datapath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath/datapath.c b/datapath/datapath.c index 30e26a7..14c5c54 100644 --- a/datapath/datapath.c +++ b/datapath/datapath.c @@ -1679,7 +1679,7 @@ static struct vport *lookup_vport(struct net *net, vport = ovs_vport_rtnl_rcu(dp, port_no); if (!vport) - return ERR_PTR(-ENOENT); + return ERR_PTR(-ENODEV); return vport; } else return ERR_PTR(-EINVAL); -- 1.7.10.4 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
