* [PATCH] kvm: vfio: silence GCC warning
@ 2014-01-10 0:28 Paul Bolle
2014-01-10 17:59 ` Alex Williamson
2014-01-15 11:02 ` Paolo Bonzini
0 siblings, 2 replies; 3+ messages in thread
From: Paul Bolle @ 2014-01-10 0:28 UTC (permalink / raw)
To: Gleb Natapov, Paolo Bonzini; +Cc: kvm, linux-kernel
Building vfio.o triggers a GCC warning (when building for 32 bits x86):
arch/x86/kvm/../../../virt/kvm/vfio.c: In function 'kvm_vfio_set_group':
arch/x86/kvm/../../../virt/kvm/vfio.c:104:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
void __user *argp = (void __user *)arg;
^
Silence this warning by casting arg to unsigned long.
argp's current type, "void __user *", is always casted to "int32_t
__user *". So its type might as well be changed to "int32_t __user *".
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
---
Compile tested on both 32 and 64 bits x86. I've no KVM capable hardware
that is already running v3.13-rc* at hand. Besides, I wouldn't know how
to test the codepaths I'm changing here.
virt/kvm/vfio.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/virt/kvm/vfio.c b/virt/kvm/vfio.c
index ca4260e..b4f9507 100644
--- a/virt/kvm/vfio.c
+++ b/virt/kvm/vfio.c
@@ -101,14 +101,14 @@ static int kvm_vfio_set_group(struct kvm_device *dev, long attr, u64 arg)
struct kvm_vfio *kv = dev->private;
struct vfio_group *vfio_group;
struct kvm_vfio_group *kvg;
- void __user *argp = (void __user *)arg;
+ int32_t __user *argp = (int32_t __user *)(unsigned long)arg;
struct fd f;
int32_t fd;
int ret;
switch (attr) {
case KVM_DEV_VFIO_GROUP_ADD:
- if (get_user(fd, (int32_t __user *)argp))
+ if (get_user(fd, argp))
return -EFAULT;
f = fdget(fd);
@@ -148,7 +148,7 @@ static int kvm_vfio_set_group(struct kvm_device *dev, long attr, u64 arg)
return 0;
case KVM_DEV_VFIO_GROUP_DEL:
- if (get_user(fd, (int32_t __user *)argp))
+ if (get_user(fd, argp))
return -EFAULT;
f = fdget(fd);
--
1.8.4.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] kvm: vfio: silence GCC warning
2014-01-10 0:28 [PATCH] kvm: vfio: silence GCC warning Paul Bolle
@ 2014-01-10 17:59 ` Alex Williamson
2014-01-15 11:02 ` Paolo Bonzini
1 sibling, 0 replies; 3+ messages in thread
From: Alex Williamson @ 2014-01-10 17:59 UTC (permalink / raw)
To: Paul Bolle; +Cc: Paolo Bonzini, kvm, linux-kernel, gleb
On Fri, 2014-01-10 at 01:28 +0100, Paul Bolle wrote:
> Building vfio.o triggers a GCC warning (when building for 32 bits x86):
> arch/x86/kvm/../../../virt/kvm/vfio.c: In function 'kvm_vfio_set_group':
> arch/x86/kvm/../../../virt/kvm/vfio.c:104:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
> void __user *argp = (void __user *)arg;
> ^
>
> Silence this warning by casting arg to unsigned long.
>
> argp's current type, "void __user *", is always casted to "int32_t
> __user *". So its type might as well be changed to "int32_t __user *".
>
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Acked-by: Alex Williamson <alex.williamson@redhat.com>
> ---
> Compile tested on both 32 and 64 bits x86. I've no KVM capable hardware
> that is already running v3.13-rc* at hand. Besides, I wouldn't know how
> to test the codepaths I'm changing here.
>
> virt/kvm/vfio.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/virt/kvm/vfio.c b/virt/kvm/vfio.c
> index ca4260e..b4f9507 100644
> --- a/virt/kvm/vfio.c
> +++ b/virt/kvm/vfio.c
> @@ -101,14 +101,14 @@ static int kvm_vfio_set_group(struct kvm_device *dev, long attr, u64 arg)
> struct kvm_vfio *kv = dev->private;
> struct vfio_group *vfio_group;
> struct kvm_vfio_group *kvg;
> - void __user *argp = (void __user *)arg;
> + int32_t __user *argp = (int32_t __user *)(unsigned long)arg;
> struct fd f;
> int32_t fd;
> int ret;
>
> switch (attr) {
> case KVM_DEV_VFIO_GROUP_ADD:
> - if (get_user(fd, (int32_t __user *)argp))
> + if (get_user(fd, argp))
> return -EFAULT;
>
> f = fdget(fd);
> @@ -148,7 +148,7 @@ static int kvm_vfio_set_group(struct kvm_device *dev, long attr, u64 arg)
> return 0;
>
> case KVM_DEV_VFIO_GROUP_DEL:
> - if (get_user(fd, (int32_t __user *)argp))
> + if (get_user(fd, argp))
> return -EFAULT;
>
> f = fdget(fd);
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] kvm: vfio: silence GCC warning
2014-01-10 0:28 [PATCH] kvm: vfio: silence GCC warning Paul Bolle
2014-01-10 17:59 ` Alex Williamson
@ 2014-01-15 11:02 ` Paolo Bonzini
1 sibling, 0 replies; 3+ messages in thread
From: Paolo Bonzini @ 2014-01-15 11:02 UTC (permalink / raw)
To: Paul Bolle; +Cc: Gleb Natapov, kvm, linux-kernel
Il 10/01/2014 01:28, Paul Bolle ha scritto:
> Building vfio.o triggers a GCC warning (when building for 32 bits x86):
> arch/x86/kvm/../../../virt/kvm/vfio.c: In function 'kvm_vfio_set_group':
> arch/x86/kvm/../../../virt/kvm/vfio.c:104:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
> void __user *argp = (void __user *)arg;
> ^
>
> Silence this warning by casting arg to unsigned long.
>
> argp's current type, "void __user *", is always casted to "int32_t
> __user *". So its type might as well be changed to "int32_t __user *".
>
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
> ---
> Compile tested on both 32 and 64 bits x86. I've no KVM capable hardware
> that is already running v3.13-rc* at hand. Besides, I wouldn't know how
> to test the codepaths I'm changing here.
>
> virt/kvm/vfio.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/virt/kvm/vfio.c b/virt/kvm/vfio.c
> index ca4260e..b4f9507 100644
> --- a/virt/kvm/vfio.c
> +++ b/virt/kvm/vfio.c
> @@ -101,14 +101,14 @@ static int kvm_vfio_set_group(struct kvm_device *dev, long attr, u64 arg)
> struct kvm_vfio *kv = dev->private;
> struct vfio_group *vfio_group;
> struct kvm_vfio_group *kvg;
> - void __user *argp = (void __user *)arg;
> + int32_t __user *argp = (int32_t __user *)(unsigned long)arg;
> struct fd f;
> int32_t fd;
> int ret;
>
> switch (attr) {
> case KVM_DEV_VFIO_GROUP_ADD:
> - if (get_user(fd, (int32_t __user *)argp))
> + if (get_user(fd, argp))
> return -EFAULT;
>
> f = fdget(fd);
> @@ -148,7 +148,7 @@ static int kvm_vfio_set_group(struct kvm_device *dev, long attr, u64 arg)
> return 0;
>
> case KVM_DEV_VFIO_GROUP_DEL:
> - if (get_user(fd, (int32_t __user *)argp))
> + if (get_user(fd, argp))
> return -EFAULT;
>
> f = fdget(fd);
>
Applied to kvm/queue, thanks.
Paolo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-01-15 11:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-10 0:28 [PATCH] kvm: vfio: silence GCC warning Paul Bolle
2014-01-10 17:59 ` Alex Williamson
2014-01-15 11:02 ` Paolo Bonzini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).