From: Xiu Jianfeng Date: Thu, 15 Sep 2022 01:16:02 +0000 (+0800) Subject: mm/secretmem: add __init annotation to secretmem_init() X-Git-Tag: v6.1-rc1~21^2~80 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=1ea41595f606e21ba422c59dcdc637f9a9513f2e;p=linux-block.git mm/secretmem: add __init annotation to secretmem_init() It's a fs_initcall entry, add __init annotation to it. Link: https://lkml.kernel.org/r/20220915011602.176967-1-xiujianfeng@huawei.com Signed-off-by: Xiu Jianfeng Cc: Mike Rapoport Signed-off-by: Andrew Morton --- diff --git a/mm/secretmem.c b/mm/secretmem.c index 3f7154099795..6a44efb673b2 100644 --- a/mm/secretmem.c +++ b/mm/secretmem.c @@ -276,7 +276,7 @@ static struct file_system_type secretmem_fs = { .kill_sb = kill_anon_super, }; -static int secretmem_init(void) +static int __init secretmem_init(void) { int ret = 0;