Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933121AbdCUX5R (ORCPT ); Tue, 21 Mar 2017 19:57:17 -0400 Received: from mx0a-00010702.pphosted.com ([148.163.156.75]:57756 "EHLO mx0b-00010702.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S933286AbdCUX5N (ORCPT ); Tue, 21 Mar 2017 19:57:13 -0400 From: Julia Cartwright To: CC: , Thomas Gleixner , Sebastian Andrzej Siewior , Linus Walleij , Julia Lawall , "Gilles Muller" , Nicolas Palix , "Michal Marek" , Lee Jones , Subject: [PATCH v2 0/9] fixup usage of non-raw spinlocks in irqchips Date: Tue, 21 Mar 2017 17:43:00 -0500 Message-ID: X-Mailer: git-send-email 2.12.0 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-03-21_20:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=1 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1702020001 definitions=main-1703210190 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-03-21_20:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_policy_notspam policy=outbound_policy score=30 priorityscore=1501 malwarescore=0 suspectscore=4 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=30 reason=mlx scancount=1 engine=8.0.1-1702020001 definitions=main-1703210190 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3919 Lines: 86 Changes since v1[1]: - Dropped already applied patches in pinctrl, gpio, and mux trees. - Gained three new patches destined for gpio tree, due to loosening constraints in the semantic patch. The following patchset introduces a new coccinelle patch, irq_chip_raw_spinlock.cocci, which is used to identify irq_chip implementors which acquire/release non-raw spinlocks, and in addition, a set of generated patches for most cases identified. On mainline builds, there exists no functional difference between raw_spinlock_t and spinlock_t. However, w/ PREEMPT_RT, the spinlock_t will cause the calling thread to sleep when the lock is contended. Because sleeping is illegal in hardirq context, and because the irqchip callbacks are invoked in hardirq context, irqchip implementations must not use spin_lock_t for synchronization. Patches build tested only. All patches are independent of one another and can be applied to the relevant trees. Some notes: - In order to ensure that latency problems are not introduced for realtime kernels, the generated patches need to be hand audited to ensure that raw-spinlock protected regions are bounded and minimal. I've done a quick audit for each of the modified drivers in this series, but please check my work. - There are a couple of matches which will require further intervention to fully fix. Namely the Intel LPE Audio driver: drivers/gpu/drm/i915/intel_lpe_audio.c:169:30-38: Use of non-raw spinlock is illegal in this context (struct drm_i915_private::irq_lock) and the adi2 pinctrl driver: drivers/pinctrl/pinctrl-adi2.c:308:26-30: Use of non-raw spinlock is illegal in this context (struct gpio_port::lock) - This semantic patch is not comprehensive, there are other equally broken usecases which are not properly identified yet, such as the use of a single global spinlock_t declared via DEFINE_SPINLOCK() (found in arch/alpha, and perhaps elsewhere). An additional currently unhandled case is the irq_chip_generic callbacks. Julia [1]: http://lkml.kernel.org/r/cover.1489015238.git.julia@ni.com Cc: Thomas Gleixner Cc: Sebastian Andrzej Siewior Cc: Linus Walleij Cc: Julia Lawall Cc: Gilles Muller Cc: Nicolas Palix Cc: Michal Marek Cc: Lee Jones Cc: cocci@systeme.lip6.fr -------------- Julia Cartwright (9): Coccinelle: locks: identify callers of spin_lock{,_irq,_irqsave}() in irqchip implementations alpha: marvel: make use of raw_spinlock variants powerpc: mpc52xx_gpt: make use of raw_spinlock variants mfd: asic3: make use of raw_spinlock variants mfd: t7l66xb: make use of raw_spinlock variants mfd: tc6393xb: make use of raw_spinlock variants gpio: 104-idi-48: make use of raw_spinlock variants gpio: 104-idio-16: make use of raw_spinlock variants gpio: pci-idio-16: make use of raw_spinlock variants arch/alpha/include/asm/core_marvel.h | 2 +- arch/alpha/kernel/core_marvel.c | 2 +- arch/alpha/kernel/sys_marvel.c | 12 +-- arch/powerpc/platforms/52xx/mpc52xx_gpt.c | 52 ++++++------ drivers/gpio/gpio-104-idi-48.c | 18 ++-- drivers/gpio/gpio-104-idio-16.c | 24 +++--- drivers/gpio/gpio-pci-idio-16.c | 28 +++---- drivers/mfd/asic3.c | 56 ++++++------- drivers/mfd/t7l66xb.c | 20 ++--- drivers/mfd/tc6393xb.c | 52 ++++++------ .../coccinelle/locks/irq_chip_raw_spinlock.cocci | 96 ++++++++++++++++++++++ 11 files changed, 230 insertions(+), 132 deletions(-) create mode 100644 scripts/coccinelle/locks/irq_chip_raw_spinlock.cocci -- 2.12.0