[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAGXu5jJ_XoDRJXhE1OpCFxn6LGaNjRHFvYupeUjyqgzDZg=gXg@mail.gmail.com>
Date: Thu, 20 Sep 2018 21:49:12 -0700
From: Kees Cook <keescook@...omium.org>
To: zhong jiang <zhongjiang@...wei.com>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Masami Hiramatsu <mhiramat@...nel.org>,
Ingo Molnar <mingo@...nel.org>,
Thomas Gleixner <tglx@...utronix.de>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [RESEND PATCH] error-injection: remove meaningless null pointer
check before debugfs_remove_recursive
On Thu, Sep 20, 2018 at 6:46 PM, zhong jiang <zhongjiang@...wei.com> wrote:
> debugfs_remove_recursive has taken the null pointer into account.
> just remove the null check before debugfs_remove_recursive.
>
> Acked-by: Masami Hiramatsu <mhiramat@...nel.org>
> Signed-off-by: zhong jiang <zhongjiang@...wei.com>
Acked-by: Kees Cook <keescook@...omium.org>
-Kees
> ---
> kernel/fail_function.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/kernel/fail_function.c b/kernel/fail_function.c
> index bc80a4e..17f75b5 100644
> --- a/kernel/fail_function.c
> +++ b/kernel/fail_function.c
> @@ -173,8 +173,7 @@ static void fei_debugfs_remove_attr(struct fei_attr *attr)
> struct dentry *dir;
>
> dir = debugfs_lookup(attr->kp.symbol_name, fei_debugfs_dir);
> - if (dir)
> - debugfs_remove_recursive(dir);
> + debugfs_remove_recursive(dir);
> }
>
> static int fei_kprobe_handler(struct kprobe *kp, struct pt_regs *regs)
> --
> 1.7.12.4
>
--
Kees Cook
Pixel Security
Powered by blists - more mailing lists