On Thu, 2010-08-26 at 09:05 -0700, Stephen Hemminger wrote:
or perhaps better still convert to netdev_info
My message logging order preference:
if there's a netif_msg_<type> and a struct net_device
netif_<level> (struct private *, netif_msg_<type>,
struct net_device *, fmt, args...)
if there's a struct net_device
netdev_<level> (struct net_device *, fmt, args...)
if there's a struct device
dev_<level> (struct device *, fmt, args...)
otherwise
pr_<level> (fmt, args...)
--