Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 203916
b: refs/heads/master
c: 073730d
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and John W. Linville committed Jul 27, 2010
1 parent af46eb4 commit 8d505cf
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 903c99d8d6d055c56e7fdfba4602c05e357fa186
refs/heads/master: 073730d771d97bb5bbef080bd5d6d0a5af7cba7d
5 changes: 3 additions & 2 deletions trunk/include/net/cfg80211.h
Original file line number Diff line number Diff line change
Expand Up @@ -2442,8 +2442,9 @@ void cfg80211_cqm_rssi_notify(struct net_device *dev,
wiphy_printk(KERN_NOTICE, wiphy, format, ##args)
#define wiphy_info(wiphy, format, args...) \
wiphy_printk(KERN_INFO, wiphy, format, ##args)
#define wiphy_debug(wiphy, format, args...) \
wiphy_printk(KERN_DEBUG, wiphy, format, ##args)

int wiphy_debug(const struct wiphy *wiphy, const char *format, ...)
__attribute__ ((format (printf, 2, 3)));

#if defined(DEBUG)
#define wiphy_dbg(wiphy, format, args...) \
Expand Down
49 changes: 49 additions & 0 deletions trunk/net/wireless/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -907,3 +907,52 @@ static void __exit cfg80211_exit(void)
destroy_workqueue(cfg80211_wq);
}
module_exit(cfg80211_exit);

static int ___wiphy_printk(const char *level, const struct wiphy *wiphy,
struct va_format *vaf)
{
if (!wiphy)
return printk("%s(NULL wiphy *): %pV", level, vaf);

return printk("%s%s: %pV", level, wiphy_name(wiphy), vaf);
}

int __wiphy_printk(const char *level, const struct wiphy *wiphy,
const char *fmt, ...)
{
struct va_format vaf;
va_list args;
int r;

va_start(args, fmt);

vaf.fmt = fmt;
vaf.va = &args;

r = ___wiphy_printk(level, wiphy, &vaf);
va_end(args);

return r;
}
EXPORT_SYMBOL(__wiphy_printk);

#define define_wiphy_printk_level(func, kern_level) \
int func(const struct wiphy *wiphy, const char *fmt, ...) \
{ \
struct va_format vaf; \
va_list args; \
int r; \
\
va_start(args, fmt); \
\
vaf.fmt = fmt; \
vaf.va = &args; \
\
r = ___wiphy_printk(kern_level, wiphy, &vaf); \
va_end(args); \
\
return r; \
} \
EXPORT_SYMBOL(func);

define_wiphy_printk_level(wiphy_debug, KERN_DEBUG);

0 comments on commit 8d505cf

Please sign in to comment.