addrconf.c (d1a76187a5be4f89c6cb19d800cb5fb7aac735c5) | addrconf.c (b071195deba14b37ce896c26f20349b46e5f9fd2) |
---|---|
1/* 2 * IPv6 Address [auto]configuration 3 * Linux INET6 implementation 4 * 5 * Authors: 6 * Pedro Roque <roque@di.fc.ul.pt> 7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> 8 * --- 2972 unchanged lines hidden (view full) --- 2981 __releases(addrconf_hash_lock) 2982{ 2983 read_unlock_bh(&addrconf_hash_lock); 2984} 2985 2986static int if6_seq_show(struct seq_file *seq, void *v) 2987{ 2988 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v; | 1/* 2 * IPv6 Address [auto]configuration 3 * Linux INET6 implementation 4 * 5 * Authors: 6 * Pedro Roque <roque@di.fc.ul.pt> 7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> 8 * --- 2972 unchanged lines hidden (view full) --- 2981 __releases(addrconf_hash_lock) 2982{ 2983 read_unlock_bh(&addrconf_hash_lock); 2984} 2985 2986static int if6_seq_show(struct seq_file *seq, void *v) 2987{ 2988 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v; |
2989 seq_printf(seq, 2990 NIP6_SEQFMT " %02x %02x %02x %02x %8s\n", 2991 NIP6(ifp->addr), | 2989 seq_printf(seq, "%#p6 %02x %02x %02x %02x %8s\n", 2990 &ifp->addr, |
2992 ifp->idev->dev->ifindex, 2993 ifp->prefix_len, 2994 ifp->scope, 2995 ifp->flags, 2996 ifp->idev->dev->name); 2997 return 0; 2998} 2999 --- 1568 unchanged lines hidden --- | 2991 ifp->idev->dev->ifindex, 2992 ifp->prefix_len, 2993 ifp->scope, 2994 ifp->flags, 2995 ifp->idev->dev->name); 2996 return 0; 2997} 2998 --- 1568 unchanged lines hidden --- |