diff options
author | Tejun Heo <tj@kernel.org> | 2009-07-03 19:10:58 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2009-07-03 19:10:58 -0400 |
commit | 79ba6ac825fac187894e236c9df1ba5fcbf53fd3 (patch) | |
tree | 384d4c09259161d0b7e2ee894cb82696ebb8e997 | |
parent | c43768cbb7655ea5ff782ae250f6e2ef4297cf98 (diff) |
x86: make pcpu_chunk_addr_search() matching stricter
The @addr passed into pcpu_chunk_addr_search() is unit0 based address
and thus should be matched inside unit0 area. Currently, when it uses
chunk size when determining whether the address falls in the first
chunk. Addresses in unitN where N>0 shouldn't be passed in anyway, so
this doesn't cause any malfunction but fix it for consistency.
[ Impact: mostly cleanup ]
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | mm/percpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/percpu.c b/mm/percpu.c index b14984566f5a..19dd83b5cbdc 100644 --- a/mm/percpu.c +++ b/mm/percpu.c | |||
@@ -290,7 +290,7 @@ static struct pcpu_chunk *pcpu_chunk_addr_search(void *addr) | |||
290 | void *first_start = pcpu_first_chunk->vm->addr; | 290 | void *first_start = pcpu_first_chunk->vm->addr; |
291 | 291 | ||
292 | /* is it in the first chunk? */ | 292 | /* is it in the first chunk? */ |
293 | if (addr >= first_start && addr < first_start + pcpu_chunk_size) { | 293 | if (addr >= first_start && addr < first_start + pcpu_unit_size) { |
294 | /* is it in the reserved area? */ | 294 | /* is it in the reserved area? */ |
295 | if (addr < first_start + pcpu_reserved_chunk_limit) | 295 | if (addr < first_start + pcpu_reserved_chunk_limit) |
296 | return pcpu_reserved_chunk; | 296 | return pcpu_reserved_chunk; |