diff options
author | Jeff Dike <jdike@addtoit.com> | 2008-02-05 01:31:17 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:30 -0500 |
commit | 80e39311ff3d7d2267ea8d259aab8dc9d5a59d61 (patch) | |
tree | 141c6adb305a57cc8284580d88a839343f57ee90 /arch/um/kernel/mem.c | |
parent | 3a24ebf0cb2ca44fdcdb5cae9ed2e778e5170f97 (diff) |
uml: SMP locking commentary
Add some more commentary about various pieces of global data not needing
locking.
Also got rid of unmap_physmem since that is no longer used.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/kernel/mem.c')
-rw-r--r-- | arch/um/kernel/mem.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/arch/um/kernel/mem.c b/arch/um/kernel/mem.c index 663011c2983f..d948babfc67a 100644 --- a/arch/um/kernel/mem.c +++ b/arch/um/kernel/mem.c | |||
@@ -22,17 +22,20 @@ | |||
22 | unsigned long *empty_zero_page = NULL; | 22 | unsigned long *empty_zero_page = NULL; |
23 | /* allocated in paging_init and unchanged thereafter */ | 23 | /* allocated in paging_init and unchanged thereafter */ |
24 | unsigned long *empty_bad_page = NULL; | 24 | unsigned long *empty_bad_page = NULL; |
25 | |||
26 | /* | ||
27 | * Initialized during boot, and readonly for initializing page tables | ||
28 | * afterwards | ||
29 | */ | ||
25 | pgd_t swapper_pg_dir[PTRS_PER_PGD]; | 30 | pgd_t swapper_pg_dir[PTRS_PER_PGD]; |
31 | |||
32 | /* Initialized at boot time, and readonly after that */ | ||
26 | unsigned long long highmem; | 33 | unsigned long long highmem; |
27 | int kmalloc_ok = 0; | 34 | int kmalloc_ok = 0; |
28 | 35 | ||
36 | /* Used during early boot */ | ||
29 | static unsigned long brk_end; | 37 | static unsigned long brk_end; |
30 | 38 | ||
31 | void unmap_physmem(void) | ||
32 | { | ||
33 | os_unmap_memory((void *) brk_end, uml_reserved - brk_end); | ||
34 | } | ||
35 | |||
36 | static void map_cb(void *unused) | 39 | static void map_cb(void *unused) |
37 | { | 40 | { |
38 | map_memory(brk_end, __pa(brk_end), uml_reserved - brk_end, 1, 1, 0); | 41 | map_memory(brk_end, __pa(brk_end), uml_reserved - brk_end, 1, 1, 0); |