diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2014-12-11 18:56:04 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-01-13 08:23:02 -0500 |
commit | 58fff51784cb5e1bcc06a1417be26eec4288507c (patch) | |
tree | f96bbfcdd959fb9d458ad119959133aafe535fd3 | |
parent | 1ab5786ae45ace5d13517f21508607c5f795a822 (diff) |
arm64/uaccess: fix sparse errors
virtio wants to read bitwise types from userspace using get_user. At the
moment this triggers sparse errors, since the value is passed through an
integer.
Fix that up using __force.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Will Deacon <will.deacon@arm.com>
-rw-r--r-- | arch/arm64/include/asm/uaccess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/uaccess.h b/arch/arm64/include/asm/uaccess.h index 3bf8f4e99a51..9a2069bbc00d 100644 --- a/arch/arm64/include/asm/uaccess.h +++ b/arch/arm64/include/asm/uaccess.h | |||
@@ -147,7 +147,7 @@ do { \ | |||
147 | default: \ | 147 | default: \ |
148 | BUILD_BUG(); \ | 148 | BUILD_BUG(); \ |
149 | } \ | 149 | } \ |
150 | (x) = (__typeof__(*(ptr)))__gu_val; \ | 150 | (x) = (__force __typeof__(*(ptr)))__gu_val; \ |
151 | } while (0) | 151 | } while (0) |
152 | 152 | ||
153 | #define __get_user(x, ptr) \ | 153 | #define __get_user(x, ptr) \ |