Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1406363
| From | Robin Murphy <robin.murphy@arm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 3/3] openrisc: Remove orphaned __addr_ok() definition |
| Date | 2016-05-24 20:10 +0200 |
| Message-ID | <rCoWf-6FE-53@gated-at.bofh.it> (permalink) |
| References | <rCoWd-6FE-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Since commit b48b2c3e5043 ("openrisc: use generic strnlen_user()
function"), the definition of __addr_ok() has been languishing unused;
eradicate the sucker.
CC: Jonas Bonn <jonas@southpole.se>
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
---
arch/openrisc/include/asm/uaccess.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/arch/openrisc/include/asm/uaccess.h b/arch/openrisc/include/asm/uaccess.h
index a6bd07ca3d6c..74bcb34c6d0b 100644
--- a/arch/openrisc/include/asm/uaccess.h
+++ b/arch/openrisc/include/asm/uaccess.h
@@ -59,9 +59,6 @@
*/
#define __range_ok(addr, size) (size <= get_fs() && addr <= (get_fs()-size))
-/* Ensure that addr is below task's addr_limit */
-#define __addr_ok(addr) ((unsigned long) addr < get_fs())
-
#define access_ok(type, addr, size) \
__range_ok((unsigned long)addr, (unsigned long)size)
--
2.8.1.dirty
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH 1/3] arm64: Remove orphaned __addr_ok() definition Robin Murphy <robin.murphy@arm.com> - 2016-05-24 20:10 +0200 [PATCH 2/3] ARM: Remove orphaned __addr_ok() definition Robin Murphy <robin.murphy@arm.com> - 2016-05-24 20:10 +0200 [PATCH 3/3] openrisc: Remove orphaned __addr_ok() definition Robin Murphy <robin.murphy@arm.com> - 2016-05-24 20:10 +0200
csiph-web