提交 fe87f94f 编写于 作者: J Jesper Nilsson 提交者: Tejun Heo

CRIS: Change DEFINE_PER_CPU of current_pgd to be non volatile.

The DEFINE_PER_CPU of current_pgd was on CRIS defined using volatile,
which is not needed. Remove volatile.

Tested on an ARTPEC-3 (CRISv32) board.

tj: extern DEFINE_PER_CPU() replaced with DECLARE_PER_CPU()

[ Impact: code cleanup ]
Signed-off-by: NJesper Nilsson <jesper.nilsson@axis.com>
Signed-off-by: NTejun Heo <tj@kernel.org>
上级 405d967d
...@@ -17,7 +17,8 @@ extern void switch_mm(struct mm_struct *prev, struct mm_struct *next, ...@@ -17,7 +17,8 @@ extern void switch_mm(struct mm_struct *prev, struct mm_struct *next,
* registers like cr3 on the i386 * registers like cr3 on the i386
*/ */
extern volatile DEFINE_PER_CPU(pgd_t *,current_pgd); /* defined in arch/cris/mm/fault.c */ /* defined in arch/cris/mm/fault.c */
DECLARE_PER_CPU(pgd_t *, current_pgd);
static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
{ {
......
...@@ -29,7 +29,7 @@ extern void die_if_kernel(const char *, struct pt_regs *, long); ...@@ -29,7 +29,7 @@ extern void die_if_kernel(const char *, struct pt_regs *, long);
/* current active page directory */ /* current active page directory */
volatile DEFINE_PER_CPU(pgd_t *,current_pgd); DEFINE_PER_CPU(pgd_t *, current_pgd);
unsigned long cris_signal_return_page; unsigned long cris_signal_return_page;
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册