Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Nov 2014 13:02:59 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r274047 - head/sys/net
Message-ID:  <201411031302.sA3D2xbA090984@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Mon Nov  3 13:02:58 2014
New Revision: 274047
URL: https://svnweb.freebsd.org/changeset/base/274047

Log:
  Clarify TSO segment limit comment and remove two TABs to make lines a
  bit shorter.
  
  Sponsored by:	Mellanox Technologies

Modified:
  head/sys/net/if_var.h

Modified: head/sys/net/if_var.h
==============================================================================
--- head/sys/net/if_var.h	Mon Nov  3 13:01:58 2014	(r274046)
+++ head/sys/net/if_var.h	Mon Nov  3 13:02:58 2014	(r274047)
@@ -238,9 +238,12 @@ struct ifnet {
 					 * to find a better place for
 					 * it eventually. */
 
-	/* TSO fields for segment limits. If a field is zero below, there is no limit. */
-	u_int		if_hw_tsomaxsegcount;	/* TSO maximum segment count */
-	u_int		if_hw_tsomaxsegsize;	/* TSO maximum segment size in bytes */
+	/*
+	 * TSO fields for segment limits. If a field below is zero,
+	 * there is no TSO segment limit.
+	 */
+	u_int	if_hw_tsomaxsegcount;	/* TSO maximum segment count */
+	u_int	if_hw_tsomaxsegsize;	/* TSO maximum segment size in bytes */
 
 	/*
 	 * Spare fields to be added before branching a stable branch, so



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411031302.sA3D2xbA090984>