From: "Michał Mirosław" <mirqus@gmail.com>
To: Joe Perches <joe@perches.com>
Cc: H Hartley Sweeten <hartleys@visionengravers.com>,
David Miller <davem@davemloft.net>,
"Maciej W. Rozycki" <macro@linux-mips.org>,
linux-kernel@vger.kernel.org, netdev <netdev@vger.kernel.org>
Subject: Re: [PATCH] lib/vsprintf.c: Add %pMF to format FDDI bit reversed MAC addresses
Date: Thu, 7 Jan 2010 22:18:55 +0100 [thread overview]
Message-ID: <e2d7436a1001071318l75750b29uece2a61884538d5b@mail.gmail.com> (raw)
In-Reply-To: <1262888625.10429.23.camel@Joe-Laptop.home>
2010/1/7 Joe Perches <joe@perches.com>:
[...]
> diff --git a/lib/vsprintf.c b/lib/vsprintf.c
> index d4996cf..36959cc 100644
> --- a/lib/vsprintf.c
> +++ b/lib/vsprintf.c
> @@ -25,6 +25,7 @@
> #include <linux/kallsyms.h>
> #include <linux/uaccess.h>
> #include <linux/ioport.h>
> +#include <linux/bitrev.h>
> #include <net/addrconf.h>
>
> #include <asm/page.h> /* for PAGE_SIZE */
> @@ -675,17 +676,37 @@ static char *resource_string(char *buf, char *end, struct resource *res,
> return string(buf, end, sym, spec);
> }
>
> +static u8 mac_byte(u8 val)
> +{
> + return val;
> +}
> +
> +static u8 mac_byte_rev(u8 val)
> +{
> + return bitrev8(val);
> +}
> +
> static char *mac_address_string(char *buf, char *end, u8 *addr,
> struct printf_spec spec, const char *fmt)
> {
> char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
> char *p = mac_addr;
> int i;
> + u8 (*mac_byte_fn)(u8 val);
> + char separator;
> +
> + if (fmt[1] == 'F') { /* FDDI canonical format */
> + mac_byte_fn = mac_byte_rev;
> + separator = '-';
> + } else {
> + mac_byte_fn = mac_byte;
> + separator = ':';
> + }
>
> for (i = 0; i < 6; i++) {
> - p = pack_hex_byte(p, addr[i]);
> + p = pack_hex_byte(p, mac_byte_fn(addr[i]));
> if (fmt[0] == 'M' && i != 5)
> - *p++ = ':';
> + *p++ = separator;
> }
> *p = '\0';
>
[...]
Something like the following might be smaller and faster - no
functions and their calls (just an idea);
int rev = (fmt[1] == 'F');
...
p = pack_hex_byte(p, rev ? bitrev8(addr[i]) : addr[i]);
Best Regards,
Michał Mirosław
next prev parent reply other threads:[~2010-01-07 21:18 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <BD79186B4FD85F4B8E60E381CAEE19090208954A@mi8nycmail19.Mi8.com>
2010-01-07 18:23 ` [PATCH] lib/vsprintf.c: Add %pMF to format FDDI bit reversed MAC addresses Joe Perches
2010-01-07 20:42 ` Maciej W. Rozycki
2010-01-07 21:13 ` Michał Mirosław
2010-01-07 22:09 ` David Miller
2010-01-08 0:08 ` Simon Horman
2010-01-08 1:51 ` Joe Perches
2010-01-08 2:48 ` Simon Horman
2010-01-07 21:18 ` Michał Mirosław [this message]
2010-01-07 21:36 ` Joe Perches
2010-01-07 21:37 ` [PATCH V2] " Joe Perches
2010-01-07 22:11 ` David Miller
2010-01-07 21:43 ` [PATCH V3] " Joe Perches
2010-01-08 0:58 ` David Miller
2010-01-19 10:57 ` [PATCH] " Andrew Morton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e2d7436a1001071318l75750b29uece2a61884538d5b@mail.gmail.com \
--to=mirqus@gmail.com \
--cc=davem@davemloft.net \
--cc=hartleys@visionengravers.com \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=macro@linux-mips.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).