Skip to content

Commit

Permalink
csky: uaccess.h: Coding convention with asm generic
Browse files Browse the repository at this point in the history
Using asm-generic/uaccess.h to prevent duplicated code:
 - Add user_addr_max which mentioned in generic uaccess.h
 - Remove custom definitions of KERNEL/USER_DS, get/set_fs,
   uaccess_kerenl
 - Using generic extable.h instead of custom definitions in
   uaccess.h

Change v2:
 - Fixup tinyconfig compile error, "__put_user_bad"
 - Add __get_user_asm_64

Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
Link: https://lore.kernel.org/linux-csky/CAK8P3a1DvsXSEDoovLk11hzNHyJi7vqNoToU+n5aFi2viZO_Uw@mail.gmail.com/T/#mbcd58a0e3450e5598974116b607589afa16a3ab7
Cc: Arnd Bergmann <arnd@arndb.de>
  • Loading branch information
Guo Ren committed Apr 28, 2021
1 parent 0679d29 commit e58a41c
Show file tree
Hide file tree
Showing 5 changed files with 345 additions and 481 deletions.
1 change: 1 addition & 0 deletions arch/csky/include/asm/Kbuild
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# SPDX-License-Identifier: GPL-2.0
generic-y += asm-offsets.h
generic-y += extable.h
generic-y += gpio.h
generic-y += kvm_para.h
generic-y += qrwlock.h
Expand Down
7 changes: 0 additions & 7 deletions arch/csky/include/asm/segment.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,4 @@ typedef struct {
unsigned long seg;
} mm_segment_t;

#define KERNEL_DS ((mm_segment_t) { 0xFFFFFFFF })

#define USER_DS ((mm_segment_t) { PAGE_OFFSET })
#define get_fs() (current_thread_info()->addr_limit)
#define set_fs(x) (current_thread_info()->addr_limit = (x))
#define uaccess_kernel() (get_fs().seg == KERNEL_DS.seg)

#endif /* __ASM_CSKY_SEGMENT_H */
Loading

0 comments on commit e58a41c

Please sign in to comment.