From nobody@FreeBSD.org  Mon Jul 26 08:41:56 2010
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 552E71065670
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 26 Jul 2010 08:41:56 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 5221A8FC0A
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 26 Jul 2010 08:41:56 +0000 (UTC)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o6Q8ftnZ073750
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 26 Jul 2010 08:41:55 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id o6Q8ftJC073749;
	Mon, 26 Jul 2010 08:41:55 GMT
	(envelope-from nobody)
Message-Id: <201007260841.o6Q8ftJC073749@www.freebsd.org>
Date: Mon, 26 Jul 2010 08:41:55 GMT
From: Lars Hartmann <lars@chaotika.org>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Missing IFCAP_* macro descriptions in ifnet(9)
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         148952
>Category:       docs
>Synopsis:       [patch] Missing IFCAP_* macro descriptions in ifnet(9)
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    simon
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jul 26 08:50:00 UTC 2010
>Closed-Date:    Thu Mar 22 11:47:44 UTC 2012
>Last-Modified:  Thu Mar 22 11:50:16 UTC 2012
>Originator:     Lars Hartmann
>Release:        current
>Organization:
>Environment:
>Description:
There are some IFCAP_* macros which aren't described in the ifnet(9) manpage
>How-To-Repeat:

>Fix:
apply attached patch

Patch attached with submission follows:

Added descriptions for some missing IFCAP_* macros.

From: Lars Hartmann <lars@chaotika.org>


---
 share/man/man9/ifnet.9 |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/share/man/man9/ifnet.9 b/share/man/man9/ifnet.9
index 55e7541..e9dbab5 100644
--- a/share/man/man9/ifnet.9
+++ b/share/man/man9/ifnet.9
@@ -588,6 +588,31 @@ longer than permitted by the Ethernet specification.
 .It Dv IFCAP_JUMBO_MTU
 This Ethernet interface can transmit and receive frames up to
 9000 bytes long.
+.It Dv IFCAP_TSO4
+This Ethernet interface supports TCP Segmentation offloading.
+.It Dv IFCAP_TSO6
+This Ethernet interface supports TCP6 Segmentation offloading.
+.It Dv IFCAP_TSO
+A shorthand for 
+.Pq Dv IFCAP_TSO4 | IFCAP_TSO6 .
+.It Dv IFCAP_TOE4
+This Ethernet interface supports TCP offloading.
+.It Dv IFCAP_TOE6
+This Ethernet interface supports TCP6 offloading.
+.It Dv ICAP_TOE
+A Shorthand for 
+.Pq Dv IFCAP_TOE4 | IFCAP_TOE6 .
+.It Dv IFCAP_WOL_UCAST
+This Ethernet interface supports waking up on any Unicast packet.
+.It Dv IFCAP_WOL_MCAST
+This Ethernet interface supports waking up on any Multicast packet.
+.It Dv IFCAP_WOL_MAGIC
+This Ethernet interface supports waking up on any Magic packet such
+as those sent by
+.Xr wake 8 .
+.It Dv IFCAP_WOL
+A shorthand for
+.Pq Dv IFCAP_WOL_UCAST | IFCAP_WOL_MCAST | IFCAP_WOL_MAGIC .
 .El
 .Pp
 The ability of advanced network interfaces to offload certain


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->patched 
State-Changed-By: simon 
State-Changed-When: Tue Jul 27 08:45:41 UTC 2010 
State-Changed-Why:  
Comitted to head.  Thanks for the submission! 
Will MFC in a couple of weeks. 


Responsible-Changed-From-To: freebsd-doc->simon 
Responsible-Changed-By: simon 
Responsible-Changed-When: Tue Jul 27 08:45:41 UTC 2010 
Responsible-Changed-Why:  
Comitted to head.  Thanks for the submission! 
Will MFC in a couple of weeks. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=148952 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: docs/148952: commit references a PR
Date: Tue, 27 Jul 2010 08:45:43 +0000 (UTC)

 Author: simon
 Date: Tue Jul 27 08:45:29 2010
 New Revision: 210525
 URL: http://svn.freebsd.org/changeset/base/210525
 
 Log:
   Missing IFCAP_* macro descriptions in ifnet(9).
   
   PR:		docs/148952
   Submitted by:	Lars Hartmann <lars@chaotika.org>
   MFC after:	2 weeks
 
 Modified:
   head/share/man/man9/ifnet.9
 
 Modified: head/share/man/man9/ifnet.9
 ==============================================================================
 --- head/share/man/man9/ifnet.9	Tue Jul 27 07:57:35 2010	(r210524)
 +++ head/share/man/man9/ifnet.9	Tue Jul 27 08:45:29 2010	(r210525)
 @@ -588,6 +588,31 @@ longer than permitted by the Ethernet sp
  .It Dv IFCAP_JUMBO_MTU
  This Ethernet interface can transmit and receive frames up to
  9000 bytes long.
 +.It Dv IFCAP_TSO4
 +This Ethernet interface supports TCP Segmentation offloading.
 +.It Dv IFCAP_TSO6
 +This Ethernet interface supports TCP6 Segmentation offloading.
 +.It Dv IFCAP_TSO
 +A shorthand for 
 +.Pq Dv IFCAP_TSO4 | IFCAP_TSO6 .
 +.It Dv IFCAP_TOE4
 +This Ethernet interface supports TCP offloading.
 +.It Dv IFCAP_TOE6
 +This Ethernet interface supports TCP6 offloading.
 +.It Dv ICAP_TOE
 +A Shorthand for 
 +.Pq Dv IFCAP_TOE4 | IFCAP_TOE6 .
 +.It Dv IFCAP_WOL_UCAST
 +This Ethernet interface supports waking up on any Unicast packet.
 +.It Dv IFCAP_WOL_MCAST
 +This Ethernet interface supports waking up on any Multicast packet.
 +.It Dv IFCAP_WOL_MAGIC
 +This Ethernet interface supports waking up on any Magic packet such
 +as those sent by
 +.Xr wake 8 .
 +.It Dv IFCAP_WOL
 +A shorthand for
 +.Pq Dv IFCAP_WOL_UCAST | IFCAP_WOL_MCAST | IFCAP_WOL_MAGIC .
  .El
  .Pp
  The ability of advanced network interfaces to offload certain
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: patched->closed 
State-Changed-By: pluknet 
State-Changed-When: Thu Mar 22 11:47:27 UTC 2012 
State-Changed-Why:  
Merged to stable branches. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=148952 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: docs/148952: commit references a PR
Date: Thu, 22 Mar 2012 11:44:13 +0000 (UTC)

 Author: pluknet
 Date: Thu Mar 22 11:43:54 2012
 New Revision: 233303
 URL: http://svn.freebsd.org/changeset/base/233303
 
 Log:
   MFC r210525:
   
    Missing IFCAP_* macro descriptions in ifnet(9).
   
   PR:		docs/148952
   Submitted by:	Lars Hartmann <lars@chaotika.org>
 
 Modified:
   stable/8/share/man/man9/ifnet.9
 Directory Properties:
   stable/8/share/man/man9/   (props changed)
 
 Modified: stable/8/share/man/man9/ifnet.9
 ==============================================================================
 --- stable/8/share/man/man9/ifnet.9	Thu Mar 22 11:18:14 2012	(r233302)
 +++ stable/8/share/man/man9/ifnet.9	Thu Mar 22 11:43:54 2012	(r233303)
 @@ -600,6 +600,31 @@ longer than permitted by the Ethernet sp
  .It Dv IFCAP_JUMBO_MTU
  This Ethernet interface can transmit and receive frames up to
  9000 bytes long.
 +.It Dv IFCAP_TSO4
 +This Ethernet interface supports TCP Segmentation offloading.
 +.It Dv IFCAP_TSO6
 +This Ethernet interface supports TCP6 Segmentation offloading.
 +.It Dv IFCAP_TSO
 +A shorthand for 
 +.Pq Dv IFCAP_TSO4 | IFCAP_TSO6 .
 +.It Dv IFCAP_TOE4
 +This Ethernet interface supports TCP offloading.
 +.It Dv IFCAP_TOE6
 +This Ethernet interface supports TCP6 offloading.
 +.It Dv ICAP_TOE
 +A Shorthand for 
 +.Pq Dv IFCAP_TOE4 | IFCAP_TOE6 .
 +.It Dv IFCAP_WOL_UCAST
 +This Ethernet interface supports waking up on any Unicast packet.
 +.It Dv IFCAP_WOL_MCAST
 +This Ethernet interface supports waking up on any Multicast packet.
 +.It Dv IFCAP_WOL_MAGIC
 +This Ethernet interface supports waking up on any Magic packet such
 +as those sent by
 +.Xr wake 8 .
 +.It Dv IFCAP_WOL
 +A shorthand for
 +.Pq Dv IFCAP_WOL_UCAST | IFCAP_WOL_MCAST | IFCAP_WOL_MAGIC .
  .El
  .Pp
  The ability of advanced network interfaces to offload certain
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: docs/148952: commit references a PR
Date: Thu, 22 Mar 2012 11:47:19 +0000 (UTC)

 Author: pluknet
 Date: Thu Mar 22 11:47:06 2012
 New Revision: 233304
 URL: http://svn.freebsd.org/changeset/base/233304
 
 Log:
   MFC r210525:
   
    Missing IFCAP_* macro descriptions in ifnet(9).
   
   PR:		docs/148952
   Submitted by:	Lars Hartmann <lars@chaotika.org>
 
 Modified:
   stable/7/share/man/man9/ifnet.9
 Directory Properties:
   stable/7/share/man/man9/   (props changed)
 
 Modified: stable/7/share/man/man9/ifnet.9
 ==============================================================================
 --- stable/7/share/man/man9/ifnet.9	Thu Mar 22 11:43:54 2012	(r233303)
 +++ stable/7/share/man/man9/ifnet.9	Thu Mar 22 11:47:06 2012	(r233304)
 @@ -572,6 +572,31 @@ longer than permitted by the Ethernet sp
  .It Dv IFCAP_JUMBO_MTU
  This Ethernet interface can transmit and receive frames up to
  9000 bytes long.
 +.It Dv IFCAP_TSO4
 +This Ethernet interface supports TCP Segmentation offloading.
 +.It Dv IFCAP_TSO6
 +This Ethernet interface supports TCP6 Segmentation offloading.
 +.It Dv IFCAP_TSO
 +A shorthand for 
 +.Pq Dv IFCAP_TSO4 | IFCAP_TSO6 .
 +.It Dv IFCAP_TOE4
 +This Ethernet interface supports TCP offloading.
 +.It Dv IFCAP_TOE6
 +This Ethernet interface supports TCP6 offloading.
 +.It Dv ICAP_TOE
 +A Shorthand for 
 +.Pq Dv IFCAP_TOE4 | IFCAP_TOE6 .
 +.It Dv IFCAP_WOL_UCAST
 +This Ethernet interface supports waking up on any Unicast packet.
 +.It Dv IFCAP_WOL_MCAST
 +This Ethernet interface supports waking up on any Multicast packet.
 +.It Dv IFCAP_WOL_MAGIC
 +This Ethernet interface supports waking up on any Magic packet such
 +as those sent by
 +.Xr wake 8 .
 +.It Dv IFCAP_WOL
 +A shorthand for
 +.Pq Dv IFCAP_WOL_UCAST | IFCAP_WOL_MCAST | IFCAP_WOL_MAGIC .
  .El
  .Pp
  The ability of advanced network interfaces to offload certain
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
>Unformatted:
