netdev
[Top] [All Lists]

Re: [PATCH 1/4] Net device error logging, revised

To: Jim Keniston <jkenisto@xxxxxxxxxx>
Subject: Re: [PATCH 1/4] Net device error logging, revised
From: Jeff Garzik <jgarzik@xxxxxxxxx>
Date: Tue, 26 Aug 2003 19:51:01 -0400
Cc: Greg KH <greg@xxxxxxxxx>, LKML <linux-kernel@xxxxxxxxxxxxxxx>, netdev <netdev@xxxxxxxxxxx>, "Feldman, Scott" <scott.feldman@xxxxxxxxx>, Larry Kessler <kessler@xxxxxxxxxx>, Randy Dunlap <rddunlap@xxxxxxxx>, Alan Cox <alan@xxxxxxxxxxxxxxxxxxx>, Andrew Morton <akpm@xxxxxxxx>
In-reply-to: <3F4BEE68.A6C862C2@us.ibm.com>
Organization: none
References: <3F4A8027.6FE3F594@us.ibm.com> <20030826183221.GB3167@kroah.com> <3F4BEE68.A6C862C2@us.ibm.com>
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20021213 Debian/1.2.1-2.bunk
Jim Keniston wrote:
#define netdev_printk(sevlevel, netdev, msglevel, format, arg...)       \
do {                                                                    \
if (NETIF_MSG_##msglevel == NETIF_MSG_ALL || ((netdev)->msg_enable & 
NETIF_MSG_##msglevel)) {    \
        char pfx[40];                                                   \
        printk(sevlevel "%s: " format , make_netdev_msg_prefix(pfx, netdev) , 
## arg);        \
}} while (0)

This would make your code bigger, but not that much bigger for the common case 
where
the msglevel is omitted (and the 'if(...)' is optimized out).


"NETIF_MSG_" is silly and should be eliminated.
A separate "NETIF_MSG_ALL" test is not needed, because msg_enable is a bitmask. A msg_enable of 0xffffffff will naturally create a NETIF_MSG_ALL.


Also, whatever mechanism is created, it needs to preserve the feature of the existing system:

        if (a quick bitmask test)
                do something

And preferably "do something" is not inlined, because printk'ing -- although it may appear in a fast path during debugging -- cannot be considered a fast path itself.

        Jeff




<Prev in Thread] Current Thread [Next in Thread>