Skip to content

Commit

Permalink
net: remove trailing space in messages
Browse files Browse the repository at this point in the history
Signed-off-by: Frans Pop <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Frans Pop authored and davem330 committed Mar 24, 2010
1 parent 18062ca commit b138338
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion net/dccp/ccids/ccid3.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ static void ccid3_hc_tx_no_feedback_timer(unsigned long data)
goto restart_timer;
}

ccid3_pr_debug("%s(%p, state=%s) - entry \n", dccp_role(sk), sk,
ccid3_pr_debug("%s(%p, state=%s) - entry\n", dccp_role(sk), sk,
ccid3_tx_state_name(hc->tx_state));

if (hc->tx_state == TFRC_SSTATE_FBACK)
Expand Down
2 changes: 1 addition & 1 deletion net/dccp/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ static int dccp_rcv_request_sent_state_process(struct sock *sk,
if (!between48(DCCP_SKB_CB(skb)->dccpd_ack_seq,
dp->dccps_awl, dp->dccps_awh)) {
dccp_pr_debug("invalid ackno: S.AWL=%llu, "
"P.ackno=%llu, S.AWH=%llu \n",
"P.ackno=%llu, S.AWH=%llu\n",
(unsigned long long)dp->dccps_awl,
(unsigned long long)DCCP_SKB_CB(skb)->dccpd_ack_seq,
(unsigned long long)dp->dccps_awh);
Expand Down
2 changes: 1 addition & 1 deletion net/ipv4/ipconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, str
/* Is it a reply for the device we are configuring? */
if (b->xid != ic_dev_xid) {
if (net_ratelimit())
printk(KERN_ERR "DHCP/BOOTP: Ignoring delayed packet \n");
printk(KERN_ERR "DHCP/BOOTP: Ignoring delayed packet\n");
goto drop_unlock;
}

Expand Down
2 changes: 1 addition & 1 deletion net/ipv4/tcp_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -4318,7 +4318,7 @@ static void tcp_ofo_queue(struct sock *sk)
}

if (!after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt)) {
SOCK_DEBUG(sk, "ofo packet was already received \n");
SOCK_DEBUG(sk, "ofo packet was already received\n");
__skb_unlink(skb, &tp->out_of_order_queue);
__kfree_skb(skb);
continue;
Expand Down
4 changes: 2 additions & 2 deletions net/ipv6/netfilter/ip6t_hbh.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ hbh_mt6(const struct sk_buff *skb, const struct xt_match_param *par)
}

/* Step to the next */
pr_debug("len%04X \n", optlen);
pr_debug("len%04X\n", optlen);

if ((ptr > skb->len - optlen || hdrlen < optlen) &&
temp < optinfo->optsnr - 1) {
pr_debug("new pointer is too large! \n");
pr_debug("new pointer is too large!\n");
break;
}
ptr += optlen;
Expand Down
2 changes: 1 addition & 1 deletion net/irda/ircomm/ircomm_param.c
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ static int ircomm_param_dce(void *instance, irda_param_t *param, int get)
/* Check if any of the settings have changed */
if (dce & 0x0f) {
if (dce & IRCOMM_DELTA_CTS) {
IRDA_DEBUG(2, "%s(), CTS \n", __func__ );
IRDA_DEBUG(2, "%s(), CTS\n", __func__ );
}
}

Expand Down
4 changes: 2 additions & 2 deletions net/sched/cls_u32.c
Original file line number Diff line number Diff line change
Expand Up @@ -772,10 +772,10 @@ static int __init init_u32(void)
printk(" Performance counters on\n");
#endif
#ifdef CONFIG_NET_CLS_IND
printk(" input device check on \n");
printk(" input device check on\n");
#endif
#ifdef CONFIG_NET_CLS_ACT
printk(" Actions configured \n");
printk(" Actions configured\n");
#endif
return register_tcf_proto_ops(&cls_u32_ops);
}
Expand Down
2 changes: 1 addition & 1 deletion net/sunrpc/auth_gss/gss_spkm3_token.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ spkm3_verify_mic_token(unsigned char **tokp, int *mic_hdrlen, unsigned char **ck

/* only support SPKM_MIC_TOK */
if((ptr[6] != 0x01) || (ptr[7] != 0x01)) {
dprintk("RPC: ERROR unsupported SPKM3 token \n");
dprintk("RPC: ERROR unsupported SPKM3 token\n");
goto out;
}

Expand Down
2 changes: 1 addition & 1 deletion net/sunrpc/bc_svc.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int bc_send(struct rpc_rqst *req)
rpc_put_task(task);
}
return ret;
dprintk("RPC: bc_send ret= %d \n", ret);
dprintk("RPC: bc_send ret= %d\n", ret);
}

#endif /* CONFIG_NFS_V4_1 */

0 comments on commit b138338

Please sign in to comment.