From a5e775e501a3bdcf3ac29a7fe00095ae45cc6906 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 4 Jun 2009 19:24:31 +0000 Subject: [PATCH] --- yaml --- r: 148586 b: refs/heads/master c: a43b739f257fd2569e11c6c93fbb86df382848e9 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/arch/blackfin/include/asm/uaccess.h | 4 ---- trunk/arch/blackfin/kernel/process.c | 3 +++ 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index 318e5efecec3..a8d276d9a2e6 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 8d0d8f2a3a57479b695a59ed2f67236f1488b90d +refs/heads/master: a43b739f257fd2569e11c6c93fbb86df382848e9 diff --git a/trunk/arch/blackfin/include/asm/uaccess.h b/trunk/arch/blackfin/include/asm/uaccess.h index 01f42b02e26c..8894e9ffbb57 100644 --- a/trunk/arch/blackfin/include/asm/uaccess.h +++ b/trunk/arch/blackfin/include/asm/uaccess.h @@ -59,12 +59,8 @@ static inline int is_in_rom(unsigned long addr) #ifndef CONFIG_ACCESS_CHECK static inline int _access_ok(unsigned long addr, unsigned long size) { return 1; } #else -#ifdef CONFIG_ACCESS_OK_L1 -extern int _access_ok(unsigned long addr, unsigned long size)__attribute__((l1_text)); -#else extern int _access_ok(unsigned long addr, unsigned long size); #endif -#endif /* * The exception table consists of pairs of addresses: the first is the diff --git a/trunk/arch/blackfin/kernel/process.c b/trunk/arch/blackfin/kernel/process.c index e040e03335ea..30d0843ed701 100644 --- a/trunk/arch/blackfin/kernel/process.c +++ b/trunk/arch/blackfin/kernel/process.c @@ -322,6 +322,9 @@ void finish_atomic_sections (struct pt_regs *regs) } #if defined(CONFIG_ACCESS_CHECK) +#ifdef CONFIG_ACCESS_OK_L1 +__attribute__((l1_text)) +#endif /* Return 1 if access to memory range is OK, 0 otherwise */ int _access_ok(unsigned long addr, unsigned long size) {