Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit db6ae615 authored by Scott Wood's avatar Scott Wood Committed by Gleb Natapov
Browse files

kvm: Add compat_ioctl for device control API



This API shouldn't have 32/64-bit issues, but VFS assumes it does
unless told otherwise.

Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
Signed-off-by: default avatarGleb Natapov <gleb@redhat.com>
parent dfd2bb84
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2221,6 +2221,9 @@ static int kvm_device_release(struct inode *inode, struct file *filp)

static const struct file_operations kvm_device_fops = {
	.unlocked_ioctl = kvm_device_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl = kvm_device_ioctl,
#endif
	.release = kvm_device_release,
};