From: "Maciej W. Rozycki" <macro@linux-mips.org>
To: David Miller <davem@davemloft.net>
Cc: hartleys@visionengravers.com, linux-kernel@vger.kernel.org,
netdev@vger.kernel.org
Subject: Re: [PATCH] drivers/net/defxx.c: use %pM to show MAC address
Date: Mon, 4 Jan 2010 23:43:20 +0000 (GMT) [thread overview]
Message-ID: <alpine.LFD.2.00.1001042256120.13474@eddie.linux-mips.org> (raw)
In-Reply-To: <20100104.110326.161162074.davem@davemloft.net>
On Mon, 4 Jan 2010, David Miller wrote:
> > Nack. While I appreciate your effort, the FDDI standard defines opposite
> > bit-ordering for MAC addresses written in the dash-separated and the
> > colon-separated hexadecimal notation, which makes your change invalid,
> > sorry (you'd have to bit-swap them too and that would make addresses
> > counter-intuitive). Please note that `ifconfig' consistently uses the
> > dash-separated notation for FDDI interfaces too (I haven't checked other
> > tools like those in the "iproute" package; they may be buggy).
>
> Well:
>
> 1) It's a bootup kernel message, we can use whatever format
> we want.
>
> 2) As for consistency's sake, the only other FDDI driver using
> alloc_fddidev() and friends, skfp, uses yet another format
> for printing FDDI addresses to the log:
>
> pr_debug(KERN_INFO "HW-Addr: %02x %02x %02x %02x %02x %02x\n",
>
> So striving for "consistency" is a bit of a stretch.
>
> Against a userspace tool's output format? Even more so...
>
> And I doubt anybody is going to suddenly faint and become
> confused if they see the MAC address in ethernet format.
>
> In fact I'd rather see all of our FDDI drivers use the standard
> ethernet MAC format in visible kernel log messages and save all
> of that object code space that gets taken up by these by-hand
> printk's in these obscure drivers.
I agree with you and I like things to be sweet and consistent as long as
they don't cause confusion.
Unfortunately FDDI defines both formats and one obvious for people that
have only ever worked with Ethernet (i.e. in the colon-separated notation)
is the opposite to how people familiar with FDDI would interpret it. The
other driver should use the same notation as this one does and I guess the
author just couldn't decide or something.
Here's a quotation from the relevant FDDI standard document -- that's
"FDDI STATION MANAGEMENT (SMT)", my draft copy is marked as X3T9/92-067,
and it looks it's been later designated as ANSI X3.229-1994 and ISO 9314-6
too. This is from chapter 4.1.2.3 "Notation for Addresses":
"The ANSI/IEEE 802.1 standard has defined the canonical form for
representing 48-bit addresses as octet strings. The canonical form is a
6-octet string. The first octet contains the first 8 bits of the address,
with the I/G bit as the least significant bit, the U/L bit as the next
more significant bit, and so on. When displayed for use by humans, the
canonical form is shown as a hexadecimal string, written from left to
right, with hyphens separating the individual octets.
This SMT document uses the Most Significant Bit (MSB) form for
representing 48 bit addresses as 6-octet strings. The first octet
contains the first 8 bits of the address, with the I/G bit as the most
significant bit, the U/L bit as the next less significant bit, and so on.
When displayed for use by humans, the MSB form is shown as a hexadecimal
string, written from left to right, with colons separating the individual
octets.
The example below shows an address, and the sequence of bits or symbols
that would be transmitted when the address is used in the Source Address
or Destination Address fields on the MAC header. The transmission line
shows the address bits in the order transmitted, from left to right. For
IEEE 802 LANs these correspond to actual bits on the medium. The FDDI
symbols line shows how the FDDI PHY sends the address bits as encoded
symbols.
MSB: 35:7B:12:00:00:01
Canonical: AC-DE-48-00-00-80
Transmission: 00110101 01111011 00010010 00000000 00000000 00000001
FDDI Symbols: 35 7B 12 00 00 01"
Please note that this address has its group bit clear.
This notation is also defined in the "FDDI MEDIA ACCESS CONTROL-2
(MAC-2)" (X3T9/92-120) document although that book does not have a need
to use the MSB form and it's skipped.
As you can see the documents make it pretty clear how FDDI addresses are
to be shown to humans and everyone at least a bit familiar with FDDI will
expect them to look so and be confused otherwise -- whether it's a Linux
kernel bootup message or anything else (and yes, I did have to fix things
coming from this confusion at least once before, so please let's not go
through this again).
And yes, Ethernet and FDDI can be bridged between at the MAC layer (I
have such a device), so it can be shown that it's the canonical form that
corresponds to that used for Ethernet.
Maciej
next prev parent reply other threads:[~2010-01-04 23:43 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-30 18:28 [PATCH] drivers/net/defxx.c: use %pM to show MAC address H Hartley Sweeten
2010-01-04 18:49 ` Maciej W. Rozycki
2010-01-04 19:03 ` David Miller
2010-01-04 23:43 ` Maciej W. Rozycki [this message]
2010-01-05 1:05 ` [RFC PATCH] lib/vsprintf.c: Add %pMF to for FDDI bit reversed dashed output Joe Perches
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=alpine.LFD.2.00.1001042256120.13474@eddie.linux-mips.org \
--to=macro@linux-mips.org \
--cc=davem@davemloft.net \
--cc=hartleys@visionengravers.com \
--cc=linux-kernel@vger.kernel.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).