Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1370111
| From | Konstantin Khlebnikov <koct9i@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] mm/mmap: kill hook arch_rebalance_pgtables |
| Date | 2016-04-03 07:50 +0200 |
| Message-ID | <rjJ57-7cj-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Nobody use it. Signed-off-by: Konstantin Khlebnikov <koct9i@gmail.com> --- mm/mmap.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mm/mmap.c b/mm/mmap.c index bd2e1a533bc1..fba246b8f1a5 100644 --- a/mm/mmap.c +++ b/mm/mmap.c @@ -55,10 +55,6 @@ #define arch_mmap_check(addr, len, flags) (0) #endif -#ifndef arch_rebalance_pgtables -#define arch_rebalance_pgtables(addr, len) (addr) -#endif - #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS const int mmap_rnd_bits_min = CONFIG_ARCH_MMAP_RND_BITS_MIN; const int mmap_rnd_bits_max = CONFIG_ARCH_MMAP_RND_BITS_MAX; @@ -1911,7 +1907,6 @@ get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, if (offset_in_page(addr)) return -EINVAL; - addr = arch_rebalance_pgtables(addr, len); error = security_mmap_addr(addr); return error ? error : addr; }
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] mm/mmap: kill hook arch_rebalance_pgtables Konstantin Khlebnikov <koct9i@gmail.com> - 2016-04-03 07:50 +0200
csiph-web