From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: Re: [PATCH wireless-next] rt2x00: Use more current logging styles, shrink object size Date: Fri, 19 Apr 2013 02:52:29 -0700 Message-ID: <1366365149.3901.15.camel@joe-AO722> References: <1366360406.3901.10.camel@joe-AO722> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Cc: Ivo van Doorn , Helmut Schaa , "John W. Linville" , "linux-wireless@vger.kernel.org" , rt2x00 Users List , netdev , LKML To: Gertjan van Wingerde Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Fri, 2013-04-19 at 11:45 +0200, Gertjan van Wingerde wrote: > Hi Joe, Hello Gertjan. > On Fri, Apr 19, 2013 at 10:33 AM, Joe Perches wrote: > > Reduce object size ~2% using more current logging styles. [] > > +/* Utility printing macros */ > > +#define rt2x00_err(dev, fmt, ...) \ > > + wiphy_err((dev)->hw->wiphy, "%s: Error - " fmt, \ > > + __func__, ##__VA_ARGS__) > > +#define rt2x00_warn(dev, fmt, ...) \ > > + wiphy_err((dev)->hw->wiphy, "%s: Warning - " fmt, \ > > + __func__, ##__VA_ARGS__) > > Shouldn't this use wiphy_warn instead of wiphy_err? > > > +#define rt2x00_info(dev, fmt, ...) \ > > + wiphy_err((dev)->hw->wiphy, "%s: Info - " fmt, \ > > + __func__, ##__VA_ARGS__) > > Shouldn't this use wiphy_info instead of wiphy_err? Gah, of course you're right, copy/paste dumbness. > > +#define rt2x00_eeprom_dbg(dev, fmt, ...) \ > > + wiphy_dbg((dev)->hw->wiphy, "%s: %s - " fmt, \ > > + __func__, "EEPROM recovery", ##__VA_ARGS__) > Why do you give the "EEPROM recovery" string as extra argument instead > of embedding it in the format string, like you do in the rt2x00_dbg > macro for the "Debug" string? Trivial space reduction on x86/32. It's just a few bytes. It may not be a savings at all for x86/64. I'd actually prefer to remove all the extra "INFO/ERR/WARNING" bits from the messages as it's a simple duplication of the KERN_ and I think not useful. > Also, please put all rt2x00_ next to each other, instead of > scattering them around with the "#define DEBUG" in between them. I'll resubmit tomorrow.