Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0c736db authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo Committed by David S. Miller
Browse files

[DCCP] ccid2: coding style cleanups



No changes in the logic where made.

Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 45329e71
Loading
Loading
Loading
Loading
+26 −50
Original line number Original line Diff line number Diff line
@@ -37,10 +37,7 @@


static int ccid2_debug;
static int ccid2_debug;


#if 0
#undef CCID2_DEBUG
#define CCID2_DEBUG
#endif

#ifdef CCID2_DEBUG
#ifdef CCID2_DEBUG
#define ccid2_pr_debug(format, a...) \
#define ccid2_pr_debug(format, a...) \
        do { if (ccid2_debug) \
        do { if (ccid2_debug) \
@@ -56,10 +53,8 @@ static const int ccid2_seq_len = 128;
static void ccid2_hc_tx_check_sanity(const struct ccid2_hc_tx_sock *hctx)
static void ccid2_hc_tx_check_sanity(const struct ccid2_hc_tx_sock *hctx)
{
{
	int len = 0;
	int len = 0;
	struct ccid2_seq *seqp;
	int pipe = 0;
	int pipe = 0;

	struct ccid2_seq *seqp = hctx->ccid2hctx_seqh;
	seqp = hctx->ccid2hctx_seqh;


	/* there is data in the chain */
	/* there is data in the chain */
	if (seqp != hctx->ccid2hctx_seqt) {
	if (seqp != hctx->ccid2hctx_seqt) {
@@ -69,9 +64,8 @@ static void ccid2_hc_tx_check_sanity(const struct ccid2_hc_tx_sock *hctx)
			pipe++;
			pipe++;


		while (seqp != hctx->ccid2hctx_seqt) {
		while (seqp != hctx->ccid2hctx_seqt) {
			struct ccid2_seq *prev;
			struct ccid2_seq *prev = seqp->ccid2s_prev;


			prev = seqp->ccid2s_prev;
			len++;
			len++;
			if (!prev->ccid2s_acked)
			if (!prev->ccid2s_acked)
				pipe++;
				pipe++;
@@ -141,7 +135,7 @@ static void ccid2_change_l_ack_ratio(struct sock *sk, int val)
	 * -sorbo.
	 * -sorbo.
	 */
	 */
	if (val != 2) {
	if (val != 2) {
		struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
		const struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
		int max = hctx->ccid2hctx_cwnd / 2;
		int max = hctx->ccid2hctx_cwnd / 2;


		/* round up */
		/* round up */
@@ -179,9 +173,6 @@ static void ccid2_hc_tx_rto_expire(unsigned long data)
	struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
	struct ccid2_hc_tx_sock *hctx = ccid2_hc_tx_sk(sk);
	long s;
	long s;


	/* XXX I don't think i'm locking correctly
	 * -sorbo.
	 */
	bh_lock_sock(sk);
	bh_lock_sock(sk);
	if (sock_owned_by_user(sk)) {
	if (sock_owned_by_user(sk)) {
		sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
		sk_reset_timer(sk, &hctx->ccid2hctx_rtotimer,
@@ -281,33 +272,30 @@ static void ccid2_hc_tx_packet_sent(struct sock *sk, int more, int len)
			hctx->ccid2hctx_arsent	= 0;
			hctx->ccid2hctx_arsent	= 0;
			hctx->ccid2hctx_ackloss	= 0;
			hctx->ccid2hctx_ackloss	= 0;
		}
		}
	}
	} else {
		/* No acks lost up to now... */
		/* No acks lost up to now... */
	else {
		/* decrease ack ratio if enough packets were sent */
		/* decrease ack ratio if enough packets were sent */
		if (dp->dccps_l_ack_ratio > 1) {
		if (dp->dccps_l_ack_ratio > 1) {
			/* XXX don't calculate denominator each time */
			/* XXX don't calculate denominator each time */
			int denom;
			int denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -

			denom = dp->dccps_l_ack_ratio * dp->dccps_l_ack_ratio -
				    dp->dccps_l_ack_ratio;
				    dp->dccps_l_ack_ratio;

			denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;
			denom = hctx->ccid2hctx_cwnd * hctx->ccid2hctx_cwnd / denom;


			if (hctx->ccid2hctx_arsent >= denom) {
			if (hctx->ccid2hctx_arsent >= denom) {
				ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
				ccid2_change_l_ack_ratio(sk, dp->dccps_l_ack_ratio - 1);
				hctx->ccid2hctx_arsent = 0;
				hctx->ccid2hctx_arsent = 0;
			}
			}
		}
		} else {
			/* we can't increase ack ratio further [1] */
			/* we can't increase ack ratio further [1] */
		else {
			hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
			hctx->ccid2hctx_arsent = 0; /* or maybe set it to cwnd*/
		}
		}
	}
	}


	/* setup RTO timer */
	/* setup RTO timer */
	if (!timer_pending(&hctx->ccid2hctx_rtotimer)) {
	if (!timer_pending(&hctx->ccid2hctx_rtotimer))
		ccid2_start_rto_timer(sk);
		ccid2_start_rto_timer(sk);
	}

#ifdef CCID2_DEBUG
#ifdef CCID2_DEBUG
	ccid2_pr_debug("pipe=%d\n", hctx->ccid2hctx_pipe);
	ccid2_pr_debug("pipe=%d\n", hctx->ccid2hctx_pipe);
	ccid2_pr_debug("Sent: seq=%llu\n", seq);
	ccid2_pr_debug("Sent: seq=%llu\n", seq);
@@ -378,7 +366,6 @@ static int ccid2_ackvector(struct sock *sk, struct sk_buff *skb, int offset,
			*vec	= value;
			*vec	= value;
			*veclen = len;
			*veclen = len;
			return offset + (opt_ptr - options);
			return offset + (opt_ptr - options);
			break;
		}
		}
	}
	}


@@ -416,13 +403,11 @@ static inline void ccid2_new_ack(struct sock *sk,
				hctx->ccid2hctx_ssacks = 0;
				hctx->ccid2hctx_ssacks = 0;
				*maxincr = *maxincr - 1;
				*maxincr = *maxincr - 1;
			}
			}
		}
		} else {
			/* increased cwnd enough for this single ack */
			/* increased cwnd enough for this single ack */
		else {
			hctx->ccid2hctx_ssacks = 0;
			hctx->ccid2hctx_ssacks = 0;
		}
		}
	}
	} else {
	else {
		hctx->ccid2hctx_ssacks = 0;
		hctx->ccid2hctx_ssacks = 0;
		hctx->ccid2hctx_acks++;
		hctx->ccid2hctx_acks++;


@@ -444,8 +429,7 @@ static inline void ccid2_new_ack(struct sock *sk,
			       	       r, jiffies, seqp->ccid2s_seq);
			       	       r, jiffies, seqp->ccid2s_seq);
			hctx->ccid2hctx_srtt = r;
			hctx->ccid2hctx_srtt = r;
			hctx->ccid2hctx_rttvar = r >> 1;
			hctx->ccid2hctx_rttvar = r >> 1;
		}
		} else {
		else {
			/* RTTVAR */
			/* RTTVAR */
			long tmp = hctx->ccid2hctx_srtt - r;
			long tmp = hctx->ccid2hctx_srtt - r;
			if (tmp < 0)
			if (tmp < 0)
@@ -528,12 +512,10 @@ static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
	if (hctx->ccid2hctx_rpdupack == -1) {
	if (hctx->ccid2hctx_rpdupack == -1) {
		hctx->ccid2hctx_rpdupack = 0;
		hctx->ccid2hctx_rpdupack = 0;
		hctx->ccid2hctx_rpseq = seqno;
		hctx->ccid2hctx_rpseq = seqno;
	}
	} else {
	else {
		/* check if packet is consecutive */
		/* check if packet is consecutive */
		if ((hctx->ccid2hctx_rpseq + 1) == seqno) {
		if ((hctx->ccid2hctx_rpseq + 1) == seqno)
			hctx->ccid2hctx_rpseq++;
			hctx->ccid2hctx_rpseq++;
		}
		/* it's a later packet */
		/* it's a later packet */
		else if (after48(seqno, hctx->ccid2hctx_rpseq)) {
		else if (after48(seqno, hctx->ccid2hctx_rpseq)) {
			hctx->ccid2hctx_rpdupack++;
			hctx->ccid2hctx_rpdupack++;
@@ -541,7 +523,6 @@ static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
			/* check if we got enough dupacks */
			/* check if we got enough dupacks */
			if (hctx->ccid2hctx_rpdupack >=
			if (hctx->ccid2hctx_rpdupack >=
			    hctx->ccid2hctx_numdupack) {
			    hctx->ccid2hctx_numdupack) {

				hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
				hctx->ccid2hctx_rpdupack = -1; /* XXX lame */
				hctx->ccid2hctx_rpseq = 0;
				hctx->ccid2hctx_rpseq = 0;


@@ -559,7 +540,6 @@ static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
	case DCCP_PKT_ACK:
	case DCCP_PKT_ACK:
	case DCCP_PKT_DATAACK:
	case DCCP_PKT_DATAACK:
		break;
		break;

	default:
	default:
		return;
		return;
	}
	}
@@ -612,11 +592,9 @@ static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
				    	if (state ==
				    	if (state ==
					    DCCP_ACKVEC_STATE_ECN_MARKED) {
					    DCCP_ACKVEC_STATE_ECN_MARKED) {
						loss = 1;
						loss = 1;
					}
					} else
					else {
						ccid2_new_ack(sk, seqp,
						ccid2_new_ack(sk, seqp,
							      &maxincr);
							      &maxincr);
					}


					seqp->ccid2s_acked = 1;
					seqp->ccid2s_acked = 1;
					ccid2_pr_debug("Got ack for %llu\n",
					ccid2_pr_debug("Got ack for %llu\n",
@@ -648,13 +626,11 @@ static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
	while (1) {
	while (1) {
		if (seqp->ccid2s_acked) {
		if (seqp->ccid2s_acked) {
			done++;
			done++;
			if (done == hctx->ccid2hctx_numdupack) {
			if (done == hctx->ccid2hctx_numdupack)
				break;
				break;
		}
		}
		}
		if (seqp == hctx->ccid2hctx_seqt)
		if (seqp == hctx->ccid2hctx_seqt) {
			break;
			break;
		}
		seqp = seqp->ccid2s_prev;
		seqp = seqp->ccid2s_prev;
	}
	}


@@ -798,6 +774,6 @@ static __exit void ccid2_module_exit(void)
module_exit(ccid2_module_exit);
module_exit(ccid2_module_exit);


MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
MODULE_AUTHOR("Andrea Bittau <a.bittau@cs.ucl.ac.uk>");
MODULE_DESCRIPTION("DCCP TCP CCID2 CCID");
MODULE_DESCRIPTION("DCCP TCP-Like (CCID2) CCID");
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");
MODULE_ALIAS("net-dccp-ccid-2");
MODULE_ALIAS("net-dccp-ccid-2");