mirror of https://gitee.com/openkylin/linux.git
macvtap: fix uninitialized return value macvtap_ioctl_set_queue()
Return -EINVAL on illegal flag instead of uninitialized value. This fixes the kbuild test warning. Signed-off-by: Jason Wang <jasowang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d9a90a3105
commit
f57855a54f
|
@ -969,6 +969,8 @@ static int macvtap_ioctl_set_queue(struct file *file, unsigned int flags)
|
|||
ret = macvtap_enable_queue(vlan->dev, file, q);
|
||||
else if (flags & IFF_DETACH_QUEUE)
|
||||
ret = macvtap_disable_queue(q);
|
||||
else
|
||||
ret = -EINVAL;
|
||||
|
||||
macvtap_put_vlan(vlan);
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue