Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1456207
| From | zijun_hu <zijun_hu@zoho.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] mm/vmalloc: fix align value calculation error |
| Date | 2016-08-04 10:10 +0200 |
| Message-ID | <s2lT4-6gd-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From e40d1066f61394992e0167f259001ae9d2581dc1 Mon Sep 17 00:00:00 2001
From: zijun_hu <zijun_hu@htc.com>
Date: Thu, 4 Aug 2016 14:22:52 +0800
Subject: [PATCH] mm/vmalloc: fix align value calculation error
it causes double align requirement for __get_vm_area_node() if parameter
size is power of 2 and VM_IOREMAP is set in parameter flags
it is fixed by using order_base_2 instead of fls_long() due to lack of
get_count_order() for long parameter
Signed-off-by: zijun_hu <zijun_hu@htc.com>
---
mm/vmalloc.c | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 91f44e7..8b17c51 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -1357,11 +1357,19 @@ static struct vm_struct *__get_vm_area_node(unsigned long size,
{
struct vmap_area *va;
struct vm_struct *area;
+ int ioremap_size_order;
BUG_ON(in_interrupt());
- if (flags & VM_IOREMAP)
- align = 1ul << clamp_t(int, fls_long(size),
- PAGE_SHIFT, IOREMAP_MAX_ORDER);
+ if (flags & VM_IOREMAP) {
+ if (unlikely(size < 2))
+ ioremap_size_order = size;
+ else if (unlikely((signed long)size < 0))
+ ioremap_size_order = sizeof(size) * 8;
+ else
+ ioremap_size_order = order_base_2(size);
+ align = 1ul << clamp_t(int, ioremap_size_order, PAGE_SHIFT,
+ IOREMAP_MAX_ORDER);
+ }
size = PAGE_ALIGN(size);
if (unlikely(!size))
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] mm/vmalloc: fix align value calculation error zijun_hu <zijun_hu@zoho.com> - 2016-08-04 10:10 +0200
Re: [PATCH] mm/vmalloc: fix align value calculation error zijun_hu <zijun_hu@zoho.com> - 2016-08-04 11:00 +0200
Re: [PATCH] mm/vmalloc: fix align value calculation error Andrew Morton <akpm@linux-foundation.org> - 2016-08-04 23:30 +0200
Re: [PATCH] mm/vmalloc: fix align value calculation error zijun_hu <zijun_hu@zoho.com> - 2016-08-05 04:30 +0200
Re: [PATCH] mm/vmalloc: fix align value calculation error zijun_hu <zijun_hu@zoho.com> - 2016-08-05 17:50 +0200
Re: [PATCH] mm/vmalloc: fix align value calculation error Andrew Morton <akpm@linux-foundation.org> - 2016-08-09 23:30 +0200
Re: [PATCH] mm/vmalloc: fix align value calculation error zijun_hu <zijun_hu@zoho.com> - 2016-08-10 23:20 +0200
csiph-web