Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757265AbcJPP42 (ORCPT ); Sun, 16 Oct 2016 11:56:28 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:17816 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754399AbcJPP4W (ORCPT ); Sun, 16 Oct 2016 11:56:22 -0400 From: Vegard Nossum To: Akinobu Mita Cc: linux-kernel@vger.kernel.org, Vegard Nossum Subject: [PATCH 01/10] fault injection: fix a few documentation errors Date: Sun, 16 Oct 2016 17:56:03 +0200 Message-Id: <20161016155612.4784-1-vegard.nossum@oracle.com> X-Mailer: git-send-email 2.10.0.479.g221bd91 X-Source-IP: aserv0022.oracle.com [141.146.126.234] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1427 Lines: 39 Signed-off-by: Vegard Nossum --- Documentation/fault-injection/fault-injection.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/fault-injection/fault-injection.txt b/Documentation/fault-injection/fault-injection.txt index 415484f..2ef8531 100644 --- a/Documentation/fault-injection/fault-injection.txt +++ b/Documentation/fault-injection/fault-injection.txt @@ -102,15 +102,15 @@ configuration of fault-injection capabilities. - /sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem: Format: { 'Y' | 'N' } - default is 'N', setting it to 'Y' won't inject failures into + default is 'Y', setting it to 'N' will also inject failures into highmem/user allocations. - /sys/kernel/debug/failslab/ignore-gfp-wait: - /sys/kernel/debug/fail_page_alloc/ignore-gfp-wait: Format: { 'Y' | 'N' } - default is 'N', setting it to 'Y' will inject failures - only into non-sleep allocations (GFP_ATOMIC allocations). + default is 'Y', setting it to 'N' will also inject failures into + allocations that may sleep (non-GFP_ATOMIC allocations). - /sys/kernel/debug/fail_page_alloc/min-order: @@ -141,7 +141,7 @@ o #include o define the fault attributes - DECLARE_FAULT_INJECTION(name); + DECLARE_FAULT_ATTR(name); Please see the definition of struct fault_attr in fault-inject.h for details. -- 2.10.0.479.g221bd91