From patchwork Tue Aug 9 11:48:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Per Forlin X-Patchwork-Id: 3310 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 8629123F3F for ; Tue, 9 Aug 2011 11:49:27 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id 4F216A18099 for ; Tue, 9 Aug 2011 11:49:27 +0000 (UTC) Received: by qwb8 with SMTP id 8so1344092qwb.11 for ; Tue, 09 Aug 2011 04:49:26 -0700 (PDT) Received: by 10.224.192.135 with SMTP id dq7mr4597379qab.169.1312890566762; Tue, 09 Aug 2011 04:49:26 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.190.71 with SMTP id dh7cs44217qcb; Tue, 9 Aug 2011 04:49:26 -0700 (PDT) Received: from mr.google.com ([10.213.114.142]) by 10.213.114.142 with SMTP id e14mr1103943ebq.4.1312890566263 (num_hops = 1); Tue, 09 Aug 2011 04:49:26 -0700 (PDT) Received: by 10.213.114.142 with SMTP id e14mr819871ebq.4.1312890565422; Tue, 09 Aug 2011 04:49:25 -0700 (PDT) Received: from mail-ey0-f172.google.com (mail-ey0-f172.google.com [209.85.215.172]) by mx.google.com with ESMTPS id x10si4155858eef.91.2011.08.09.04.49.24 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 09 Aug 2011 04:49:25 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.215.172 is neither permitted nor denied by best guess record for domain of per.forlin@linaro.org) client-ip=209.85.215.172; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.215.172 is neither permitted nor denied by best guess record for domain of per.forlin@linaro.org) smtp.mail=per.forlin@linaro.org Received: by eye4 with SMTP id 4so3551774eye.31 for ; Tue, 09 Aug 2011 04:49:24 -0700 (PDT) Received: by 10.14.119.130 with SMTP id n2mr1817772eeh.97.1312890564323; Tue, 09 Aug 2011 04:49:24 -0700 (PDT) Received: from localhost.localdomain (c-c37f71d5.029-82-6c756e10.cust.bredbandsbolaget.se [213.113.127.195]) by mx.google.com with ESMTPS id v20sm2991237eeh.46.2011.08.09.04.49.22 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 09 Aug 2011 04:49:23 -0700 (PDT) From: Per Forlin To: Akinobu Mita , akpm@linux-foundation.org, Linus Walleij , linux-kernel@vger.kernel.org, Randy Dunlap , Chris Ball Cc: linux-doc@vger.kernel.org, linux-mmc@vger.kernel.org, linaro-dev@lists.linaro.org, linux-mm@kvack.org, Per Forlin Subject: [PATCH --mmotm v7 1/3] fault-inject: export fault injection functions Date: Tue, 9 Aug 2011 13:48:57 +0200 Message-Id: <1312890539-28177-2-git-send-email-per.forlin@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1312890539-28177-1-git-send-email-per.forlin@linaro.org> References: <1312890539-28177-1-git-send-email-per.forlin@linaro.org> export symbols should_fail() and fault_create_debugfs_attr() in order to let modules utilize the fault injection Signed-off-by: Per Forlin Acked-by: Akinobu Mita --- lib/fault-inject.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/lib/fault-inject.c b/lib/fault-inject.c index f193b77..328d433 100644 --- a/lib/fault-inject.c +++ b/lib/fault-inject.c @@ -130,6 +130,7 @@ bool should_fail(struct fault_attr *attr, ssize_t size) return true; } +EXPORT_SYMBOL_GPL(should_fail); #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS @@ -243,5 +244,6 @@ fail: return ERR_PTR(-ENOMEM); } +EXPORT_SYMBOL_GPL(fault_create_debugfs_attr); #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */