linux-next: manual merge of the net tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Dave,

Today's linux-next merge of the net tree got a conflict in
fs/lockd/host.c between commit 3105d87fe1d311e80fd4781e82fa519fd5e2ffe2
("NLM: Support IPv6 scope IDs in nlm_display_address()") from the nfsd
tree and various commits that replace the NIP* macros from the net tree.

I fixed it up (see below) and can carry the fix as necessary.
-- 
Cheers,
Stephen Rothwell                    sfr@xxxxxxxxxxxxxxxx
http://www.canb.auug.org.au/~sfr/

diff --cc fs/lockd/host.c
index 472aac1,c48c263..0000000
--- a/fs/lockd/host.c
+++ b/fs/lockd/host.c
@@@ -105,37 -104,25 +105,37 @@@ static void nlm_clear_port(struct socka
  	}
  }
  
 -static void nlm_display_address(const struct sockaddr *sap,
 -				char *buf, const size_t len)
 +static void nlm_display_ipv4_address(const struct sockaddr *sap, char *buf,
 +				     const size_t len)
  {
  	const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
- 	snprintf(buf, len, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
++	snprintf(buf, len, "%pI4", &sin->sin_addr.s_addr);
 +}
 +
 +static void nlm_display_ipv6_address(const struct sockaddr *sap, char *buf,
 +				     const size_t len)
 +{
  	const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
  
 +	if (ipv6_addr_v4mapped(&sin6->sin6_addr))
- 		snprintf(buf, len, NIPQUAD_FMT,
- 				NIPQUAD(sin6->sin6_addr.s6_addr32[3]));
++		snprintf(buf, len, "%pI4",
++				&sin6->sin6_addr.s6_addr32[3]);
 +	else if (sin6->sin6_scope_id != 0)
- 		snprintf(buf, len, NIP6_FMT "%%%u", NIP6(sin6->sin6_addr),
++		snprintf(buf, len, "%pI6%%%u", &sin6->sin6_addr,
 +				sin6->sin6_scope_id);
 +	else
- 		snprintf(buf, len, NIP6_FMT, NIP6(sin6->sin6_addr));
++		snprintf(buf, len, "%pI6", &sin6->sin6_addr);
 +}
 +
 +static void nlm_display_address(const struct sockaddr *sap,
 +				char *buf, const size_t len)
 +{
  	switch (sap->sa_family) {
 -	case AF_UNSPEC:
 -		snprintf(buf, len, "unspecified");
 -		break;
  	case AF_INET:
 -		snprintf(buf, len, "%pI4", &sin->sin_addr.s_addr);
 +		nlm_display_ipv4_address(sap, buf, len);
  		break;
  	case AF_INET6:
 -		if (ipv6_addr_v4mapped(&sin6->sin6_addr))
 -			snprintf(buf, len, "%pI4",
 -				 &sin6->sin6_addr.s6_addr32[3]);
 -		else
 -			snprintf(buf, len, "%pI6", &sin6->sin6_addr);
 +		nlm_display_ipv6_address(sap, buf, len);
  		break;
  	default:
  		snprintf(buf, len, "unsupported address family");
--
To unsubscribe from this list: send the line "unsubscribe linux-next" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel]     [Linux USB Development]     [Yosemite News]     [Linux SCSI]

  Powered by Linux