net: replace NIPQUAD() in net/*/
Using NIPQUAD() with NIPQUAD_FMT, %d.%d.%d.%d or %u.%u.%u.%u can be replaced with %pI4 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
14d5e834f6
commit
21454aaad3
@@ -96,9 +96,9 @@ static int rxrpc_validate_address(struct rxrpc_sock *rx,
|
||||
|
||||
switch (srx->transport.family) {
|
||||
case AF_INET:
|
||||
_debug("INET: %x @ %u.%u.%u.%u",
|
||||
_debug("INET: %x @ %pI4",
|
||||
ntohs(srx->transport.sin.sin_port),
|
||||
NIPQUAD(srx->transport.sin.sin_addr));
|
||||
&srx->transport.sin.sin_addr);
|
||||
if (srx->transport_len > 8)
|
||||
memset((void *)&srx->transport + 8, 0,
|
||||
srx->transport_len - 8);
|
||||
|
@@ -49,8 +49,7 @@ void rxrpc_UDP_error_report(struct sock *sk)
|
||||
addr = *(__be32 *)(skb_network_header(skb) + serr->addr_offset);
|
||||
port = serr->port;
|
||||
|
||||
_net("Rx UDP Error from "NIPQUAD_FMT":%hu",
|
||||
NIPQUAD(addr), ntohs(port));
|
||||
_net("Rx UDP Error from %pI4:%hu", &addr, ntohs(port));
|
||||
_debug("Msg l:%d d:%d", skb->len, skb->data_len);
|
||||
|
||||
peer = rxrpc_find_peer(local, addr, port);
|
||||
|
@@ -131,10 +131,10 @@ struct rxrpc_local *rxrpc_lookup_local(struct sockaddr_rxrpc *srx)
|
||||
struct rxrpc_local *local;
|
||||
int ret;
|
||||
|
||||
_enter("{%d,%u,%u.%u.%u.%u+%hu}",
|
||||
_enter("{%d,%u,%pI4+%hu}",
|
||||
srx->transport_type,
|
||||
srx->transport.family,
|
||||
NIPQUAD(srx->transport.sin.sin_addr),
|
||||
&srx->transport.sin.sin_addr,
|
||||
ntohs(srx->transport.sin.sin_port));
|
||||
|
||||
down_write(&rxrpc_local_sem);
|
||||
@@ -143,10 +143,10 @@ struct rxrpc_local *rxrpc_lookup_local(struct sockaddr_rxrpc *srx)
|
||||
read_lock_bh(&rxrpc_local_lock);
|
||||
|
||||
list_for_each_entry(local, &rxrpc_locals, link) {
|
||||
_debug("CMP {%d,%u,%u.%u.%u.%u+%hu}",
|
||||
_debug("CMP {%d,%u,%pI4+%hu}",
|
||||
local->srx.transport_type,
|
||||
local->srx.transport.family,
|
||||
NIPQUAD(local->srx.transport.sin.sin_addr),
|
||||
&local->srx.transport.sin.sin_addr,
|
||||
ntohs(local->srx.transport.sin.sin_port));
|
||||
|
||||
if (local->srx.transport_type != srx->transport_type ||
|
||||
@@ -188,11 +188,11 @@ struct rxrpc_local *rxrpc_lookup_local(struct sockaddr_rxrpc *srx)
|
||||
|
||||
up_write(&rxrpc_local_sem);
|
||||
|
||||
_net("LOCAL new %d {%d,%u,%u.%u.%u.%u+%hu}",
|
||||
_net("LOCAL new %d {%d,%u,%pI4+%hu}",
|
||||
local->debug_id,
|
||||
local->srx.transport_type,
|
||||
local->srx.transport.family,
|
||||
NIPQUAD(local->srx.transport.sin.sin_addr),
|
||||
&local->srx.transport.sin.sin_addr,
|
||||
ntohs(local->srx.transport.sin.sin_port));
|
||||
|
||||
_leave(" = %p [new]", local);
|
||||
@@ -203,11 +203,11 @@ found_local:
|
||||
read_unlock_bh(&rxrpc_local_lock);
|
||||
up_write(&rxrpc_local_sem);
|
||||
|
||||
_net("LOCAL old %d {%d,%u,%u.%u.%u.%u+%hu}",
|
||||
_net("LOCAL old %d {%d,%u,%pI4+%hu}",
|
||||
local->debug_id,
|
||||
local->srx.transport_type,
|
||||
local->srx.transport.family,
|
||||
NIPQUAD(local->srx.transport.sin.sin_addr),
|
||||
&local->srx.transport.sin.sin_addr,
|
||||
ntohs(local->srx.transport.sin.sin_port));
|
||||
|
||||
_leave(" = %p [reuse]", local);
|
||||
|
@@ -123,10 +123,10 @@ struct rxrpc_peer *rxrpc_get_peer(struct sockaddr_rxrpc *srx, gfp_t gfp)
|
||||
const char *new = "old";
|
||||
int usage;
|
||||
|
||||
_enter("{%d,%d,%u.%u.%u.%u+%hu}",
|
||||
_enter("{%d,%d,%pI4+%hu}",
|
||||
srx->transport_type,
|
||||
srx->transport_len,
|
||||
NIPQUAD(srx->transport.sin.sin_addr),
|
||||
&srx->transport.sin.sin_addr,
|
||||
ntohs(srx->transport.sin.sin_port));
|
||||
|
||||
/* search the peer list first */
|
||||
@@ -177,12 +177,12 @@ struct rxrpc_peer *rxrpc_get_peer(struct sockaddr_rxrpc *srx, gfp_t gfp)
|
||||
new = "new";
|
||||
|
||||
success:
|
||||
_net("PEER %s %d {%d,%u,%u.%u.%u.%u+%hu}",
|
||||
_net("PEER %s %d {%d,%u,%pI4+%hu}",
|
||||
new,
|
||||
peer->debug_id,
|
||||
peer->srx.transport_type,
|
||||
peer->srx.transport.family,
|
||||
NIPQUAD(peer->srx.transport.sin.sin_addr),
|
||||
&peer->srx.transport.sin.sin_addr,
|
||||
ntohs(peer->srx.transport.sin.sin_port));
|
||||
|
||||
_leave(" = %p {u=%d}", peer, atomic_read(&peer->usage));
|
||||
|
@@ -61,12 +61,12 @@ static int rxrpc_call_seq_show(struct seq_file *seq, void *v)
|
||||
call = list_entry(v, struct rxrpc_call, link);
|
||||
trans = call->conn->trans;
|
||||
|
||||
sprintf(lbuff, NIPQUAD_FMT":%u",
|
||||
NIPQUAD(trans->local->srx.transport.sin.sin_addr),
|
||||
sprintf(lbuff, "%pI4:%u",
|
||||
&trans->local->srx.transport.sin.sin_addr,
|
||||
ntohs(trans->local->srx.transport.sin.sin_port));
|
||||
|
||||
sprintf(rbuff, NIPQUAD_FMT":%u",
|
||||
NIPQUAD(trans->peer->srx.transport.sin.sin_addr),
|
||||
sprintf(rbuff, "%pI4:%u",
|
||||
&trans->peer->srx.transport.sin.sin_addr,
|
||||
ntohs(trans->peer->srx.transport.sin.sin_port));
|
||||
|
||||
seq_printf(seq,
|
||||
@@ -144,12 +144,12 @@ static int rxrpc_connection_seq_show(struct seq_file *seq, void *v)
|
||||
conn = list_entry(v, struct rxrpc_connection, link);
|
||||
trans = conn->trans;
|
||||
|
||||
sprintf(lbuff, NIPQUAD_FMT":%u",
|
||||
NIPQUAD(trans->local->srx.transport.sin.sin_addr),
|
||||
sprintf(lbuff, "%pI4:%u",
|
||||
&trans->local->srx.transport.sin.sin_addr,
|
||||
ntohs(trans->local->srx.transport.sin.sin_port));
|
||||
|
||||
sprintf(rbuff, NIPQUAD_FMT":%u",
|
||||
NIPQUAD(trans->peer->srx.transport.sin.sin_addr),
|
||||
sprintf(rbuff, "%pI4:%u",
|
||||
&trans->peer->srx.transport.sin.sin_addr,
|
||||
ntohs(trans->peer->srx.transport.sin.sin_port));
|
||||
|
||||
seq_printf(seq,
|
||||
|
@@ -78,10 +78,10 @@ struct rxrpc_transport *rxrpc_get_transport(struct rxrpc_local *local,
|
||||
const char *new = "old";
|
||||
int usage;
|
||||
|
||||
_enter("{%u.%u.%u.%u+%hu},{%u.%u.%u.%u+%hu},",
|
||||
NIPQUAD(local->srx.transport.sin.sin_addr),
|
||||
_enter("{%pI4+%hu},{%pI4+%hu},",
|
||||
&local->srx.transport.sin.sin_addr,
|
||||
ntohs(local->srx.transport.sin.sin_port),
|
||||
NIPQUAD(peer->srx.transport.sin.sin_addr),
|
||||
&peer->srx.transport.sin.sin_addr,
|
||||
ntohs(peer->srx.transport.sin.sin_port));
|
||||
|
||||
/* search the transport list first */
|
||||
@@ -149,10 +149,10 @@ struct rxrpc_transport *rxrpc_find_transport(struct rxrpc_local *local,
|
||||
{
|
||||
struct rxrpc_transport *trans;
|
||||
|
||||
_enter("{%u.%u.%u.%u+%hu},{%u.%u.%u.%u+%hu},",
|
||||
NIPQUAD(local->srx.transport.sin.sin_addr),
|
||||
_enter("{%pI4+%hu},{%pI4+%hu},",
|
||||
&local->srx.transport.sin.sin_addr,
|
||||
ntohs(local->srx.transport.sin.sin_port),
|
||||
NIPQUAD(peer->srx.transport.sin.sin_addr),
|
||||
&peer->srx.transport.sin.sin_addr,
|
||||
ntohs(peer->srx.transport.sin.sin_port));
|
||||
|
||||
/* search the transport list */
|
||||
|
@@ -897,7 +897,7 @@ static int rxkad_decrypt_ticket(struct rxrpc_connection *conn,
|
||||
/* get the IPv4 address of the entity that requested the ticket */
|
||||
memcpy(&addr, p, sizeof(addr));
|
||||
p += 4;
|
||||
_debug("KIV ADDR : "NIPQUAD_FMT, NIPQUAD(addr));
|
||||
_debug("KIV ADDR : %pI4", &addr);
|
||||
|
||||
/* get the session key from the ticket */
|
||||
memcpy(&key, p, sizeof(key));
|
||||
|
Reference in New Issue
Block a user