From: Jiri Pirko Date: Tue, 10 Dec 2013 12:56:29 +0000 (+0100) Subject: ipv6 addrconf: revert /proc/net/if_inet6 ifa_flag format X-Git-Tag: v3.14-rc1~94^2~546 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=971a351ccbbd2b6eef136a2221da0b80aca50906;p=kernel%2Fkernel-generic.git ipv6 addrconf: revert /proc/net/if_inet6 ifa_flag format Turned out that applications like ifconfig do not handle the change. So revert ifa_flag format back to 2-letter hex value. Introduced by: commit 479840ffdbe4242e8a25349218c8e0859223aa35 "ipv6 addrconf: extend ifa_flags to u32" Reported-by: Alexander Aring Signed-off-by: Jiri Pirko Tested-by: FLorent Fourcot Signed-off-by: David S. Miller --- diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index be4dbbd..3c3425e 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -3367,12 +3367,12 @@ static void if6_seq_stop(struct seq_file *seq, void *v) static int if6_seq_show(struct seq_file *seq, void *v) { struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v; - seq_printf(seq, "%pi6 %02x %02x %02x %03x %8s\n", + seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n", &ifp->addr, ifp->idev->dev->ifindex, ifp->prefix_len, ifp->scope, - ifp->flags, + (u8) ifp->flags, ifp->idev->dev->name); return 0; }