Andreas Dilger wrote: > > A few minor changes to the code, after testing it a bit locally (note that I > am using kernel patch C1): > > First, a patch to change the MAC address kernel parameter to be in the > standard XX:XX:XX:XX:XX:XX form, instead of separate bytes. It also > fixes the output of the IP addresses to be unsigned ints. Isn't there > a function in the kernel to format IP addresses for output already? Not quite for formatting, but NIPQUAD(ipaddr) passes 4 octets of IP address to . Here's a patch/replacement for the IP address printing in the netconsole kernel module, using NIPQUAD(). Against netconsole version C2. BTW, in linux/include/linux/kernel.h, isn't HIPQUAD() totally useless (and also unused)? It looks very little-endian-specific. Well, it can be used on little-endian systems if the ipaddr is in host-order. ~Randy