net/virtio: do not require IO permissions
authorDavid Marchand <david.marchand@redhat.com>
Tue, 22 Oct 2019 08:21:43 +0000 (10:21 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Fri, 25 Oct 2019 09:54:10 +0000 (11:54 +0200)
commitda4880609cba9364752cb4c6d36293fba5d98ccd
tree635322a43c34717f5f865c5deb685547c9b25366
parente02b661b51c575df513da550ced0be3dd62020cc
net/virtio: do not require IO permissions

On x86, iopl permissions are only available to root user (or users that
have the CAP_SYS_RAWIO capability).
But those permissions are only needed when the virtio devices accesses
are done with inb/outb instructions, which is when the device is bound
to a UIO kernel module.

So far, the virtio driver was refusing to register based on the check
on IO permissions.
This check does not make sense when binding the device to vfio.

Now that the check on IO permissions has been abstracted in the ioport
API, we can remove it on virtio side.

We still need to call rte_eal_iopl_init() in the virtio constructor so
that the interrupt thread inherits this permission in the case it could
be used with UIO later.

Signed-off-by: David Marchand <david.marchand@redhat.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Acked-by: Tiwei Bie <tiwei.bie@intel.com>
drivers/net/virtio/virtio_ethdev.c