Netdev List
 help / color / mirror / Atom feed
* [PATCH] net/9p: Fix sparse endian warning in trans_fd.c
@ 2020-06-18 18:34 Alexander Kapshuk
  2020-06-18 19:09 ` Dominique Martinet
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Kapshuk @ 2020-06-18 18:34 UTC (permalink / raw)
  To: ericvh, lucho, asmadeus
  Cc: davem, kuba, v9fs-developer, netdev, linux-kernel,
	alexander.kapshuk

Address sparse endian warning:
net/9p/trans_fd.c:932:28: warning: incorrect type in assignment (different base types)
net/9p/trans_fd.c:932:28:    expected restricted __be32 [addressable] [assigned] [usertype] s_addr
net/9p/trans_fd.c:932:28:    got unsigned long

Signed-off-by: Alexander Kapshuk <alexander.kapshuk@gmail.com>
---
 net/9p/trans_fd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c
index 13cd683a658a..2581f5145a22 100644
--- a/net/9p/trans_fd.c
+++ b/net/9p/trans_fd.c
@@ -929,7 +929,7 @@ static int p9_bind_privport(struct socket *sock)

 	memset(&cl, 0, sizeof(cl));
 	cl.sin_family = AF_INET;
-	cl.sin_addr.s_addr = INADDR_ANY;
+	cl.sin_addr.s_addr = htonl(INADDR_ANY);
 	for (port = p9_ipport_resv_max; port >= p9_ipport_resv_min; port--) {
 		cl.sin_port = htons((ushort)port);
 		err = kernel_bind(sock, (struct sockaddr *)&cl, sizeof(cl));
--
2.27.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-06-18 19:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-18 18:34 [PATCH] net/9p: Fix sparse endian warning in trans_fd.c Alexander Kapshuk
2020-06-18 19:09 ` Dominique Martinet
2020-06-18 19:27   ` Alexander Kapshuk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox