Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932501AbcJPP5d (ORCPT ); Sun, 16 Oct 2016 11:57:33 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:17876 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757317AbcJPP4y (ORCPT ); Sun, 16 Oct 2016 11:56:54 -0400 From: Vegard Nossum To: Akinobu Mita Cc: linux-kernel@vger.kernel.org, Vegard Nossum , Peter Zijlstra , Ingo Molnar Subject: [PATCH 06/10] fault injection: rt_mutex_trylock() fault injection Date: Sun, 16 Oct 2016 17:56:08 +0200 Message-Id: <20161016155612.4784-6-vegard.nossum@oracle.com> X-Mailer: git-send-email 2.10.0.479.g221bd91 In-Reply-To: <20161016155612.4784-1-vegard.nossum@oracle.com> References: <20161016155612.4784-1-vegard.nossum@oracle.com> 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: 2218 Lines: 78 Cc: Peter Zijlstra Cc: Ingo Molnar Signed-off-by: Vegard Nossum --- kernel/locking/rtmutex.c | 26 ++++++++++++++++++++++++++ lib/Kconfig.debug | 6 ++++++ 2 files changed, 32 insertions(+) diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c index 1ec0f48..22ff6da 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c @@ -10,6 +10,7 @@ * * See Documentation/locking/rt-mutex-design.txt for details. */ +#include #include #include #include @@ -1465,6 +1466,28 @@ rt_mutex_timed_lock(struct rt_mutex *lock, struct hrtimer_sleeper *timeout) } EXPORT_SYMBOL_GPL(rt_mutex_timed_lock); +#ifdef CONFIG_FAIL_RT_MUTEX +DECLARE_FAULT_ATTR(fail_rtmutex); + +static int __init fail_rtmutex_debugfs(void) +{ + struct dentry *dir = fault_create_debugfs_attr("fail_rtmutex", + NULL, &fail_rtmutex); + return PTR_ERR_OR_ZERO(dir); +} +late_initcall(fail_rtmutex_debugfs); + +static inline bool should_fail_rtmutex(struct rt_mutex *lock) +{ + return should_fail(&fail_rtmutex, 1); +} +#else +static inline bool should_fail_rtmutex(struct rt_mutex *lock) +{ + return false; +} +#endif + /** * rt_mutex_trylock - try to lock a rt_mutex * @@ -1481,6 +1504,9 @@ int __sched rt_mutex_trylock(struct rt_mutex *lock) if (WARN_ON_ONCE(in_irq() || in_nmi() || in_serving_softirq())) return 0; + if (should_fail_rtmutex(lock)) + return 0; + return rt_mutex_fasttrylock(lock, rt_mutex_slowtrylock); } EXPORT_SYMBOL_GPL(rt_mutex_trylock); diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 7e9a9b2e..12ad8eb 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -1663,6 +1663,12 @@ config FAIL_MUTEX help Provide fault-injection capability for mutex_trylock(). +config FAIL_RT_MUTEX + bool "Fault-injection capability for RT mutexes" + depends on FAULT_INJECTION && RT_MUTEXES + help + Provide fault-injection capability for rt_mutex_trylock(). + config FAULT_INJECTION_DEBUG_FS bool "Debugfs entries for fault-injection capabilities" depends on FAULT_INJECTION && SYSFS && DEBUG_FS -- 2.10.0.479.g221bd91