From patchwork Wed Jul 20 22:01:59 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Per Forlin X-Patchwork-Id: 2894 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 171C92405E for ; Wed, 20 Jul 2011 22:02:21 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id DC0CAA187CC for ; Wed, 20 Jul 2011 22:02:20 +0000 (UTC) Received: by qyk10 with SMTP id 10so3605200qyk.11 for ; Wed, 20 Jul 2011 15:02:20 -0700 (PDT) Received: by 10.229.217.3 with SMTP id hk3mr8362583qcb.38.1311199340370; Wed, 20 Jul 2011 15:02:20 -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.217.78 with SMTP id hl14cs124900qcb; Wed, 20 Jul 2011 15:02:20 -0700 (PDT) Received: by 10.223.76.26 with SMTP id a26mr913731fak.94.1311199339489; Wed, 20 Jul 2011 15:02:19 -0700 (PDT) Received: from mail-fx0-f44.google.com (mail-fx0-f44.google.com [209.85.161.44]) by mx.google.com with ESMTPS id d24si1932975fak.82.2011.07.20.15.02.18 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 20 Jul 2011 15:02:19 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.161.44 is neither permitted nor denied by best guess record for domain of per.forlin@linaro.org) client-ip=209.85.161.44; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.161.44 is neither permitted nor denied by best guess record for domain of per.forlin@linaro.org) smtp.mail=per.forlin@linaro.org Received: by mail-fx0-f44.google.com with SMTP id 6so1844683fxe.17 for ; Wed, 20 Jul 2011 15:02:18 -0700 (PDT) Received: by 10.223.50.131 with SMTP id z3mr942143faf.127.1311199338098; Wed, 20 Jul 2011 15:02:18 -0700 (PDT) Received: from localhost.localdomain (c-3c7b71d5.029-82-6c756e10.cust.bredbandsbolaget.se [213.113.123.60]) by mx.google.com with ESMTPS id d6sm967836fak.10.2011.07.20.15.02.16 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 20 Jul 2011 15:02:17 -0700 (PDT) From: Per Forlin To: linaro-dev@lists.linaro.org, Nicolas Pitre , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org, linux-doc@vger.kernel.org, Venkatraman S , Linus Walleij , Kyungmin Park , Arnd Bergmann , Sourav Poddar , Chris Ball , Akinobu Mita , J Freyensee Cc: Randy Dunlap , Per Forlin Subject: [PATCH v3 1/3] fault-inject: make fault injection available for modules Date: Thu, 21 Jul 2011 00:01:59 +0200 Message-Id: <1311199321-4618-2-git-send-email-per.forlin@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1311199321-4618-1-git-send-email-per.forlin@linaro.org> References: <1311199321-4618-1-git-send-email-per.forlin@linaro.org> export symbols should_fail() and init_fault_attr_dentries() in order to make modules use the fault injection functionality Signed-off-by: Per Forlin --- 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 7e65af7..27783da 100644 --- a/lib/fault-inject.c +++ b/lib/fault-inject.c @@ -131,6 +131,7 @@ bool should_fail(struct fault_attr *attr, ssize_t size) return true; } +EXPORT_SYMBOL_GPL(should_fail); #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS @@ -311,5 +312,6 @@ fail: cleanup_fault_attr_dentries(attr); return -ENOMEM; } +EXPORT_SYMBOL_GPL(init_fault_attr_dentries); #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */