From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754626AbbHITiM (ORCPT ); Sun, 9 Aug 2015 15:38:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41632 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752508AbbHITiK (ORCPT ); Sun, 9 Aug 2015 15:38:10 -0400 Message-ID: <55C7AC1D.7050602@redhat.com> Date: Sun, 09 Aug 2015 21:38:05 +0200 From: Denys Vlasenko User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Emmanuel Grumbach , Denys Vlasenko CC: Sergei Shtylyov , Emmanuel Grumbach , Johannes Berg , "John W. Linville" , Intel Linux Wireless , linux-wireless , Linux Kernel Mailing List Subject: Re: [PATCH] iwlwifi: Deinline iwl_{read,write}{8,32} References: <1436876558-6674-1-git-send-email-dvlasenk@redhat.com> <55A502B6.5090806@cogentembedded.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 07/15/2015 07:49 PM, Emmanuel Grumbach wrote: > On Tue, Jul 14, 2015 at 3:41 PM, Denys Vlasenko > wrote: >> On Tue, Jul 14, 2015 at 2:38 PM, Sergei Shtylyov >> wrote: >>>> +#define IWL_READ_WRITE(static_inline) \ >>>> +static_inline void iwl_write8(struct iwl_trans *trans, u32 ofs, u8 val) \ >>>> +{ \ >>>> + trace_iwlwifi_dev_iowrite8(trans->dev, ofs, val); \ >>>> + iwl_trans_write8(trans, ofs, val); \ >>>> +} \ >>> [...] >>>> >>>> +#if !defined(CONFIG_IWLWIFI_DEVICE_TRACING) >>>> +IWL_READ_WRITE(static inline) >>> >>> Not static_inline? >> >> Yes. Here we are putting two words, "static inline", in front of every >> function definition. >> -- > > I'll try to come up with a patch that is easier for me to read, but I > am really busy right now. Ping me in a week if you have heard from me > earlier. So how it is going with this patch? In hindsight, I would use a different name for the macro parameter here: #define IWL_READ_WRITE(static_inline) \ +static_inline void iwl_write8(...) "static_inline" proved to be confusing. Maybe perform s/static_inline/func_qualifier/ on the patch...