Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751807AbdL0CNC (ORCPT ); Tue, 26 Dec 2017 21:13:02 -0500 Received: from mail-pg0-f66.google.com ([74.125.83.66]:43847 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751756AbdL0CNA (ORCPT ); Tue, 26 Dec 2017 21:13:00 -0500 X-Google-Smtp-Source: ACJfBosMdH9Eg1hLi1H6hCWoUW7Yc6oGXjuOJf5/JtyrTw7DM08DVo3kpBjaXmRqwUjhLZLU/CwbVA== Date: Tue, 26 Dec 2017 18:12:56 -0800 From: Alexei Starovoitov To: Masami Hiramatsu Cc: Alexei Starovoitov , Josef Bacik , rostedt@goodmis.org, mingo@redhat.com, davem@davemloft.net, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, ast@kernel.org, kernel-team@fb.com, daniel@iogearbox.net, linux-btrfs@vger.kernel.org, darrick.wong@oracle.com, Josef Bacik , Akinobu Mita Subject: Re: [RFC PATCH bpf-next v2 4/4] error-injection: Support fault injection framework Message-ID: <20171227021255.sahkcpgyzohl5brs@ast-mbp> References: <151427438796.32561.4235654585430455286.stgit@devbox> <151427450538.32561.2776225740675148782.stgit@devbox> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <151427450538.32561.2776225740675148782.stgit@devbox> User-Agent: NeoMutt/20170421 (1.8.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1492 Lines: 34 On Tue, Dec 26, 2017 at 04:48:25PM +0900, Masami Hiramatsu wrote: > Support in-kernel fault-injection framework via debugfs. > This allows you to inject a conditional error to specified > function using debugfs interfaces. > > Signed-off-by: Masami Hiramatsu > --- > Documentation/fault-injection/fault-injection.txt | 5 + > kernel/Makefile | 1 > kernel/fail_function.c | 169 +++++++++++++++++++++ > lib/Kconfig.debug | 10 + > 4 files changed, 185 insertions(+) > create mode 100644 kernel/fail_function.c > > diff --git a/Documentation/fault-injection/fault-injection.txt b/Documentation/fault-injection/fault-injection.txt > index 918972babcd8..6243a588dd71 100644 > --- a/Documentation/fault-injection/fault-injection.txt > +++ b/Documentation/fault-injection/fault-injection.txt > @@ -30,6 +30,11 @@ o fail_mmc_request > injects MMC data errors on devices permitted by setting > debugfs entries under /sys/kernel/debug/mmc0/fail_mmc_request > > +o fail_function > + > + injects error return on specific functions by setting debugfs entries > + under /sys/kernel/debug/fail_function. No boot option supported. I like it. Could you document it a bit better? In particular retval is configurable, but without an example no one will be able to figure out how to use it. I think you can drop RFC tag from the next version of these patches. Thanks!