Re: [net-next PATCH v4 1/3] net: TCP thin-stream detection

From: David Miller
Date: Wed Feb 17 2010 - 19:32:10 EST


From: Andreas Petlund <apetlund@xxxxxxxxx>
Date: Tue, 16 Feb 2010 15:40:32 +0100

>
> +/* Determines whether this is a thin stream (which may suffer from
> + * increased latency). Used to trigger latency-reducing mechanisms.*/
> +static inline unsigned int tcp_stream_is_thin(struct tcp_sock *tp)
> +{
> + return tp->packets_out < 4 && !tcp_in_initial_slowstart(tp);
> +}
> +
> /* /proc */

Please format comments:

/* Like this. */

or:

/* Like this.
* And this.
*/

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/