mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
init/main.c: fix sparse warnings: context imbalance
Impact: Attribute function 'init_post' with __releases(...). Fix these sparse warnings: init/main.c:805:21: warning: context imbalance in 'init_post' - unexpected unlock init/main.c:899:9: warning: context imbalance in 'kernel_init' - wrong count at exit Signed-off-by: Hannes Eder <hannes@hanneseder.net> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e0f7ad5f4f
commit
acdd052a28
1 changed files with 1 additions and 0 deletions
|
@ -793,6 +793,7 @@ static void run_init_process(char *init_filename)
|
||||||
* makes it inline to init() and it becomes part of init.text section
|
* makes it inline to init() and it becomes part of init.text section
|
||||||
*/
|
*/
|
||||||
static noinline int init_post(void)
|
static noinline int init_post(void)
|
||||||
|
__releases(kernel_lock)
|
||||||
{
|
{
|
||||||
/* need to finish all async __init code before freeing the memory */
|
/* need to finish all async __init code before freeing the memory */
|
||||||
async_synchronize_full();
|
async_synchronize_full();
|
||||||
|
|
Loading…
Reference in a new issue