kernel/fork.c: mark 'stack_vm_area' with __maybe_unused
authorYueHaibing <yuehaibing@huawei.com>
Fri, 28 Dec 2018 08:40:00 +0000 (00:40 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 28 Dec 2018 20:11:52 +0000 (12:11 -0800)
commit0f4991e8fd48987ae476a92cdee6bfec4aff31b8
treeac2c4d96bde3b7782b89f99b3561c84b7b7d857a
parent7056d3a37d2c6aaaab10c13e8e69adc67ec1fc65
kernel/fork.c: mark 'stack_vm_area' with __maybe_unused

Fixes gcc '-Wunused-but-set-variable' warning when CONFIG_VMAP_STACK is
not set:

kernel/fork.c: In function 'dup_task_struct':
kernel/fork.c:843:20: warning:
 variable 'stack_vm_area' set but not used [-Wunused-but-set-variable]

Link: http://lkml.kernel.org/r/1545965190-2381-1-git-send-email-yuehaibing@huawei.com
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/fork.c