net: replace %p6 with %pI6
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
4b7a4274ca
commit
5b095d9892
@ -820,7 +820,7 @@ static int ip_vs_conn_seq_show(struct seq_file *seq, void *v)
|
||||
|
||||
#ifdef CONFIG_IP_VS_IPV6
|
||||
if (cp->af == AF_INET6)
|
||||
seq_printf(seq, "%-3s %p6 %04X %p6 %04X %p6 %04X %-11s %7lu\n",
|
||||
seq_printf(seq, "%-3s %pI6 %04X %pI6 %04X %pI6 %04X %-11s %7lu\n",
|
||||
ip_vs_proto_name(cp->protocol),
|
||||
&cp->caddr.in6, ntohs(cp->cport),
|
||||
&cp->vaddr.in6, ntohs(cp->vport),
|
||||
@ -881,7 +881,7 @@ static int ip_vs_conn_sync_seq_show(struct seq_file *seq, void *v)
|
||||
|
||||
#ifdef CONFIG_IP_VS_IPV6
|
||||
if (cp->af == AF_INET6)
|
||||
seq_printf(seq, "%-3s %p6 %04X %p6 %04X %p6 %04X %-11s %-6s %7lu\n",
|
||||
seq_printf(seq, "%-3s %pI6 %04X %pI6 %04X %pI6 %04X %-11s %-6s %7lu\n",
|
||||
ip_vs_proto_name(cp->protocol),
|
||||
&cp->caddr.in6, ntohs(cp->cport),
|
||||
&cp->vaddr.in6, ntohs(cp->vport),
|
||||
|
@ -805,7 +805,7 @@ static int ip_vs_out_icmp_v6(struct sk_buff *skb, int *related)
|
||||
if (ic == NULL)
|
||||
return NF_DROP;
|
||||
|
||||
IP_VS_DBG(12, "Outgoing ICMPv6 (%d,%d) %p6->%p6\n",
|
||||
IP_VS_DBG(12, "Outgoing ICMPv6 (%d,%d) %pI6->%pI6\n",
|
||||
ic->icmp6_type, ntohs(icmpv6_id(ic)),
|
||||
&iph->saddr, &iph->daddr);
|
||||
|
||||
@ -1175,7 +1175,7 @@ ip_vs_in_icmp_v6(struct sk_buff *skb, int *related, unsigned int hooknum)
|
||||
if (ic == NULL)
|
||||
return NF_DROP;
|
||||
|
||||
IP_VS_DBG(12, "Incoming ICMPv6 (%d,%d) %p6->%p6\n",
|
||||
IP_VS_DBG(12, "Incoming ICMPv6 (%d,%d) %pI6->%pI6\n",
|
||||
ic->icmp6_type, ntohs(icmpv6_id(ic)),
|
||||
&iph->saddr, &iph->daddr);
|
||||
|
||||
|
@ -1867,7 +1867,7 @@ static int ip_vs_info_seq_show(struct seq_file *seq, void *v)
|
||||
if (iter->table == ip_vs_svc_table) {
|
||||
#ifdef CONFIG_IP_VS_IPV6
|
||||
if (svc->af == AF_INET6)
|
||||
seq_printf(seq, "%s [%p6]:%04X %s ",
|
||||
seq_printf(seq, "%s [%pI6]:%04X %s ",
|
||||
ip_vs_proto_name(svc->protocol),
|
||||
&svc->addr.in6,
|
||||
ntohs(svc->port),
|
||||
@ -1895,7 +1895,7 @@ static int ip_vs_info_seq_show(struct seq_file *seq, void *v)
|
||||
#ifdef CONFIG_IP_VS_IPV6
|
||||
if (dest->af == AF_INET6)
|
||||
seq_printf(seq,
|
||||
" -> [%p6]:%04X"
|
||||
" -> [%pI6]:%04X"
|
||||
" %-7s %-6d %-10d %-10d\n",
|
||||
&dest->addr.in6,
|
||||
ntohs(dest->port),
|
||||
|
@ -203,7 +203,7 @@ ip_vs_tcpudp_debug_packet_v6(struct ip_vs_protocol *pp,
|
||||
if (ih == NULL)
|
||||
sprintf(buf, "%s TRUNCATED", pp->name);
|
||||
else if (ih->nexthdr == IPPROTO_FRAGMENT)
|
||||
sprintf(buf, "%s %p6->%p6 frag",
|
||||
sprintf(buf, "%s %pI6->%pI6 frag",
|
||||
pp->name, &ih->saddr, &ih->daddr);
|
||||
else {
|
||||
__be16 _ports[2], *pptr;
|
||||
@ -211,10 +211,10 @@ ip_vs_tcpudp_debug_packet_v6(struct ip_vs_protocol *pp,
|
||||
pptr = skb_header_pointer(skb, offset + sizeof(struct ipv6hdr),
|
||||
sizeof(_ports), _ports);
|
||||
if (pptr == NULL)
|
||||
sprintf(buf, "%s TRUNCATED %p6->%p6",
|
||||
sprintf(buf, "%s TRUNCATED %pI6->%pI6",
|
||||
pp->name, &ih->saddr, &ih->daddr);
|
||||
else
|
||||
sprintf(buf, "%s %p6:%u->%p6:%u",
|
||||
sprintf(buf, "%s %pI6:%u->%pI6:%u",
|
||||
pp->name,
|
||||
&ih->saddr, ntohs(pptr[0]),
|
||||
&ih->daddr, ntohs(pptr[1]));
|
||||
|
@ -154,7 +154,7 @@ ah_esp_debug_packet_v6(struct ip_vs_protocol *pp, const struct sk_buff *skb,
|
||||
if (ih == NULL)
|
||||
sprintf(buf, "%s TRUNCATED", pp->name);
|
||||
else
|
||||
sprintf(buf, "%s %p6->%p6",
|
||||
sprintf(buf, "%s %pI6->%pI6",
|
||||
pp->name, &ih->saddr, &ih->daddr);
|
||||
|
||||
printk(KERN_DEBUG "IPVS: %s: %s\n", msg, buf);
|
||||
|
@ -141,12 +141,12 @@ __ip_vs_get_out_rt_v6(struct ip_vs_conn *cp)
|
||||
NULL, &fl);
|
||||
if (!rt) {
|
||||
spin_unlock(&dest->dst_lock);
|
||||
IP_VS_DBG_RL("ip6_route_output error, dest: %p6\n",
|
||||
IP_VS_DBG_RL("ip6_route_output error, dest: %pI6\n",
|
||||
&dest->addr.in6);
|
||||
return NULL;
|
||||
}
|
||||
__ip_vs_dst_set(dest, 0, dst_clone(&rt->u.dst));
|
||||
IP_VS_DBG(10, "new dst %p6, refcnt=%d\n",
|
||||
IP_VS_DBG(10, "new dst %pI6, refcnt=%d\n",
|
||||
&dest->addr.in6,
|
||||
atomic_read(&rt->u.dst.__refcnt));
|
||||
}
|
||||
@ -166,7 +166,7 @@ __ip_vs_get_out_rt_v6(struct ip_vs_conn *cp)
|
||||
|
||||
rt = (struct rt6_info *)ip6_route_output(&init_net, NULL, &fl);
|
||||
if (!rt) {
|
||||
IP_VS_DBG_RL("ip6_route_output error, dest: %p6\n",
|
||||
IP_VS_DBG_RL("ip6_route_output error, dest: %pI6\n",
|
||||
&cp->daddr.in6);
|
||||
return NULL;
|
||||
}
|
||||
@ -300,7 +300,7 @@ ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
|
||||
|
||||
rt = (struct rt6_info *)ip6_route_output(&init_net, NULL, &fl);
|
||||
if (!rt) {
|
||||
IP_VS_DBG_RL("ip_vs_bypass_xmit_v6(): ip6_route_output error, dest: %p6\n",
|
||||
IP_VS_DBG_RL("ip_vs_bypass_xmit_v6(): ip6_route_output error, dest: %pI6\n",
|
||||
&iph->daddr);
|
||||
goto tx_error_icmp;
|
||||
}
|
||||
|
@ -467,7 +467,7 @@ static int help(struct sk_buff *skb,
|
||||
NIPQUAD(cmd.u3.ip),
|
||||
NIPQUAD(ct->tuplehash[dir].tuple.src.u3.ip));
|
||||
} else {
|
||||
pr_debug("conntrack_ftp: NOT RECORDING: %p6 != %p6\n",
|
||||
pr_debug("conntrack_ftp: NOT RECORDING: %pI6 != %pI6\n",
|
||||
cmd.u3.ip6,
|
||||
ct->tuplehash[dir].tuple.src.u3.ip6);
|
||||
}
|
||||
|
@ -850,7 +850,7 @@ static int process_setup(struct sk_buff *skb, struct nf_conn *ct,
|
||||
get_h225_addr(ct, *data, &setup->destCallSignalAddress,
|
||||
&addr, &port) &&
|
||||
memcmp(&addr, &ct->tuplehash[!dir].tuple.src.u3, sizeof(addr))) {
|
||||
pr_debug("nf_ct_q931: set destCallSignalAddress %p6:%hu->%p6:%hu\n",
|
||||
pr_debug("nf_ct_q931: set destCallSignalAddress %pI6:%hu->%pI6:%hu\n",
|
||||
&addr, ntohs(port), &ct->tuplehash[!dir].tuple.src.u3,
|
||||
ntohs(ct->tuplehash[!dir].tuple.src.u.tcp.port));
|
||||
ret = set_h225_addr(skb, data, dataoff,
|
||||
@ -866,7 +866,7 @@ static int process_setup(struct sk_buff *skb, struct nf_conn *ct,
|
||||
get_h225_addr(ct, *data, &setup->sourceCallSignalAddress,
|
||||
&addr, &port) &&
|
||||
memcmp(&addr, &ct->tuplehash[!dir].tuple.dst.u3, sizeof(addr))) {
|
||||
pr_debug("nf_ct_q931: set sourceCallSignalAddress %p6:%hu->%p6:%hu\n",
|
||||
pr_debug("nf_ct_q931: set sourceCallSignalAddress %pI6:%hu->%pI6:%hu\n",
|
||||
&addr, ntohs(port), &ct->tuplehash[!dir].tuple.dst.u3,
|
||||
ntohs(ct->tuplehash[!dir].tuple.dst.u.tcp.port));
|
||||
ret = set_h225_addr(skb, data, dataoff,
|
||||
|
@ -904,7 +904,7 @@ static int dl_seq_real_show(struct dsthash_ent *ent, u_int8_t family,
|
||||
ent->rateinfo.cost);
|
||||
#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
|
||||
case NFPROTO_IPV6:
|
||||
return seq_printf(s, "%ld %p6:%u->%p6:%u %u %u %u\n",
|
||||
return seq_printf(s, "%ld %pI6:%u->%pI6:%u %u %u %u\n",
|
||||
(long)(ent->expires - jiffies)/HZ,
|
||||
&ent->dst.ip6.src,
|
||||
ntohs(ent->dst.src_port),
|
||||
|
@ -426,7 +426,7 @@ static int recent_seq_show(struct seq_file *seq, void *v)
|
||||
"oldest_pkt: %u", NIPQUAD(e->addr.ip), e->ttl,
|
||||
e->stamps[i], e->index);
|
||||
else
|
||||
seq_printf(seq, "src=%p6 ttl: %u last_seen: %lu oldest_pkt: %u",
|
||||
seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u",
|
||||
&e->addr.in6, e->ttl, e->stamps[i], e->index);
|
||||
for (i = 0; i < e->nstamps; i++)
|
||||
seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]);
|
||||
|
Reference in New Issue
Block a user