浏览代码

blackfin/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: Steven Miao <realmz6@gmail.com>
Michael S. Tsirkin 10 年之前
父节点
当前提交
f5e0c47ef3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/blackfin/include/asm/uaccess.h

+ 1 - 1
arch/blackfin/include/asm/uaccess.h

@@ -147,7 +147,7 @@ static inline int bad_user_access_length(void)
 		}						\
 	} else							\
 		_err = -EFAULT;					\
-	x = (typeof(*(ptr)))_val;				\
+	x = (__force typeof(*(ptr)))_val;			\
 	_err;							\
 })