From: Randy Dunlap <[email protected]>

arch/microblaze/ is missing support for get_user() of size 8 bytes,
so add it by using __copy_from_user().

Fixes these build errors:
   drivers/infiniband/core/uverbs_main.o: In function `ib_uverbs_write':
   drivers/infiniband/core/.tmp_gl_uverbs_main.o:(.text+0x13a4): undefined 
reference to `__user_bad'
   drivers/android/binder.o: In function `binder_thread_write':
   drivers/android/.tmp_gl_binder.o:(.text+0xda6c): undefined reference to 
`__user_bad'
   drivers/android/.tmp_gl_binder.o:(.text+0xda98): undefined reference to 
`__user_bad'
   drivers/android/.tmp_gl_binder.o:(.text+0xdf10): undefined reference to 
`__user_bad'
   drivers/android/.tmp_gl_binder.o:(.text+0xe498): undefined reference to 
`__user_bad'
   drivers/android/binder.o:drivers/android/.tmp_gl_binder.o:(.text+0xea78): 
more undefined references to `__user_bad' follow

'make allmodconfig' now builds successfully for arch/microblaze/.

Fixes: 538722ca3b76 ("microblaze: fix get_user/put_user side-effects")
Reported-by: kbuild test robot <[email protected]>
Signed-off-by: Randy Dunlap <[email protected]>
Cc: Al Viro <[email protected]>
Cc: Steven J. Magnani <[email protected]>
Cc: Michal Simek <[email protected]>
Cc: Jason Gunthorpe <[email protected]>
Cc: Leon Romanovsky <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Doug Ledford <[email protected]>
---
v3: fix return value in error case (comments from Linus).

What is a reasonable path for having this patch merged?
I have sent several emails to Micahl Simek but he seems to have
dropped active maintenance of arch/microblaze/.

 arch/microblaze/include/asm/uaccess.h |   10 ++++++++++
 1 file changed, 10 insertions(+)

--- lnx-53-rc6.orig/arch/microblaze/include/asm/uaccess.h
+++ lnx-53-rc6/arch/microblaze/include/asm/uaccess.h
@@ -186,6 +186,11 @@ extern long __user_bad(void);
                        __get_user_asm("lw", __gu_addr, __gu_val,       \
                                       __gu_err);                       \
                        break;                                          \
+               case 8:                                                 \
+                       __gu_err = __copy_from_user(&__gu_val, __gu_addr, 8);\
+                       if (__gu_err) /* bytes remaining */             \
+                               __gu_err = -EFAULT;                     \
+                       break;                                          \
                default:                                                \
                        __gu_err = __user_bad();                        \
                        break;                                          \
@@ -212,6 +217,11 @@ extern long __user_bad(void);
        case 4:                                                         \
                __get_user_asm("lw", (ptr), __gu_val, __gu_err);        \
                break;                                                  \
+       case 8:                                                         \
+               __gu_err = __copy_from_user(&__gu_val, ptr, 8);         \
+               if (__gu_err) /* bytes remaining */                     \
+                       __gu_err = -EFAULT;                             \
+               break;                                                  \
        default:                                                        \
                /* __gu_val = 0; __gu_err = -EINVAL;*/ __gu_err = __user_bad();\
        }                                                               \


Reply via email to