[CCID3]: Move NULL-protection into function This moves 10 instances of testing against NULL into the function which is used to de-reference the CCID-private data. Signed-off-by: Gerrit Renker <gerrit@xxxxxxxxxxxxxx> --- net/dccp/ccids/ccid3.c | 20 -------------------- net/dccp/ccids/ccid3.h | 18 ++++++++++++------ 2 files changed, 12 insertions(+), 26 deletions(-) --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c @@ -305,8 +305,6 @@ static int ccid3_hc_tx_send_packet(struc ktime_t now = ktime_get_real(); s64 delay; - BUG_ON(hctx == NULL); - /* * This function is called only for Data and DataAck packets. Sending * zero-sized Data(Ack)s is theoretically possible, but for congestion @@ -387,8 +385,6 @@ static void ccid3_hc_tx_packet_sent(stru { struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk); - BUG_ON(hctx == NULL); - ccid3_hc_tx_update_s(hctx, len); if (tfrc_tx_hist_add(&hctx->ccid3hctx_hist, dccp_sk(sk)->dccps_gss)) @@ -403,8 +399,6 @@ static void ccid3_hc_tx_packet_recv(stru unsigned long t_nfb; u32 pinv, r_sample; - BUG_ON(hctx == NULL); - /* we are only interested in ACKs */ if (!(DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK || DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_DATAACK)) @@ -523,8 +517,6 @@ static int ccid3_hc_tx_parse_options(str struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk); struct ccid3_options_received *opt_recv; - BUG_ON(hctx == NULL); - opt_recv = &hctx->ccid3hctx_options_received; if (opt_recv->ccid3or_seqno != dp->dccps_gsr) { @@ -599,8 +591,6 @@ static void ccid3_hc_tx_exit(struct sock { struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk); - BUG_ON(hctx == NULL); - ccid3_hc_tx_set_state(sk, TFRC_SSTATE_TERM); sk_stop_timer(sk, &hctx->ccid3hctx_no_feedback_timer); @@ -616,8 +606,6 @@ static void ccid3_hc_tx_get_info(struct if (sk->sk_state == DCCP_LISTEN) return; - BUG_ON(hctx == NULL); - info->tcpi_rto = hctx->ccid3hctx_t_rto; info->tcpi_rtt = hctx->ccid3hctx_rtt; } @@ -726,8 +714,6 @@ static int ccid3_hc_rx_insert_options(st const struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk); __be32 x_recv, pinv; - BUG_ON(hcrx == NULL); - if (!(sk->sk_state == DCCP_OPEN || sk->sk_state == DCCP_PARTOPEN)) return 0; @@ -961,8 +947,6 @@ static void ccid3_hc_rx_packet_recv(stru u32 p_prev, r_sample, rtt_prev; int loss, payload_size; - BUG_ON(hcrx == NULL); - opt_recv = &dccp_sk(sk)->dccps_options_received; switch (DCCP_SKB_CB(skb)->dccpd_type) { @@ -1079,8 +1063,6 @@ static void ccid3_hc_rx_exit(struct sock { struct ccid3_hc_rx_sock *hcrx = ccid3_hc_rx_sk(sk); - BUG_ON(hcrx == NULL); - ccid3_hc_rx_set_state(sk, TFRC_RSTATE_TERM); /* Empty packet history */ @@ -1098,8 +1080,6 @@ static void ccid3_hc_rx_get_info(struct if (sk->sk_state == DCCP_LISTEN) return; - BUG_ON(hcrx == NULL); - info->tcpi_ca_state = hcrx->ccid3hcrx_state; info->tcpi_options |= TCPI_OPT_TIMESTAMPS; info->tcpi_rcv_rtt = hcrx->ccid3hcrx_rtt; --- a/net/dccp/ccids/ccid3.h +++ b/net/dccp/ccids/ccid3.h @@ -116,6 +116,14 @@ struct ccid3_hc_tx_sock { struct ccid3_options_received ccid3hctx_options_received; }; +static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk) +{ + void *ccid3_tx_priv = ccid_priv(dccp_sk(sk)->dccps_hc_tx_ccid); + + BUG_ON(ccid3_tx_priv == NULL); + return ccid3_tx_priv; +} + /* TFRC receiver states */ enum ccid3_hc_rx_states { TFRC_RSTATE_NO_DATA = 1, @@ -156,14 +164,12 @@ struct ccid3_hc_rx_sock { u32 ccid3hcrx_pinv; }; -static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk) -{ - return ccid_priv(dccp_sk(sk)->dccps_hc_tx_ccid); -} - static inline struct ccid3_hc_rx_sock *ccid3_hc_rx_sk(const struct sock *sk) { - return ccid_priv(dccp_sk(sk)->dccps_hc_rx_ccid); + void *ccid3_rx_priv = ccid_priv(dccp_sk(sk)->dccps_hc_rx_ccid); + + BUG_ON(ccid3_rx_priv == NULL); + return ccid3_rx_priv; } #endif /* _DCCP_CCID3_H_ */ - To unsubscribe from this list: send the line "unsubscribe dccp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html