[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1225050015.3746.2.camel@johannes.berg>
Date: Sun, 26 Oct 2008 20:40:15 +0100
From: Johannes Berg <johannes@...solutions.net>
To: Harvey Harrison <harvey.harrison@...il.com>
Cc: David Miller <davem@...emloft.net>, anders@...uras.de,
netdev@...r.kernel.org
Subject: Re: [PATCH] add %pM printf format specifier
On Sun, 2008-10-26 at 12:38 -0700, Harvey Harrison wrote:
> On Sun, 2008-10-26 at 20:33 +0100, Johannes Berg wrote:
> > On Sun, 2008-10-26 at 12:01 -0700, Harvey Harrison wrote:
> > > On Sun, 2008-10-26 at 09:30 +0100, Johannes Berg wrote:
> > > > static char *ip6_string(char *buf, char *end, be16 *addr, int field_width, int precision, int flags)
> > > > {
> > > > char ip6[8*5];
> > > > char *p = ip6;
> > > > int i;
> > > > u16 tmp;
> > > >
> > > > for (i=0; i<7; i++) {
> > > > tmp = cpu_to_le16(addr[i]);
> > >
> > > tmp = be16_to_cpup(addr + i);
> > >
> > > > p = pack_hex_byte(p, tmp >> 8);
> > > > p = pack_hex_byte(p, tmp & 0xFF);
> > > > if (!(flags & SPECIAL))
> > > > *p++ = ':';
> > > > }
> > > > tmp = cpu_to_le16(addr[7]);
> > >
> > > tmp = be16_to_cpup(addr + 7);
> > >
> > > Or maybe just cast addr to char * and avoid the byteswapping altogether.
> >
> > Yeah, this was obviously not tested. Want to build it? I don't have
> > access to a fast build machine right now.
> >
>
> Could you send me whatever you've got currently and I'll have a go at
> it.
I don't have anything. I typed this into the email directly.
johannes
Download attachment "signature.asc" of type "application/pgp-signature" (837 bytes)
Powered by blists - more mailing lists