diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-02-10 04:44:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 13:51:24 -0500 |
commit | c538b391a7e8f3cb5d7756ec68d1864429d26a0c (patch) | |
tree | 553ec7fd598a72aa3f7bba80da5e692f556d7175 /arch/um | |
parent | de5fe76e436d9e98f8af8005ff23a2e6066aea10 (diff) |
[PATCH] uml: ELF locking commentary
Comment the lack of locking of the elf data extracted from the ELF headers
passed to UML.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/os-Linux/elf_aux.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/um/os-Linux/elf_aux.c b/arch/um/os-Linux/elf_aux.c index 5a99dd3fbed0..3a8d7e3aae0a 100644 --- a/arch/um/os-Linux/elf_aux.c +++ b/arch/um/os-Linux/elf_aux.c | |||
@@ -21,12 +21,11 @@ typedef Elf32_auxv_t elf_auxv_t; | |||
21 | typedef Elf64_auxv_t elf_auxv_t; | 21 | typedef Elf64_auxv_t elf_auxv_t; |
22 | #endif | 22 | #endif |
23 | 23 | ||
24 | /* These are initialized very early in boot and never changed */ | ||
24 | char * elf_aux_platform; | 25 | char * elf_aux_platform; |
25 | long elf_aux_hwcap; | 26 | long elf_aux_hwcap; |
26 | |||
27 | unsigned long vsyscall_ehdr; | 27 | unsigned long vsyscall_ehdr; |
28 | unsigned long vsyscall_end; | 28 | unsigned long vsyscall_end; |
29 | |||
30 | unsigned long __kernel_vsyscall; | 29 | unsigned long __kernel_vsyscall; |
31 | 30 | ||
32 | __init void scan_elf_aux( char **envp) | 31 | __init void scan_elf_aux( char **envp) |