Re: [PATCH -next] mm/hwpoison: add __init/__exit annotations to module init/exit funcs

From: Miaohe Lin
Date: Tue Sep 06 2022 - 22:00:05 EST


On 2022/9/6 17:35, Xiu Jianfeng wrote:
> Add missing __init/__exit annotations to module init/exit funcs.
>
> Signed-off-by: Xiu Jianfeng <xiujianfeng@xxxxxxxxxx>

LGTM. Thanks.

Reviewed-by: Miaohe Lin <linmiaohe@xxxxxxxxxx>

Thanks,
Miaohe Lin

> ---
> mm/hwpoison-inject.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/mm/hwpoison-inject.c b/mm/hwpoison-inject.c
> index 65e242b5a432..d0548e382b6b 100644
> --- a/mm/hwpoison-inject.c
> +++ b/mm/hwpoison-inject.c
> @@ -63,13 +63,13 @@ static int hwpoison_unpoison(void *data, u64 val)
> DEFINE_DEBUGFS_ATTRIBUTE(hwpoison_fops, NULL, hwpoison_inject, "%lli\n");
> DEFINE_DEBUGFS_ATTRIBUTE(unpoison_fops, NULL, hwpoison_unpoison, "%lli\n");
>
> -static void pfn_inject_exit(void)
> +static void __exit pfn_inject_exit(void)
> {
> hwpoison_filter_enable = 0;
> debugfs_remove_recursive(hwpoison_dir);
> }
>
> -static int pfn_inject_init(void)
> +static int __init pfn_inject_init(void)
> {
> hwpoison_dir = debugfs_create_dir("hwpoison", NULL);
>
>