History log of /freebsd-10-stable/share/man/man4/sf.4
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 213573 08-Oct-2010 uqs

mdoc: drop redundant .Pp and .LP calls

They have no effect when coming in pairs, or before .Bl/.Bd


# 202386 15-Jan-2010 ru

Use the newly brought %U macro.


# 175529 21-Jan-2008 yongari

Document two new sysctl variables, dev.sf.%d.int_mod and dev.sf.%d.stats.
Xref vlan(4).
Touchd Dd.

Reviewed by: brueffer


# 166346 30-Jan-2007 brueffer

Xref altq(4) for drivers that support it according to altq(4).


# 151046 07-Oct-2005 trhodes

Work around an apparent mdoc(7) bug.

Spotted by: marius
Discussed with: ru


# 148220 21-Jul-2005 trhodes

Break long lines and kill a few instances of EOL whitespace.

Noticed by: ru


# 148145 18-Jul-2005 trhodes

Add a "Load module on start up" comment, similar to mac_*.4 pages[1].
Quote .Cd and .Nd text.
Bump doc date.

Requested by: some user through ru
Supported by: ru, dwmalone, brueffer


# 138068 24-Nov-2004 brueffer

Xref polling.4 and bump .Dd

MFC after: 3 days


# 134252 24-Aug-2004 brueffer

Correct the link to the AIC-6915 programmer's manual


# 134249 24-Aug-2004 brueffer

- move list of supported adapters into a HARDWARE section
- correctly capitalize Fast Ethernet
- correct two typos
- bump document date


# 110946 15-Feb-2003 trhodes

Xref miibus(4).


# 81458 10-Aug-2001 ru

mdoc(7) police: fixed the "new sentence" bogons.


# 79727 14-Jul-2001 schweikh

Removed whitespace at end-of-line; no content changes. I simply did
cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//'

BTW, what editors are the culprits? I'm using vim and it shows
me whitespace at EOL in troff files with a thick blue block...

Reviewed by: Silence from cvs diff -b
MFC after: 7 days


# 79538 10-Jul-2001 ru

mdoc(7) police: removed HISTORY info from the .Os call.


# 75670 18-Apr-2001 ru

mdoc(7) police: normalize .Nd.


# 68716 14-Nov-2000 ru

Use Fx macro wherever possible.


# 63700 20-Jul-2000 wpaul

Minor formatting tweak: compact the supported adapter list.


# 59974 04-May-2000 archie

Move netgraph node type man pages from section 8 to section 4.


# 57676 01-Mar-2000 sheldonh

Remove single-space hard sentence breaks. These degrade the quality
of the typeset output, tend to make diffs harder to read and provide
bad examples for new-comers to mdoc.


# 56612 25-Jan-2000 archie

Add a reference to ng_ether(8).


# 56467 23-Jan-2000 asmodai

Second round of config related changes to the manpages.

device blah0 -> device blah for PCI devices and busses.


# 56140 17-Jan-2000 wpaul

Add/fix controller miibus0/device miibus0 stuff here too.


# 53200 15-Nov-1999 phantom

* remove i386 specific mark
* some style and syntax fixes
* some duplicated $FreeBSD$ tags removed


# 51682 26-Sep-1999 wpaul

Update the Starfire driver comments and man page to include the URL of
the AIC-6915 Programmer's Manual which I finally found online at Adaptec's
site.


# 50476 27-Aug-1999 peter

$Id$ -> $FreeBSD$


# 49831 15-Aug-1999 mpp

Various man page cleanup:

- Sort xrefs
- FreeBSD.ORG -> FreeBSD.org
- Be consistent with section names as outlined in mdoc(7).
- Other misc mdoc cleanup.

PR: doc/13144
Submitted by: Alexey M. Zelkin <phantom@cris.net>


# 49076 25-Jul-1999 wpaul

This commit adds device driver support for Adaptec Duralink PCI fast
ethernet controllers based on the AIC-6915 "Starfire" controller chip.
There are single port, dual port and quad port cards, plus one 100baseFX
card. All are 64-bit PCI devices, except one single port model.

The Starfire would be a very nice chip were it not for the fact that
receive buffers have to be longword aligned. This requires buffer
copying in order to achieve proper payload alignment on the alpha.
Payload alignment is enforced on both the alpha and x86 platforms.
The Starfire has several different DMA descriptor formats and transfer
mechanisms. This driver uses frame descriptors for transmission which
can address up to 14 packet fragments, and a single fragment descriptor
for receive. It also uses the producer/consumer model and completion
queues for both transmit and receive. The transmit ring has 128
descriptors and the receive ring has 256.

This driver supports both FreeBSD/i386 and FreeBSD/alpha, and uses newbus
so that it can be compiled as a loadable kernel module. Support for BPF
and hardware multicast filtering is included.