[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <55A74BED.9000104@hitachi.com>
Date: Thu, 16 Jul 2015 15:15:09 +0900
From: Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>
To: Wang Long <long.wanglong@...wei.com>, ananth@...ibm.com,
anil.s.keshavamurthy@...el.com, davem@...emloft.net
CC: linux-kernel@...r.kernel.org, wanglong@...qinren.net,
peifeiyue@...wei.com
Subject: Re: [PATCH] kprobes: Use debugfs_remove_recursive instead debugfs_remove
On 2015/07/16 11:16, Wang Long wrote:
> In debugfs_kprobe_init, we create a directory 'kprobes' and three
> files 'list', 'enabled' and 'blacklist'. When any one of the three
> files creation fails, we should remove all of them. But debugfs_remove
> function can not complete this work. So use debugfs_remove_recursive
> instead.
>
OK, it should be fixed.
Acked-by: Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>
Thank you!
> Signed-off-by: Wang Long <long.wanglong@...wei.com>
> ---
> kernel/kprobes.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/kprobes.c b/kernel/kprobes.c
> index c90e417..8cd82a5 100644
> --- a/kernel/kprobes.c
> +++ b/kernel/kprobes.c
> @@ -2459,7 +2459,7 @@ static int __init debugfs_kprobe_init(void)
> return 0;
>
> error:
> - debugfs_remove(dir);
> + debugfs_remove_recursive(dir);
> return -ENOMEM;
> }
>
>
--
Masami HIRAMATSU
Linux Technology Research Center, System Productivity Research Dept.
Center for Technology Innovation - Systems Engineering
Hitachi, Ltd., Research & Development Group
E-mail: masami.hiramatsu.pt@...achi.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists