vfio: fix ioctl error handling
authorMichael S. Tsirkin <[email protected]>
Sun, 28 Feb 2016 14:31:39 +0000 (16:31 +0200)
committerAlex Williamson <[email protected]>
Sun, 28 Feb 2016 14:38:52 +0000 (07:38 -0700)
commit8160c4e455820d5008a1116d2dca35f0363bb062
tree624ca03b148b98379963ff4e1d4df85f75f7e087
parent81f70ba233d5f660e1ea5fe23260ee323af5d53a
vfio: fix ioctl error handling

Calling return copy_to_user(...) in an ioctl will not
do the right thing if there's a pagefault:
copy_to_user returns the number of bytes not copied
in this case.

Fix up vfio to do
return copy_to_user(...)) ?
-EFAULT : 0;

everywhere.

Cc: [email protected]
Signed-off-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Alex Williamson <[email protected]>
drivers/vfio/pci/vfio_pci.c
drivers/vfio/platform/vfio_platform_common.c
drivers/vfio/vfio_iommu_type1.c