From patchwork Tue Jul 19 21:31:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Per Forlin X-Patchwork-Id: 989632 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p6JLY9gN002398 for ; Tue, 19 Jul 2011 21:34:09 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751561Ab1GSVeA (ORCPT ); Tue, 19 Jul 2011 17:34:00 -0400 Received: from mail-fx0-f52.google.com ([209.85.161.52]:33942 "EHLO mail-fx0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751436Ab1GSVd5 (ORCPT ); Tue, 19 Jul 2011 17:33:57 -0400 Received: by mail-fx0-f52.google.com with SMTP id 18so542082fxd.11 for ; Tue, 19 Jul 2011 14:33:56 -0700 (PDT) Received: by 10.223.159.197 with SMTP id k5mr12560234fax.50.1311111236704; Tue, 19 Jul 2011 14:33:56 -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 j19sm228367faa.41.2011.07.19.14.33.53 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 19 Jul 2011 14:33:54 -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 Cc: Randy Dunlap , Per Forlin Subject: [PATCH v2 1/3] fault-inject: make fault injection available for modules Date: Tue, 19 Jul 2011 23:31:44 +0200 Message-Id: <1311111106-26814-2-git-send-email-per.forlin@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1311111106-26814-1-git-send-email-per.forlin@linaro.org> References: <1311111106-26814-1-git-send-email-per.forlin@linaro.org> Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Tue, 19 Jul 2011 21:34:09 +0000 (UTC) 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..cd28364 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(should_fail); #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS @@ -311,5 +312,6 @@ fail: cleanup_fault_attr_dentries(attr); return -ENOMEM; } +EXPORT_SYMBOL(init_fault_attr_dentries); #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */