netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ralf Baechle <ralf@linux-mips.org>
To: Stephen Hemminger <stephen@networkplumber.org>
Cc: netdev@vger.kernel.org, linux-hams@vger.kernel.org
Subject: [PATCH v2 4/6] NETROM: Print decoded addresses rather than hex numbers.
Date: Sun, 19 Sep 2021 15:30:26 +0200	[thread overview]
Message-ID: <140fac95627e5a66f9482b6ce550173cef61bab3.1632059758.git.ralf@linux-mips.org> (raw)
In-Reply-To: <cover.1632059758.git.ralf@linux-mips.org>

NETROM is an OSI layer 3 protocol sitting on top of AX.25.  It also uses
AX.25 addresses.  Without this commit ip will print NETROM address like

  link/generic 98:92:9c:aa:b0:40:02 brd 00:00:00:00:00:00:00

while with this commit the decoded result

  link/generic LINUX-1 brd *

is much more eye friendly.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
---
 lib/ll_addr.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/ll_addr.c b/lib/ll_addr.c
index 910e6daf..46e30c79 100644
--- a/lib/ll_addr.c
+++ b/lib/ll_addr.c
@@ -41,6 +41,8 @@ const char *ll_addr_n2a(const unsigned char *addr, int alen, int type,
 		return inet_ntop(AF_INET6, addr, buf, blen);
 	if (alen == 7 && type == ARPHRD_AX25)
 		return ax25_ntop(AF_AX25, addr, buf, blen);
+	if (alen == 7 && type == ARPHRD_NETROM)
+		return netrom_ntop(AF_NETROM, addr, buf, blen);
 
 	snprintf(buf, blen, "%02x", addr[0]);
 	for (i = 1, l = 2; i < alen && l < blen; i++, l += 3)
-- 
2.31.1



  parent reply	other threads:[~2021-09-20 14:44 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-19 13:55 [PATCH v2 0/6] iproute2: Add basic AX.25, NETROM and ROSE support Ralf Baechle
2021-09-19 13:30 ` [PATCH v2 5/6] ROSE: Add rose_ntop implementation Ralf Baechle
2021-09-19 13:30 ` [PATCH v2 2/6] AX.25: Print decoded addresses rather than hex numbers Ralf Baechle
2021-09-19 13:30 ` Ralf Baechle [this message]
2021-09-19 13:30 ` [PATCH v2 6/6] ROSE: " Ralf Baechle
2021-09-19 13:30 ` [PATCH v2 1/6] AX.25: Add ax25_ntop implementation Ralf Baechle
2021-09-19 13:30 ` [PATCH v2 3/6] NETROM: Add netrom_ntop implementation Ralf Baechle
2021-09-24  2:05 ` [PATCH v2 0/6] iproute2: Add basic AX.25, NETROM and ROSE support David Ahern
2021-09-24 11:38   ` Ralf Baechle

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=140fac95627e5a66f9482b6ce550173cef61bab3.1632059758.git.ralf@linux-mips.org \
    --to=ralf@linux-mips.org \
    --cc=linux-hams@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=stephen@networkplumber.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).