From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751695AbaEBJIg (ORCPT ); Fri, 2 May 2014 05:08:36 -0400 Received: from www.linutronix.de ([62.245.132.108]:38215 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751326AbaEBJId (ORCPT ); Fri, 2 May 2014 05:08:33 -0400 Date: Fri, 2 May 2014 11:08:31 +0200 From: Sebastian Andrzej Siewior To: Steven Rostedt Cc: linux-kernel@vger.kernel.org, linux-rt-users , Thomas Gleixner , Carsten Emde , John Kacur , Paul Gortmaker , Peter Zijlstra , "H. Peter Anvin" Subject: Re: [PATCH RT 2/2] rtmutex: Remove duplicate rt_mutex_init() Message-ID: <20140502090831.GB9178@linutronix.de> References: <20140409024700.702797305@goodmis.org> <20140409025232.161960044@goodmis.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20140409025232.161960044@goodmis.org> X-Key-Id: 97C4700B X-Key-Fingerprint: 09E2 D1F3 9A3A FF13 C3D3 961C 0688 1C1E 97C4 700B User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Steven Rostedt | 2014-04-08 22:47:02 [-0400]: >From: "Steven Rostedt (Red Hat)" > >The rt_mutex_init() macro is the same whether or not >CONFIG_DEBUG_RT_MUTEX is set. Remove the duplicate. > >Signed-off-by: Steven Rostedt This does not apply cleanly on v3.14-rt >--- a/include/linux/rtmutex.h >+++ b/include/linux/rtmutex.h >@@ -62,25 +62,19 @@ struct hrtimer_sleeper; > # define __DEBUG_RT_MUTEX_INITIALIZER(mutexname) \ > , .name = #mutexname, .file = __FILE__, .line = __LINE__ > >-# define rt_mutex_init(mutex) \ >- do { \ >- raw_spin_lock_init(&(mutex)->wait_lock); \ >- __rt_mutex_init(mutex, #mutex); \ >- } while (0) >- The macro is the same in CONFIG_DEBUG_RT_MUTEXES and the else path. Shouldn't you remove both and define it before the ifdef? There are some users of this: |drivers/i2c/i2c-core.c: rt_mutex_init(&adap->bus_lock); |drivers/media/usb/em28xx/em28xx-cards.c: rt_mutex_init(&dev->i2c_bus_lock); Sebastian