diff options
Diffstat (limited to 'net/ipv6')
| -rw-r--r-- | net/ipv6/addrlabel.c | 10 | ||||
| -rw-r--r-- | net/ipv6/ah6.c | 2 | ||||
| -rw-r--r-- | net/ipv6/esp6.c | 2 | ||||
| -rw-r--r-- | net/ipv6/exthdrs.c | 2 | ||||
| -rw-r--r-- | net/ipv6/icmp.c | 2 | ||||
| -rw-r--r-- | net/ipv6/ip6mr.c | 2 | ||||
| -rw-r--r-- | net/ipv6/ipcomp6.c | 2 | ||||
| -rw-r--r-- | net/ipv6/ndisc.c | 2 | ||||
| -rw-r--r-- | net/ipv6/netfilter/ip6t_LOG.c | 2 | ||||
| -rw-r--r-- | net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c | 2 | ||||
| -rw-r--r-- | net/ipv6/tcp_ipv6.c | 2 | 
11 files changed, 15 insertions, 15 deletions
diff --git a/net/ipv6/addrlabel.c b/net/ipv6/addrlabel.c index d28036659d2..6ff73c4c126 100644 --- a/net/ipv6/addrlabel.c +++ b/net/ipv6/addrlabel.c @@ -186,7 +186,7 @@ u32 ipv6_addr_label(struct net *net,  	label = p ? p->label : IPV6_ADDR_LABEL_DEFAULT;  	rcu_read_unlock(); -	ADDRLABEL(KERN_DEBUG "%s(addr=%p6, type=%d, ifindex=%d) => %08x\n", +	ADDRLABEL(KERN_DEBUG "%s(addr=%pI6, type=%d, ifindex=%d) => %08x\n",  		  __func__, addr, type, ifindex, label);  	return label; @@ -201,7 +201,7 @@ static struct ip6addrlbl_entry *ip6addrlbl_alloc(struct net *net,  	struct ip6addrlbl_entry *newp;  	int addrtype; -	ADDRLABEL(KERN_DEBUG "%s(prefix=%p6, prefixlen=%d, ifindex=%d, label=%u)\n", +	ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d, label=%u)\n",  		  __func__, prefix, prefixlen, ifindex, (unsigned int)label);  	addrtype = ipv6_addr_type(prefix) & (IPV6_ADDR_MAPPED | IPV6_ADDR_COMPATv4 | IPV6_ADDR_LOOPBACK); @@ -289,7 +289,7 @@ static int ip6addrlbl_add(struct net *net,  	struct ip6addrlbl_entry *newp;  	int ret = 0; -	ADDRLABEL(KERN_DEBUG "%s(prefix=%p6, prefixlen=%d, ifindex=%d, label=%u, replace=%d)\n", +	ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d, label=%u, replace=%d)\n",  		  __func__, prefix, prefixlen, ifindex, (unsigned int)label,  		  replace); @@ -313,7 +313,7 @@ static int __ip6addrlbl_del(struct net *net,  	struct hlist_node *pos, *n;  	int ret = -ESRCH; -	ADDRLABEL(KERN_DEBUG "%s(prefix=%p6, prefixlen=%d, ifindex=%d)\n", +	ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d)\n",  		  __func__, prefix, prefixlen, ifindex);  	hlist_for_each_entry_safe(p, pos, n, &ip6addrlbl_table.head, list) { @@ -337,7 +337,7 @@ static int ip6addrlbl_del(struct net *net,  	struct in6_addr prefix_buf;  	int ret; -	ADDRLABEL(KERN_DEBUG "%s(prefix=%p6, prefixlen=%d, ifindex=%d)\n", +	ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d)\n",  		  __func__, prefix, prefixlen, ifindex);  	ipv6_addr_prefix(&prefix_buf, prefix, prefixlen); diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c index 9bc43f2527c..7a8a01369e5 100644 --- a/net/ipv6/ah6.c +++ b/net/ipv6/ah6.c @@ -419,7 +419,7 @@ static void ah6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,  	if (!x)  		return; -	NETDEBUG(KERN_DEBUG "pmtu discovery on SA AH/%08x/%p6\n", +	NETDEBUG(KERN_DEBUG "pmtu discovery on SA AH/%08x/%pI6\n",  		 ntohl(ah->spi), &iph->daddr);  	xfrm_state_put(x); diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c index ec4be188c34..c02a6308def 100644 --- a/net/ipv6/esp6.c +++ b/net/ipv6/esp6.c @@ -367,7 +367,7 @@ static void esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,  	x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, esph->spi, IPPROTO_ESP, AF_INET6);  	if (!x)  		return; -	printk(KERN_DEBUG "pmtu discovery on SA ESP/%08x/%p6\n", +	printk(KERN_DEBUG "pmtu discovery on SA ESP/%08x/%pI6\n",  			ntohl(esph->spi), &iph->daddr);  	xfrm_state_put(x);  } diff --git a/net/ipv6/exthdrs.c b/net/ipv6/exthdrs.c index a8905146835..1c7f400a3cf 100644 --- a/net/ipv6/exthdrs.c +++ b/net/ipv6/exthdrs.c @@ -219,7 +219,7 @@ static int ipv6_dest_hao(struct sk_buff *skb, int optoff)  	if (!(ipv6_addr_type(&hao->addr) & IPV6_ADDR_UNICAST)) {  		LIMIT_NETDEBUG( -			KERN_DEBUG "hao is not an unicast addr: %p6\n", &hao->addr); +			KERN_DEBUG "hao is not an unicast addr: %pI6\n", &hao->addr);  		goto discard;  	} diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index b3fa38e40dc..3c2821f9b52 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c @@ -681,7 +681,7 @@ static int icmpv6_rcv(struct sk_buff *skb)  		skb->csum = ~csum_unfold(csum_ipv6_magic(saddr, daddr, skb->len,  					     IPPROTO_ICMPV6, 0));  		if (__skb_checksum_complete(skb)) { -			LIMIT_NETDEBUG(KERN_DEBUG "ICMPv6 checksum failed [%p6 > %p6]\n", +			LIMIT_NETDEBUG(KERN_DEBUG "ICMPv6 checksum failed [%pI6 > %pI6]\n",  				       saddr, daddr);  			goto discard_it;  		} diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index 798e6a29dd8..c491fb98a5e 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c @@ -297,7 +297,7 @@ static int ipmr_mfc_seq_show(struct seq_file *seq, void *v)  		const struct mfc6_cache *mfc = v;  		const struct ipmr_mfc_iter *it = seq->private; -		seq_printf(seq, "%p6 %p6 %-3d %8ld %8ld %8ld", +		seq_printf(seq, "%pI6 %pI6 %-3d %8ld %8ld %8ld",  			   &mfc->mf6c_mcastgrp, &mfc->mf6c_origin,  			   mfc->mf6c_parent,  			   mfc->mfc_un.res.pkt, diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c index 9566d8f7314..d4576a9c154 100644 --- a/net/ipv6/ipcomp6.c +++ b/net/ipv6/ipcomp6.c @@ -67,7 +67,7 @@ static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,  	if (!x)  		return; -	printk(KERN_DEBUG "pmtu discovery on SA IPCOMP/%08x/%p6\n", +	printk(KERN_DEBUG "pmtu discovery on SA IPCOMP/%08x/%pI6\n",  			spi, &iph->daddr);  	xfrm_state_put(x);  } diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 191bb0722a7..2a6752dae09 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -647,7 +647,7 @@ static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)  	if ((probes -= neigh->parms->ucast_probes) < 0) {  		if (!(neigh->nud_state & NUD_VALID)) { -			ND_PRINTK1(KERN_DEBUG "%s(): trying to ucast probe in NUD_INVALID: %p6\n", +			ND_PRINTK1(KERN_DEBUG "%s(): trying to ucast probe in NUD_INVALID: %pI6\n",  				   __func__, target);  		}  		ndisc_send_ns(dev, neigh, target, target, saddr); diff --git a/net/ipv6/netfilter/ip6t_LOG.c b/net/ipv6/netfilter/ip6t_LOG.c index a61ce301000..02885e8bb69 100644 --- a/net/ipv6/netfilter/ip6t_LOG.c +++ b/net/ipv6/netfilter/ip6t_LOG.c @@ -61,7 +61,7 @@ static void dump_packet(const struct nf_loginfo *info,  	}  	/* Max length: 88 "SRC=0000.0000.0000.0000.0000.0000.0000.0000 DST=0000.0000.0000.0000.0000.0000.0000.0000 " */ -	printk("SRC=%p6 DST=%p6 ", &ih->saddr, &ih->daddr); +	printk("SRC=%pI6 DST=%pI6 ", &ih->saddr, &ih->daddr);  	/* Max length: 44 "LEN=65535 TC=255 HOPLIMIT=255 FLOWLBL=FFFFF " */  	printk("LEN=%Zu TC=%u HOPLIMIT=%u FLOWLBL=%u ", diff --git a/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c b/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c index b165a273c6c..727b9530448 100644 --- a/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c +++ b/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c @@ -56,7 +56,7 @@ static bool ipv6_invert_tuple(struct nf_conntrack_tuple *tuple,  static int ipv6_print_tuple(struct seq_file *s,  			    const struct nf_conntrack_tuple *tuple)  { -	return seq_printf(s, "src=%p6 dst=%p6 ", +	return seq_printf(s, "src=%pI6 dst=%pI6 ",  			  tuple->src.u3.ip6, tuple->dst.u3.ip6);  } diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 483550cfdf3..984276463a8 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -872,7 +872,7 @@ static int tcp_v6_inbound_md5_hash (struct sock *sk, struct sk_buff *skb)  	if (genhash || memcmp(hash_location, newhash, 16) != 0) {  		if (net_ratelimit()) { -			printk(KERN_INFO "MD5 Hash %s for (%p6, %u)->(%p6, %u)\n", +			printk(KERN_INFO "MD5 Hash %s for (%pI6, %u)->(%pI6, %u)\n",  			       genhash ? "failed" : "mismatch",  			       &ip6h->saddr, ntohs(th->source),  			       &ip6h->daddr, ntohs(th->dest));  |