diff options
author | Joe Perches <joe@perches.com> | 2007-10-03 20:59:30 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:42 -0400 |
commit | 0795af5729b18218767fab27c44b1384f72dc9ad (patch) | |
tree | 67c16df84aa6ec219340b8ea1b5cfb0e8150a216 /net/core | |
parent | 95ea36275f3c9a1d3d04c217b4b576c657c4e70e (diff) |
[NET]: Introduce and use print_mac() and DECLARE_MAC_BUF()
This is nicer than the MAC_FMT stuff.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/netpoll.c | 12 | ||||
-rw-r--r-- | net/core/pktgen.c | 17 |
2 files changed, 8 insertions, 21 deletions
diff --git a/net/core/netpoll.c b/net/core/netpoll.c index bb7523a5b408..e13602d8154d 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c | |||
@@ -534,6 +534,7 @@ out: | |||
534 | 534 | ||
535 | void netpoll_print_options(struct netpoll *np) | 535 | void netpoll_print_options(struct netpoll *np) |
536 | { | 536 | { |
537 | DECLARE_MAC_BUF(mac); | ||
537 | printk(KERN_INFO "%s: local port %d\n", | 538 | printk(KERN_INFO "%s: local port %d\n", |
538 | np->name, np->local_port); | 539 | np->name, np->local_port); |
539 | printk(KERN_INFO "%s: local IP %d.%d.%d.%d\n", | 540 | printk(KERN_INFO "%s: local IP %d.%d.%d.%d\n", |
@@ -544,15 +545,8 @@ void netpoll_print_options(struct netpoll *np) | |||
544 | np->name, np->remote_port); | 545 | np->name, np->remote_port); |
545 | printk(KERN_INFO "%s: remote IP %d.%d.%d.%d\n", | 546 | printk(KERN_INFO "%s: remote IP %d.%d.%d.%d\n", |
546 | np->name, HIPQUAD(np->remote_ip)); | 547 | np->name, HIPQUAD(np->remote_ip)); |
547 | printk(KERN_INFO "%s: remote ethernet address " | 548 | printk(KERN_INFO "%s: remote ethernet address %s\n", |
548 | "%02x:%02x:%02x:%02x:%02x:%02x\n", | 549 | np->name, print_mac(mac, np->remote_mac)); |
549 | np->name, | ||
550 | np->remote_mac[0], | ||
551 | np->remote_mac[1], | ||
552 | np->remote_mac[2], | ||
553 | np->remote_mac[3], | ||
554 | np->remote_mac[4], | ||
555 | np->remote_mac[5]); | ||
556 | } | 550 | } |
557 | 551 | ||
558 | int netpoll_parse_options(struct netpoll *np, char *opt) | 552 | int netpoll_parse_options(struct netpoll *np, char *opt) |
diff --git a/net/core/pktgen.c b/net/core/pktgen.c index 94e42be16daa..f07bd590f8f9 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c | |||
@@ -599,11 +599,11 @@ static const struct file_operations pktgen_fops = { | |||
599 | 599 | ||
600 | static int pktgen_if_show(struct seq_file *seq, void *v) | 600 | static int pktgen_if_show(struct seq_file *seq, void *v) |
601 | { | 601 | { |
602 | int i; | ||
603 | struct pktgen_dev *pkt_dev = seq->private; | 602 | struct pktgen_dev *pkt_dev = seq->private; |
604 | __u64 sa; | 603 | __u64 sa; |
605 | __u64 stopped; | 604 | __u64 stopped; |
606 | __u64 now = getCurUs(); | 605 | __u64 now = getCurUs(); |
606 | DECLARE_MAC_BUF(mac); | ||
607 | 607 | ||
608 | seq_printf(seq, | 608 | seq_printf(seq, |
609 | "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n", | 609 | "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n", |
@@ -648,19 +648,12 @@ static int pktgen_if_show(struct seq_file *seq, void *v) | |||
648 | 648 | ||
649 | seq_puts(seq, " src_mac: "); | 649 | seq_puts(seq, " src_mac: "); |
650 | 650 | ||
651 | if (is_zero_ether_addr(pkt_dev->src_mac)) | 651 | seq_printf(seq, "%s ", |
652 | for (i = 0; i < 6; i++) | 652 | print_mac(mac, is_zero_ether_addr(pkt_dev->src_mac) ? |
653 | seq_printf(seq, "%02X%s", pkt_dev->odev->dev_addr[i], | 653 | pkt_dev->odev->dev_addr : pkt_dev->src_mac)); |
654 | i == 5 ? " " : ":"); | ||
655 | else | ||
656 | for (i = 0; i < 6; i++) | ||
657 | seq_printf(seq, "%02X%s", pkt_dev->src_mac[i], | ||
658 | i == 5 ? " " : ":"); | ||
659 | 654 | ||
660 | seq_printf(seq, "dst_mac: "); | 655 | seq_printf(seq, "dst_mac: "); |
661 | for (i = 0; i < 6; i++) | 656 | seq_printf(seq, "%s\n", print_mac(mac, pkt_dev->dst_mac)); |
662 | seq_printf(seq, "%02X%s", pkt_dev->dst_mac[i], | ||
663 | i == 5 ? "\n" : ":"); | ||
664 | 657 | ||
665 | seq_printf(seq, | 658 | seq_printf(seq, |
666 | " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n", | 659 | " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n", |