[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <adaprivom8o.fsf@cisco.com>
Date: Fri, 09 Jan 2009 19:47:51 -0800
From: Roland Dreier <rdreier@...co.com>
To: Harvey Harrison <harvey.harrison@...il.com>, netdev@...r.kernel.org
Subject: Some NIPQUAD_FMT -> %pI4 conversions are broken
I just noticed (by getting a messed up print in my kernel log) that most
of the changes to drivers/infiniband/hw/nes in commit 63779436
("drivers: replace NIPQUAD()") were wrong: the idea was to change printk
statements like
printk("..." NIPQUAD_FMT "...", NIPQUAD(foo));
but most of the changes in nes were to code like
printk("..." NIPQUAD_FMT "...", HIPQUAD(foo));
ie *H* IPQUAD not *N* IPQUAD, indicating the foo is in host endian
order, and hence the new code
printk("...%pI4...", &foo);
prints the IP in reverse order now.
I don't see a good way to fix this without introducing a temporary
variable to hold a swapped IP address... but is there a better way?
- R.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists