Commit 842d1ef1 authored by Gerrit Renker's avatar Gerrit Renker

dccp ccid-3: Remove ccid3hc{tx,rx}_ prefixes

This patch does the same for CCID-3 as the previous patch for CCID-2:

        s#ccid3hctx_##g;
        s#ccid3hcrx_##g;

plus manual editing to retain consistency.

Please note: expanded the fields of the `struct tfrc_tx_info' in the hc_tx_sock,
since using short #define identifiers is not a good idea. The only place where
this embedded struct was used is ccid3_hc_tx_getsockopt().
Signed-off-by: default avatarGerrit Renker <gerrit@erg.abdn.ac.uk>
parent 1fb87509
This diff is collapsed.
...@@ -77,44 +77,43 @@ enum ccid3_hc_tx_states { ...@@ -77,44 +77,43 @@ enum ccid3_hc_tx_states {
/** struct ccid3_hc_tx_sock - CCID3 sender half-connection socket /** struct ccid3_hc_tx_sock - CCID3 sender half-connection socket
* *
* @ccid3hctx_x - Current sending rate in 64 * bytes per second * @x - Current sending rate in 64 * bytes per second
* @ccid3hctx_x_recv - Receive rate in 64 * bytes per second * @x_recv - Receive rate in 64 * bytes per second
* @ccid3hctx_x_calc - Calculated rate in bytes per second * @x_calc - Calculated rate in bytes per second
* @ccid3hctx_rtt - Estimate of current round trip time in usecs * @rtt - Estimate of current round trip time in usecs
* @ccid3hctx_p - Current loss event rate (0-1) scaled by 1000000 * @p - Current loss event rate (0-1) scaled by 1000000
* @ccid3hctx_s - Packet size in bytes * @s - Packet size in bytes
* @ccid3hctx_t_rto - Nofeedback Timer setting in usecs * @t_rto - Nofeedback Timer setting in usecs
* @ccid3hctx_t_ipi - Interpacket (send) interval (RFC 3448, 4.6) in usecs * @t_ipi - Interpacket (send) interval (RFC 3448, 4.6) in usecs
* @ccid3hctx_state - Sender state, one of %ccid3_hc_tx_states * @state - Sender state, one of %ccid3_hc_tx_states
* @ccid3hctx_last_win_count - Last window counter sent * @last_win_count - Last window counter sent
* @ccid3hctx_t_last_win_count - Timestamp of earliest packet * @t_last_win_count - Timestamp of earliest packet with
* with last_win_count value sent * last_win_count value sent
* @ccid3hctx_no_feedback_timer - Handle to no feedback timer * @no_feedback_timer - Handle to no feedback timer
* @ccid3hctx_t_ld - Time last doubled during slow start * @t_ld - Time last doubled during slow start
* @ccid3hctx_t_nom - Nominal send time of next packet * @t_nom - Nominal send time of next packet
* @ccid3hctx_delta - Send timer delta (RFC 3448, 4.6) in usecs * @delta - Send timer delta (RFC 3448, 4.6) in usecs
* @ccid3hctx_hist - Packet history * @hist - Packet history
* @ccid3hctx_options_received - Parsed set of retrieved options * @options_received - Parsed set of retrieved options
*/ */
struct ccid3_hc_tx_sock { struct ccid3_hc_tx_sock {
struct tfrc_tx_info ccid3hctx_tfrc; u64 x;
#define ccid3hctx_x ccid3hctx_tfrc.tfrctx_x u64 x_recv;
#define ccid3hctx_x_recv ccid3hctx_tfrc.tfrctx_x_recv u32 x_calc;
#define ccid3hctx_x_calc ccid3hctx_tfrc.tfrctx_x_calc u32 rtt;
#define ccid3hctx_rtt ccid3hctx_tfrc.tfrctx_rtt u32 p;
#define ccid3hctx_p ccid3hctx_tfrc.tfrctx_p u32 t_rto;
#define ccid3hctx_t_rto ccid3hctx_tfrc.tfrctx_rto u32 t_ipi;
#define ccid3hctx_t_ipi ccid3hctx_tfrc.tfrctx_ipi u16 s;
u16 ccid3hctx_s; enum ccid3_hc_tx_states state:8;
enum ccid3_hc_tx_states ccid3hctx_state:8; u8 last_win_count;
u8 ccid3hctx_last_win_count; ktime_t t_last_win_count;
ktime_t ccid3hctx_t_last_win_count; struct timer_list no_feedback_timer;
struct timer_list ccid3hctx_no_feedback_timer; ktime_t t_ld;
ktime_t ccid3hctx_t_ld; ktime_t t_nom;
ktime_t ccid3hctx_t_nom; u32 delta;
u32 ccid3hctx_delta; struct tfrc_tx_hist_entry *hist;
struct tfrc_tx_hist_entry *ccid3hctx_hist; struct ccid3_options_received options_received;
struct ccid3_options_received ccid3hctx_options_received;
}; };
static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk) static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk)
...@@ -133,32 +132,32 @@ enum ccid3_hc_rx_states { ...@@ -133,32 +132,32 @@ enum ccid3_hc_rx_states {
/** struct ccid3_hc_rx_sock - CCID3 receiver half-connection socket /** struct ccid3_hc_rx_sock - CCID3 receiver half-connection socket
* *
* @ccid3hcrx_x_recv - Receiver estimate of send rate (RFC 3448 4.3) * @x_recv - Receiver estimate of send rate (RFC 3448 4.3)
* @ccid3hcrx_rtt - Receiver estimate of rtt (non-standard) * @rtt - Receiver estimate of rtt (non-standard)
* @ccid3hcrx_p - Current loss event rate (RFC 3448 5.4) * @p - Current loss event rate (RFC 3448 5.4)
* @ccid3hcrx_last_counter - Tracks window counter (RFC 4342, 8.1) * @last_counter - Tracks window counter (RFC 4342, 8.1)
* @ccid3hcrx_state - Receiver state, one of %ccid3_hc_rx_states * @state - Receiver state, one of %ccid3_hc_rx_states
* @ccid3hcrx_bytes_recv - Total sum of DCCP payload bytes * @bytes_recv - Total sum of DCCP payload bytes
* @ccid3hcrx_x_recv - Receiver estimate of send rate (RFC 3448, sec. 4.3) * @x_recv - Receiver estimate of send rate (RFC 3448, sec. 4.3)
* @ccid3hcrx_rtt - Receiver estimate of RTT * @rtt - Receiver estimate of RTT
* @ccid3hcrx_tstamp_last_feedback - Time at which last feedback was sent * @tstamp_last_feedback - Time at which last feedback was sent
* @ccid3hcrx_tstamp_last_ack - Time at which last feedback was sent * @tstamp_last_ack - Time at which last feedback was sent
* @ccid3hcrx_hist - Packet history (loss detection + RTT sampling) * @hist - Packet history (loss detection + RTT sampling)
* @ccid3hcrx_li_hist - Loss Interval database * @li_hist - Loss Interval database
* @ccid3hcrx_s - Received packet size in bytes * @s - Received packet size in bytes
* @ccid3hcrx_pinv - Inverse of Loss Event Rate (RFC 4342, sec. 8.5) * @p_inverse - Inverse of Loss Event Rate (RFC 4342, sec. 8.5)
*/ */
struct ccid3_hc_rx_sock { struct ccid3_hc_rx_sock {
u8 ccid3hcrx_last_counter:4; u8 last_counter:4;
enum ccid3_hc_rx_states ccid3hcrx_state:8; enum ccid3_hc_rx_states state:8;
u32 ccid3hcrx_bytes_recv; u32 bytes_recv;
u32 ccid3hcrx_x_recv; u32 x_recv;
u32 ccid3hcrx_rtt; u32 rtt;
ktime_t ccid3hcrx_tstamp_last_feedback; ktime_t tstamp_last_feedback;
struct tfrc_rx_hist ccid3hcrx_hist; struct tfrc_rx_hist hist;
struct tfrc_loss_hist ccid3hcrx_li_hist; struct tfrc_loss_hist li_hist;
u16 ccid3hcrx_s; u16 s;
#define ccid3hcrx_pinv ccid3hcrx_li_hist.i_mean #define p_inverse li_hist.i_mean
}; };
static inline struct ccid3_hc_rx_sock *ccid3_hc_rx_sk(const struct sock *sk) static inline struct ccid3_hc_rx_sock *ccid3_hc_rx_sk(const struct sock *sk)
......
...@@ -87,10 +87,8 @@ static int jdccp_sendmsg(struct kiocb *iocb, struct sock *sk, ...@@ -87,10 +87,8 @@ static int jdccp_sendmsg(struct kiocb *iocb, struct sock *sk,
"%llu %llu %d\n", "%llu %llu %d\n",
NIPQUAD(inet->saddr), ntohs(inet->sport), NIPQUAD(inet->saddr), ntohs(inet->sport),
NIPQUAD(inet->daddr), ntohs(inet->dport), size, NIPQUAD(inet->daddr), ntohs(inet->dport), size,
hctx->ccid3hctx_s, hctx->ccid3hctx_rtt, hctx->s, hctx->rtt, hctx->p, hctx->x_calc,
hctx->ccid3hctx_p, hctx->ccid3hctx_x_calc, hctx->x_recv >> 6, hctx->x >> 6, hctx->t_ipi);
hctx->ccid3hctx_x_recv >> 6,
hctx->ccid3hctx_x >> 6, hctx->ccid3hctx_t_ipi);
else else
printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d\n", printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d\n",
NIPQUAD(inet->saddr), ntohs(inet->sport), NIPQUAD(inet->saddr), ntohs(inet->sport),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment