Re: [PATCH wireless-next] rt2x00: Use more current logging styles,shrink object size

From: Joe Perches
Date: Fri Apr 19 2013 - 05:52:37 EST


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 <joe@xxxxxxxxxxx> 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_<LEVEL> and I think not useful.

> Also, please put all rt2x00_<level> next to each other, instead of
> scattering them around with the "#define DEBUG" in between them.

I'll resubmit tomorrow.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/