This fixes the following 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@xxxxxxxxxxxxxx> --- init/main.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/init/main.c b/init/main.c index 82456a9..fe53aa6 100644 --- a/init/main.c +++ b/init/main.c @@ -803,6 +803,7 @@ int initmem_now_dynamic; * makes it inline to init() and it becomes part of init.text section */ static noinline int init_post(void) + __releases(kernel_lock) { /* need to finish all async __init code before freeing the memory */ async_synchronize_full(); -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html