From: Xiu Jianfeng Date: Thu, 15 Sep 2022 01:16:02 +0000 (+0800) Subject: mm/secretmem: add __init annotation to secretmem_init() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1ea41595f606e21ba422c59dcdc637f9a9513f2e;p=linux.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 3f71540997958..6a44efb673b2c 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;