From patchwork Tue Aug 9 09:47:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Per Forlin X-Patchwork-Id: 1048702 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p799mf2d020717 for ; Tue, 9 Aug 2011 09:48:41 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752924Ab1HIJsP (ORCPT ); Tue, 9 Aug 2011 05:48:15 -0400 Received: from mail-ew0-f46.google.com ([209.85.215.46]:50597 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751950Ab1HIJsL (ORCPT ); Tue, 9 Aug 2011 05:48:11 -0400 Received: by ewy4 with SMTP id 4so994250ewy.19 for ; Tue, 09 Aug 2011 02:48:10 -0700 (PDT) Received: by 10.14.28.66 with SMTP id f42mr1861504eea.171.1312883289795; Tue, 09 Aug 2011 02:48:09 -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 r5sm2925796eef.36.2011.08.09.02.48.08 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 09 Aug 2011 02:48:08 -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 v6 1/3] fault-inject: export fault injection functions Date: Tue, 9 Aug 2011 11:47:46 +0200 Message-Id: <1312883268-4342-2-git-send-email-per.forlin@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1312883268-4342-1-git-send-email-per.forlin@linaro.org> References: <1312883268-4342-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 (demeter1.kernel.org [140.211.167.41]); Tue, 09 Aug 2011 09:48:41 +0000 (UTC) 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 */