diff options
author | Christoph Lameter <clameter@sgi.com> | 2008-02-05 01:28:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:14 -0500 |
commit | b3bdda02aa547a0753b4fdbc105e86ef9046b30b (patch) | |
tree | 969557274d94bd0a8e3c638b796c0a13f3e3afd2 /mm/vmalloc.c | |
parent | 48667e7a43c1a1e0ba743f93ae946f8cb34ff2f9 (diff) |
vmalloc: add const to void* parameters
Make vmalloc functions work the same way as kfree() and friends that
take a const void * argument.
[akpm@linux-foundation.org: fix consts, coding-style]
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/vmalloc.c')
-rw-r--r-- | mm/vmalloc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c index e4c59a30835b..21abac2c3941 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c | |||
@@ -169,7 +169,7 @@ EXPORT_SYMBOL_GPL(map_vm_area); | |||
169 | /* | 169 | /* |
170 | * Map a vmalloc()-space virtual address to the physical page. | 170 | * Map a vmalloc()-space virtual address to the physical page. |
171 | */ | 171 | */ |
172 | struct page *vmalloc_to_page(void *vmalloc_addr) | 172 | struct page *vmalloc_to_page(const void *vmalloc_addr) |
173 | { | 173 | { |
174 | unsigned long addr = (unsigned long) vmalloc_addr; | 174 | unsigned long addr = (unsigned long) vmalloc_addr; |
175 | struct page *page = NULL; | 175 | struct page *page = NULL; |
@@ -198,7 +198,7 @@ EXPORT_SYMBOL(vmalloc_to_page); | |||
198 | /* | 198 | /* |
199 | * Map a vmalloc()-space virtual address to the physical page frame number. | 199 | * Map a vmalloc()-space virtual address to the physical page frame number. |
200 | */ | 200 | */ |
201 | unsigned long vmalloc_to_pfn(void *vmalloc_addr) | 201 | unsigned long vmalloc_to_pfn(const void *vmalloc_addr) |
202 | { | 202 | { |
203 | return page_to_pfn(vmalloc_to_page(vmalloc_addr)); | 203 | return page_to_pfn(vmalloc_to_page(vmalloc_addr)); |
204 | } | 204 | } |
@@ -306,7 +306,7 @@ struct vm_struct *get_vm_area_node(unsigned long size, unsigned long flags, | |||
306 | } | 306 | } |
307 | 307 | ||
308 | /* Caller must hold vmlist_lock */ | 308 | /* Caller must hold vmlist_lock */ |
309 | static struct vm_struct *__find_vm_area(void *addr) | 309 | static struct vm_struct *__find_vm_area(const void *addr) |
310 | { | 310 | { |
311 | struct vm_struct *tmp; | 311 | struct vm_struct *tmp; |
312 | 312 | ||
@@ -319,7 +319,7 @@ static struct vm_struct *__find_vm_area(void *addr) | |||
319 | } | 319 | } |
320 | 320 | ||
321 | /* Caller must hold vmlist_lock */ | 321 | /* Caller must hold vmlist_lock */ |
322 | static struct vm_struct *__remove_vm_area(void *addr) | 322 | static struct vm_struct *__remove_vm_area(const void *addr) |
323 | { | 323 | { |
324 | struct vm_struct **p, *tmp; | 324 | struct vm_struct **p, *tmp; |
325 | 325 | ||
@@ -348,7 +348,7 @@ found: | |||
348 | * This function returns the found VM area, but using it is NOT safe | 348 | * This function returns the found VM area, but using it is NOT safe |
349 | * on SMP machines, except for its size or flags. | 349 | * on SMP machines, except for its size or flags. |
350 | */ | 350 | */ |
351 | struct vm_struct *remove_vm_area(void *addr) | 351 | struct vm_struct *remove_vm_area(const void *addr) |
352 | { | 352 | { |
353 | struct vm_struct *v; | 353 | struct vm_struct *v; |
354 | write_lock(&vmlist_lock); | 354 | write_lock(&vmlist_lock); |
@@ -357,7 +357,7 @@ struct vm_struct *remove_vm_area(void *addr) | |||
357 | return v; | 357 | return v; |
358 | } | 358 | } |
359 | 359 | ||
360 | static void __vunmap(void *addr, int deallocate_pages) | 360 | static void __vunmap(const void *addr, int deallocate_pages) |
361 | { | 361 | { |
362 | struct vm_struct *area; | 362 | struct vm_struct *area; |
363 | 363 | ||
@@ -408,7 +408,7 @@ static void __vunmap(void *addr, int deallocate_pages) | |||
408 | * | 408 | * |
409 | * Must not be called in interrupt context. | 409 | * Must not be called in interrupt context. |
410 | */ | 410 | */ |
411 | void vfree(void *addr) | 411 | void vfree(const void *addr) |
412 | { | 412 | { |
413 | BUG_ON(in_interrupt()); | 413 | BUG_ON(in_interrupt()); |
414 | __vunmap(addr, 1); | 414 | __vunmap(addr, 1); |
@@ -424,7 +424,7 @@ EXPORT_SYMBOL(vfree); | |||
424 | * | 424 | * |
425 | * Must not be called in interrupt context. | 425 | * Must not be called in interrupt context. |
426 | */ | 426 | */ |
427 | void vunmap(void *addr) | 427 | void vunmap(const void *addr) |
428 | { | 428 | { |
429 | BUG_ON(in_interrupt()); | 429 | BUG_ON(in_interrupt()); |
430 | __vunmap(addr, 0); | 430 | __vunmap(addr, 0); |