freebsd-skq/share/man/man4
Mark Murray cc4d059c03 Merge from project branch. Uninteresting commits are trimmed.
Refactor of /dev/random device. Main points include:

* Userland seeding is no longer used. This auto-seeds at boot time
on PC/Desktop setups; this may need some tweeking and intelligence
from those folks setting up embedded boxes, but the work is believed
to be minimal.

* An entropy cache is written to /entropy (even during installation)
and the kernel uses this at next boot.

* An entropy file written to /boot/entropy can be loaded by loader(8)

* Hardware sources such as rdrand are fed into Yarrow, and are no
longer available raw.

------------------------------------------------------------------------
r256240 | des | 2013-10-09 21:14:16 +0100 (Wed, 09 Oct 2013) | 4 lines

Add a RANDOM_RWFILE option and hide the entropy cache code behind it.
Rename YARROW_RNG and FORTUNA_RNG to RANDOM_YARROW and RANDOM_FORTUNA.
Add the RANDOM_* options to LINT.

------------------------------------------------------------------------
r256239 | des | 2013-10-09 21:12:59 +0100 (Wed, 09 Oct 2013) | 2 lines

Define RANDOM_PURE_RNDTEST for rndtest(4).

------------------------------------------------------------------------
r256204 | des | 2013-10-09 18:51:38 +0100 (Wed, 09 Oct 2013) | 2 lines

staticize struct random_hardware_source

------------------------------------------------------------------------
r256203 | markm | 2013-10-09 18:50:36 +0100 (Wed, 09 Oct 2013) | 2 lines

Wrap some policy-rich code in 'if NOTYET' until we can thresh out
what it really needs to do.

------------------------------------------------------------------------
r256184 | des | 2013-10-09 10:13:12 +0100 (Wed, 09 Oct 2013) | 2 lines

Re-add /dev/urandom for compatibility purposes.

------------------------------------------------------------------------
r256182 | des | 2013-10-09 10:11:14 +0100 (Wed, 09 Oct 2013) | 3 lines

Add missing include guards and move the existing ones out of the
implementation namespace.

------------------------------------------------------------------------
r256168 | markm | 2013-10-08 23:14:07 +0100 (Tue, 08 Oct 2013) | 10 lines

Fix some just-noticed problems:

o Allow this to work with "nodevice random" by fixing where the
MALLOC pool is defined.

o Fix the explicit reseed code. This was correct as submitted, but
in the project branch doesn't need to set the "seeded" bit as this
is done correctly in the "unblock" function.

o Remove some debug ifdeffing.

o Adjust comments.

------------------------------------------------------------------------
r256159 | markm | 2013-10-08 19:48:11 +0100 (Tue, 08 Oct 2013) | 6 lines

Time to eat crow for me.

I replaced the sx_* locks that Arthur used with regular mutexes;
this turned out the be the wrong thing to do as the locks need to
be sleepable. Revert this folly.

# Submitted by:	Arthur Mesh <arthurmesh@gmail.com> (In original diff)

------------------------------------------------------------------------
r256138 | des | 2013-10-08 12:05:26 +0100 (Tue, 08 Oct 2013) | 10 lines

Add YARROW_RNG and FORTUNA_RNG to sys/conf/options.

Add a SYSINIT that forces a reseed during proc0 setup, which happens
fairly late in the boot process.

Add a RANDOM_DEBUG option which enables some debugging printf()s.

Add a new RANDOM_ATTACH entropy source which harvests entropy from the
get_cyclecount() delta across each call to a device attach method.

------------------------------------------------------------------------
r256135 | markm | 2013-10-08 07:54:52 +0100 (Tue, 08 Oct 2013) | 8 lines

Debugging. My attempt at EVENTHANDLER(multiuser) was a failure; use
EVENTHANDLER(mountroot) instead.

This means we can't count on /var being present, so something will
need to be done about harvesting /var/db/entropy/... .

Some policy now needs to be sorted out, and a pre-sync cache needs
to be written, but apart from that we are now ready to go.

Over to review.

------------------------------------------------------------------------
r256094 | markm | 2013-10-06 23:45:02 +0100 (Sun, 06 Oct 2013) | 8 lines

Snapshot.

Looking pretty good; this mostly works now. New code includes:

* Read cached entropy at startup, both from files and from loader(8)
preloaded entropy. Failures are soft, but announced. Untested.

* Use EVENTHANDLER to do above just before we go multiuser. Untested.

------------------------------------------------------------------------
r256088 | markm | 2013-10-06 14:01:42 +0100 (Sun, 06 Oct 2013) | 2 lines

Fix up the man page for random(4). This mainly removes no-longer-relevant
details about HW RNGs, reseeding explicitly and user-supplied
entropy.

------------------------------------------------------------------------
r256087 | markm | 2013-10-06 13:43:42 +0100 (Sun, 06 Oct 2013) | 6 lines

As userland writing to /dev/random is no more, remove the "better
than nothing" bootstrap mode.

Add SWI harvesting to the mix.

My box seeds Yarrow by itself in a few seconds! YMMV; more to follow.

------------------------------------------------------------------------
r256086 | markm | 2013-10-06 13:40:32 +0100 (Sun, 06 Oct 2013) | 11 lines

Debug run. This now works, except that the "live" sources haven't
been tested. With all sources turned on, this unlocks itself in
a couple of seconds! That is no my box, and there is no guarantee
that this will be the case everywhere.

* Cut debug prints.

* Use the same locks/mutexes all the way through.

* Be a tad more conservative about entropy estimates.

------------------------------------------------------------------------
r256084 | markm | 2013-10-06 13:35:29 +0100 (Sun, 06 Oct 2013) | 5 lines

Don't use the "real" assembler mnemonics; older compilers may not
understand them (like when building CURRENT on 9.x).

# Submitted by:	Konstantin Belousov <kostikbel@gmail.com>

------------------------------------------------------------------------
r256081 | markm | 2013-10-06 10:55:28 +0100 (Sun, 06 Oct 2013) | 12 lines

SNAPSHOT.

Simplify the malloc pools; We only need one for this device.

Simplify the harvest queue.

Marginally improve the entropy pool hashing, making it a bit faster
in the process.

Connect up the hardware "live" source harvesting. This is simplistic
for now, and will need to be made rate-adaptive.

All of the above passes a compile test but needs to be debugged.

------------------------------------------------------------------------
r256042 | markm | 2013-10-04 07:55:06 +0100 (Fri, 04 Oct 2013) | 25 lines

Snapshot. This passes the build test, but has not yet been finished or debugged.

Contains:

* Refactor the hardware RNG CPU instruction sources to feed into
the software mixer. This is unfinished. The actual harvesting needs
to be sorted out. Modified by me (see below).

* Remove 'frac' parameter from random_harvest(). This was never
used and adds extra code for no good reason.

* Remove device write entropy harvesting. This provided a weak
attack vector, was not very good at bootstrapping the device. To
follow will be a replacement explicit reseed knob.

* Separate out all the RANDOM_PURE sources into separate harvest
entities. This adds some secuity in the case where more than one
is present.

* Review all the code and fix anything obviously messy or inconsistent.
Address som review concerns while I'm here, like rename the pseudo-rng
to 'dummy'.

# Submitted by:	Arthur Mesh <arthurmesh@gmail.com> (the first item)

------------------------------------------------------------------------
r255319 | markm | 2013-09-06 18:51:52 +0100 (Fri, 06 Sep 2013) | 4 lines

Yarrow wants entropy estimations to be conservative; the usual idea
is that if you are certain you have N bits of entropy, you declare
N/2.

------------------------------------------------------------------------
r255075 | markm | 2013-08-30 18:47:53 +0100 (Fri, 30 Aug 2013) | 4 lines

Remove short-lived idea; thread to harvest (eg) RDRAND enropy into the
usual harvest queues. It was a nifty idea, but too heavyweight.

# Submitted by:	Arthur Mesh <arthurmesh@gmail.com>

------------------------------------------------------------------------
r255071 | markm | 2013-08-30 12:42:57 +0100 (Fri, 30 Aug 2013) | 4 lines

Separate out the Software RNG entropy harvesting queue and thread
into its own files.

# Submitted by:	 Arthur Mesh <arthurmesh@gmail.com>

------------------------------------------------------------------------
r254934 | markm | 2013-08-26 20:07:03 +0100 (Mon, 26 Aug 2013) | 2 lines

Remove the short-lived namei experiment.

------------------------------------------------------------------------
r254928 | markm | 2013-08-26 19:35:21 +0100 (Mon, 26 Aug 2013) | 2 lines

Snapshot; Do some running repairs on entropy harvesting. More needs
to follow.

------------------------------------------------------------------------
r254927 | markm | 2013-08-26 19:29:51 +0100 (Mon, 26 Aug 2013) | 15 lines

Snapshot of current work;

1) Clean up namespace; only use "Yarrow" where it is Yarrow-specific
or close enough to the Yarrow algorithm. For the rest use a neutral
name.

2) Tidy up headers; put private stuff in private places. More could
be done here.

3) Streamline the hashing/encryption; no need for a 256-bit counter;
128 bits will last for long enough.

There are bits of debug code lying around; these will be removed
at a later stage.

------------------------------------------------------------------------
r254784 | markm | 2013-08-24 14:54:56 +0100 (Sat, 24 Aug 2013) | 39 lines

1) example (partially humorous random_adaptor, that I call "EXAMPLE")
 * It's not meant to be used in a real system, it's there to show how
   the basics of how to create interfaces for random_adaptors. Perhaps
   it should belong in a manual page

2) Move probe.c's functionality in to random_adaptors.c
 * rename random_ident_hardware() to random_adaptor_choose()

3) Introduce a new way to choose (or select) random_adaptors via tunable
"rngs_want" It's a list of comma separated names of adaptors, ordered
by preferences. I.e.:
rngs_want="yarrow,rdrand"

Such setting would cause yarrow to be preferred to rdrand. If neither of
them are available (or registered), then system will default to
something reasonable (currently yarrow). If yarrow is not present, then
we fall back to the adaptor that's first on the list of registered
adaptors.

4) Introduce a way where RNGs can play a role of entropy source. This is
mostly useful for HW rngs.

The way I envision this is that every HW RNG will use this
functionality by default. Functionality to disable this is also present.
I have an example of how to use this in random_adaptor_example.c (see
modload event, and init function)

5) fix kern.random.adaptors from
kern.random.adaptors: yarrowpanicblock
to
kern.random.adaptors: yarrow,panic,block

6) add kern.random.active_adaptor to indicate currently selected
adaptor:
root@freebsd04:~ # sysctl kern.random.active_adaptor
kern.random.active_adaptor: yarrow

# Submitted by:	Arthur Mesh <arthurmesh@gmail.com>

Submitted by:	Dag-Erling Smørgrav <des@FreeBSD.org>, Arthur Mesh <arthurmesh@gmail.com>
Reviewed by:	des@FreeBSD.org
Approved by:	re (delphij)
Approved by:	secteam (des,delphij)
2013-10-12 12:57:57 +00:00
..
man4.arm mdoc improvements 2013-04-28 06:15:56 +00:00
man4.i386 Switch to 2-clause license 2013-06-03 13:11:48 +00:00
man4.powerpc
man4.sparc64
aac.4
aacraid.4 mdoc: silence a few mandoc lint warnings. 2013-05-28 09:33:46 +00:00
acpi_asus_wmi.4
acpi_asus.4
acpi_dock.4
acpi_fujitsu.4
acpi_hp.4
acpi_ibm.4
acpi_panasonic.4
acpi_rapidstart.4 Minor improvements. 2013-05-08 21:07:11 +00:00
acpi_sony.4
acpi_thermal.4
acpi_toshiba.4
acpi_video.4
acpi_wmi.4
acpi.4
ada.4
adv.4
adw.4
ae.4
aesni.4
age.4
agp.4
aha.4
ahb.4
ahc.4
ahci.4
ahd.4
aibs.4
aio.4
alc.4
ale.4
alpm.4
altera_avgen.4 add missing sections, de-Xr non-existent page, properly space 2013-10-07 16:49:53 +00:00
altera_jtag_uart.4
altera_sdcard.4
altq.4 Substantial rewrite of bxe(4) to add support for the BCM57712 and 2013-09-20 20:18:49 +00:00
amdpm.4
amdsbwd.4
amdsmb.4
amdtemp.4
amr.4
an.4
aout.4
apic.4
arcmsr.4 Refresh vendor driver version which adds ARC-1224 support. 2013-02-28 04:16:47 +00:00
asmc.4
asr.4
ata.4 Remove all legacy ATA code parts, not used since options ATA_CAM enabled in 2013-04-04 07:12:24 +00:00
ath_ahb.4
ath_hal.4 Add TP-LINK TL-WDN4800. 2013-07-22 19:32:42 +00:00
ath_pci.4
ath.4
atkbd.4
atkbdc.4
atp.4
atrtc.4
attimer.4
audit.4 Merge a number of changes required to hook up OpenBSM 1.2-alpha2's 2012-12-01 15:11:46 +00:00
auditpipe.4
aue.4
axe.4 Add Lenovo USB 2.0 Ethernet adapter to the list of supported 2013-06-25 00:29:13 +00:00
bce.4 s/recieve/receive 2013-05-26 18:57:59 +00:00
bfe.4
bge.4
bhyve.4 Add man page for bhyve(4). The project as well as the man page is a 2013-01-07 06:37:22 +00:00
bktr.4
blackhole.4
bpf.4
bridge.4 Document net.link.bridge.allow_llz_overlap. 2013-07-31 16:26:41 +00:00
bt.4
bwi.4
bwn.4
bxe.4 Minor mdoc fixes. 2013-09-24 20:14:59 +00:00
capsicum.4 cap_new(2) and cap_getrights2) were replaced with cap_rights_limit(2) 2013-09-19 10:56:36 +00:00
cardbus.4
carp.4 In the EXAMPLES section: append the subsystem regular expression with a 2013-02-21 15:41:09 +00:00
cas.4 Add missed _load' to the if_foo_load="YES"' line. 2013-03-13 18:43:25 +00:00
cc_cdg.4 Import an implementation of the CAIA Delay-Gradient (CDG) congestion control 2013-07-02 08:44:56 +00:00
cc_chd.4
cc_cubic.4
cc_hd.4
cc_htcp.4
cc_newreno.4
cc_vegas.4
ccd.4 Cross-reference gvinum(8) instead of vinum(8). 2013-03-16 22:02:47 +00:00
cd.4 none of the drivers in the tree support CDIOCCAPABILITY or CDIOCPITCH.. 2013-08-26 18:47:10 +00:00
cdce.4
ch.4
ciss.4 Update ciss(4) with new models of raid controllers from HP 2013-08-06 03:17:01 +00:00
cm.4
cmx.4
coretemp.4
cpuctl.4
cpufreq.4
crypto.4
ctl.4 Bring in the new iSCSI target and initiator. 2013-09-14 15:29:06 +00:00
cue.4
cxgb.4
cxgbe.4 cxgbe(4): t4fw_cfg must be explicitly loaded if the driver is being 2013-06-03 17:30:21 +00:00
cy.4
da.4
dc.4
dcons_crom.4
dcons.4
ddb.4 Update ddb(9) to show how to print 64-bit values with "examine". 2013-09-30 09:21:17 +00:00
de.4
devctl.4
digi.4
disc.4
divert.4
dpms.4
dpt.4
dummynet.4
ed.4
edsc.4
ef.4
ehci.4
em.4 Update Intel email address. 2013-05-02 01:36:52 +00:00
en.4
enc.4
epair.4
esp.4
est.4
et.4
eventtimers.4 MFcalloutng: 2013-03-04 19:10:39 +00:00
exca.4
faith.4
fatm.4
fd.4
fdc.4
fdt.4
fdtbus.4
ffclock.4
filemon.4 Fix and improve filemon(4) example: 2013-06-14 08:28:08 +00:00
firewire.4
fpa.4
fwe.4
fwip.4
fwohci.4
fxp.4
gbde.4
gdb.4 A number of places in the source tree still reference cuad.* after 2012-12-08 22:16:36 +00:00
gem.4
geom_fox.4
geom_linux_lvm.4 Sweep man pages replacing ad -> ada. 2013-10-01 18:41:53 +00:00
geom_map.4
geom_uzip.4
geom.4 Remove documentation describing functionality which geom(4) does not, 2013-09-10 21:16:18 +00:00
gif.4
gpib.4
gpio.4 Correct my inability to do math and provide a GOOD example. 2013-09-13 21:23:04 +00:00
gre.4
h_ertt.4
hatm.4
hifn.4
hme.4
hpet.4
hpt27xx.4
hptiop.4 Add PCI IDs for HighPoint RocketRAID 4521, 3620, 3622 and 3640 2013-07-05 23:10:02 +00:00
hptmv.4
hptnr.4 Import HighPoint DC Series Data Center HBA (DC7280 and R750) driver. 2013-07-06 07:49:41 +00:00
hptrr.4
hwpmc.4
ichsmb.4
ichwd.4
icmp6.4
icmp.4
ida.4
ifmib.4
igb.4 s/Numer/Number/ 2013-05-08 16:29:12 +00:00
igmp.4
iic.4
iicbb.4
iicbus.4
iicsmb.4
iir.4
inet6.4
inet.4
intpm.4
intro.4
io.4
ip6.4
ip.4
ipfirewall.4
ipmi.4
ips.4
ipsec.4
ipw.4
ipwfw.4
isci.4
iscsi_initiator.4
isf.4
isp.4
ispfw.4
iwi.4
iwifw.4
iwn.4 iwn(4) doesn't support adhoc mode. 2013-03-19 13:43:55 +00:00
iwnfw.4
ixgb.4 Update Intel email address. 2013-05-02 01:36:52 +00:00
ixgbe.4 Update Intel email address. 2013-05-02 01:36:52 +00:00
jme.4
joy.4
kbdmux.4
keyboard.4
kld.4
ksyms.4
ktr.4
kue.4
lagg.4
le.4
led.4
lge.4
lindev.4
linux.4
lmc.4
lo.4
lp.4
lpbb.4
lpt.4
mac_biba.4
mac_bsdextended.4
mac_ifoff.4
mac_lomac.4
mac_mls.4
mac_none.4
mac_partition.4
mac_portacl.4
mac_seeotheruids.4
mac_stub.4
mac_test.4
mac.4
Makefile Add gpio(4) man page to attempt to document the current hints based setup of 2013-09-13 19:55:40 +00:00
malo.4
mcd.4
md.4
mem.4
meteor.4
mfi.4 Add IBM ServeRAID M5110 to the hardware list. 2013-07-15 14:28:59 +00:00
miibus.4
mk48txx.4
mld.4 mdoc: sort cross references. 2013-04-08 10:53:22 +00:00
mlx.4
mly.4
mmc.4
mmcsd.4
mn.4
mod_cc.4
mos.4
mouse.4 A number of places in the source tree still reference cuad.* after 2012-12-08 22:16:36 +00:00
mps.4 Sync with driver. 2013-01-03 20:31:45 +00:00
mpt.4
msk.4
mtio.4
multicast.4
mvs.4 Fix typos in hint names. 2013-03-03 19:10:28 +00:00
mwl.4
mwlfw.4
mxge.4
my.4
nand.4
nandsim.4
natm.4
natmip.4
ncr.4
ncv.4
ndis.4
net80211.4
netgraph.4 Add more references. 2013-09-05 07:13:08 +00:00
netintro.4
netmap.4 Correcting EXAMPLES section. 2013-09-23 20:30:25 +00:00
nfe.4
nfsmb.4
ng_async.4
ng_atm.4
ng_atmllc.4
ng_bluetooth.4
ng_bpf.4
ng_bridge.4
ng_bt3c.4
ng_btsocket.4
ng_car.4
ng_ccatm.4
ng_cisco.4
ng_deflate.4
ng_device.4
ng_echo.4
ng_eiface.4
ng_etf.4
ng_ether_echo.4
ng_ether.4
ng_fec.4
ng_frame_relay.4
ng_gif_demux.4
ng_gif.4
ng_h4.4
ng_hci.4
ng_hole.4
ng_hub.4
ng_iface.4
ng_ip_input.4
ng_ipfw.4
ng_ksocket.4
ng_l2cap.4
ng_l2tp.4
ng_lmi.4
ng_mppc.4
ng_nat.4 Document NGM_NAT_LIBALIAS_INFO. 2013-03-21 13:02:43 +00:00
ng_netflow.4 NGM_NETFLOW_SHOW reports IPv6 flows as well. 2012-12-10 13:08:14 +00:00
ng_one2many.4
ng_patch.4
ng_ppp.4
ng_pppoe.4
ng_pptpgre.4
ng_pred1.4
ng_rfc1490.4
ng_socket.4
ng_source.4
ng_split.4
ng_sppp.4
ng_sscfu.4
ng_sscop.4
ng_tag.4 Remove contractions. 2013-04-11 18:46:41 +00:00
ng_tcpmss.4
ng_tee.4
ng_tty.4
ng_ubt.4 Add vendor IDs for Broadcom USB dongles (BCM20702). 2012-12-26 15:10:20 +00:00
ng_UI.4
ng_uni.4
ng_vjc.4
ng_vlan.4
ngatmbase.4
nge.4
nmdm.4
nsp.4
ntb.4 Fix a typo. 2013-09-05 22:55:08 +00:00
null.4
nvd.4 Bump date for nvme(4) and nvd(4). 2013-07-11 02:10:23 +00:00
nve.4
nvme.4 Bump date for nvme(4) and nvd(4). 2013-07-11 02:10:23 +00:00
nvram2env.4
nvram.4
nxge.4
oce.4 Update driver with recent vendor improvements, most notably support 2013-07-06 08:30:45 +00:00
ohci.4
orm.4
padlock.4
pass.4
patm.4
pccard.4
pccbb.4
pcf.4
pci.4
pcib.4
pcic.4
pcii.4
pcm.4
pcn.4
pf.4
pflog.4
pfsync.4
pim.4
polling.4
ppbus.4
ppc.4
ppi.4
procdesc.4 Add missing '2'. 2013-09-05 00:41:07 +00:00
psm.4 psm: Update "struct synapticshw" in psm(4) man page 2013-09-17 18:41:32 +00:00
pst.4
pt.4
pts.4
pty.4
puc.4
qlxgb.4
qlxgbe.4 Add Qlogic 10Gigabit Ethernet & CNA Adapter Driver Version 3.10.10 for 2013-05-15 17:03:09 +00:00
qlxge.4 Add Qlogic 10Gb Ethernet Driver for Qlogic 8100 Series CNA Adapter 2013-06-25 17:50:22 +00:00
ral.4
random.4 Merge from project branch. Uninteresting commits are trimmed. 2013-10-12 12:57:57 +00:00
rc.4
re.4
rgephy.4
rl.4 Add D-Link DFE-520TX (rev. C1) to HARDWARE section. 2013-01-16 02:22:56 +00:00
rndtest.4
route.4
rp.4
rsu.4 add missing sections, de-Xr non-existent page, properly space 2013-10-07 16:49:53 +00:00
rsufw.4 Import OpenBSD's rsu(4) WLAN driver. 2013-07-30 02:07:57 +00:00
rue.4
rum.4
run.4 Add specific supported revision of D-Link DWA-140 rev B1, B2. 2013-02-13 08:20:29 +00:00
runfw.4
sa.4 Add support to physio(9) for devices that don't want I/O split and 2013-08-24 04:52:22 +00:00
safe.4
sbp_targ.4
sbp.4
scc.4
scd.4
sched_4bsd.4
sched_ule.4
screen.4
scsi.4
sctp.4
sdhci.4 Remove contractions. 2013-04-11 18:46:41 +00:00
sem.4
send.4
ses.4
sf.4
sfxge.4
sge.4 Add missed _load' to the if_foo_load="YES"' line. 2013-03-13 18:43:25 +00:00
si.4
siba.4
siftr.4
siis.4
simplebus.4
sio.4
sis.4
sk.4
smb.4
smbus.4
smp.4
sn.4
snd_ad1816.4
snd_als4000.4
snd_atiixp.4
snd_cmi.4
snd_cs4281.4
snd_csa.4
snd_ds1.4
snd_emu10k1.4
snd_emu10kx.4
snd_envy24.4
snd_envy24ht.4
snd_es137x.4
snd_ess.4
snd_fm801.4
snd_gusc.4
snd_hda.4
snd_hdspe.4
snd_ich.4
snd_maestro3.4
snd_maestro.4
snd_mss.4
snd_neomagic.4
snd_sbc.4
snd_solo.4
snd_spicds.4
snd_t4dwave.4
snd_uaudio.4
snd_via82c686.4
snd_via8233.4
snd_vibes.4
snp.4
spic.4
spkr.4
splash.4
sppp.4
ste.4
stf.4 Remove EOL whitespace. 2013-01-12 08:44:54 +00:00
stg.4
stge.4
sym.4
syncache.4
syncer.4
syscons.4 Add missing Pp. Also remove some minor whitespace. 2013-04-20 22:26:33 +00:00
sysmouse.4 fix up my copyright.. 2013-08-26 18:50:40 +00:00
tap.4
targ.4
tcp.4
tdfx.4
terasic_mtl.4
termios.4
textdump.4
ti.4
timecounters.4
tl.4
tnt4882.4
tpm.4
trm.4
tty.4
tun.4
twa.4
twe.4
tws.4
tx.4
txp.4
u3g.4
uark.4
uart.4
uath.4
ubsa.4
ubsec.4
ubser.4
ubtbcmfw.4
uchcom.4
ucom.4
ucycom.4
udav.4 Bring datasheet URL up to date. 2013-08-16 07:42:06 +00:00
udbp.4
udp.4 Sort sections. 2013-03-14 19:56:21 +00:00
uep.4
ufm.4
ufoma.4
uftdi.4
ugen.4
uhci.4
uhid.4
uhso.4
uipaq.4
ukbd.4
ulpt.4
umass.4
umcs.4
umct.4
umodem.4
ums.4
unix.4 Implement SOCK_CLOEXEC, SOCK_NONBLOCK and MSG_CMSG_CLOEXEC. 2013-03-19 20:58:17 +00:00
upgt.4
uplcom.4
ural.4
urio.4
urtw.4
urtwn.4 With r253139, firmware for urtwn(4) is in base system. Correct the man page to 2013-10-07 06:50:00 +00:00
usb2_template.4
usb_quirk.4 Make section headings for different quirk types consistent. 2013-08-06 11:00:56 +00:00
usb.4
uslcom.4
utopia.4
uvisor.4
uvscom.4
vale.4
vga.4
vge.4
viapm.4
viawd.4
virtio_balloon.4 Merge virtio changes from projects/virtio 2013-07-04 17:57:26 +00:00
virtio_blk.4 Merge virtio changes from projects/virtio 2013-07-04 17:57:26 +00:00
virtio_scsi.4 Merge virtio changes from projects/virtio 2013-07-04 17:57:26 +00:00
virtio.4 Merge virtio changes from projects/virtio 2013-07-04 17:57:26 +00:00
vkbd.4
vlan.4 Substantial rewrite of bxe(4) to add support for the BCM57712 and 2013-09-20 20:18:49 +00:00
vmx.4 mdoc: add missing El. 2013-08-30 20:20:06 +00:00
vpo.4
vr.4
vte.4
vtnet.4 Import multiqueue VirtIO net driver from my user/bryanv/vtnetmq branch 2013-09-01 04:33:47 +00:00
vxge.4
watchdog.4
wb.4
wbwd.4 It's no longer necessary to explicitly specify isa bus. 2012-12-28 23:21:54 +00:00
wi.4
witness.4
wlan_acl.4
wlan_amrr.4
wlan_ccmp.4
wlan_tkip.4
wlan_wep.4
wlan_xauth.4
wlan.4
wpi.4
xe.4
xen.4
xhci.4
xl.4
xnb.4
xpt.4
zero.4
zyd.4 The ZyXEL ZyAIR G-202 is also supported by zyd(4) 2013-03-07 13:26:54 +00:00