diff options
| author | Paul Mundt <[email protected]> | 2008-10-29 14:01:07 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2008-10-30 11:38:46 -0700 |
| commit | ce05fcc30ea41c85f9d50bee1ce289f7cb7fb223 (patch) | |
| tree | 925dff669191e3a539febf74ad7aadc940ff3d88 /kernel | |
| parent | 84ad6d70001df969d7e8569dd18d98d9550277fb (diff) | |
kernel/profile: fix profile_init() section mismatch
profile_init() calls in to alloc_bootmem() on early initialization. While
alloc_bootmem() is __init, the reference itself is safe in that it is
tucked below a !slab_is_available() check. So, flag profile_init() as
__ref.
Signed-off-by: Paul Mundt <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: Sam Ravnborg <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/profile.c b/kernel/profile.c index a9e422df6bf6..9830a037d8db 100644 --- a/kernel/profile.c +++ b/kernel/profile.c @@ -102,7 +102,7 @@ int profile_setup(char *str) __setup("profile=", profile_setup); -int profile_init(void) +int __ref profile_init(void) { int buffer_bytes; if (!prof_on) |