10651 Commits

Author SHA1 Message Date
kmacy
187d0247aa MFC Chelsio T3 10 Gigabit Ethernet support
Don't hook into build just
2007-03-15 03:06:32 +00:00
cvs2svn
22b21ad204 This commit was manufactured by cvs2svn to create branch 'RELENG_6'. 2007-03-14 18:20:37 +00:00
yar
f4d705916a MFC:
As suggested more than once in the lists, drop -M from flags to mfs
  for /tmp and /var.  This makes the memory discs swap-backed instead
  of malloc-backed.  A swap-backed memory disc should not be worse
  than a malloc-backed one in any scenario because it will start
  touching swap only when needed.  OTOH, a malloc-backed disc can
  starve limited kernel resources and evenually crash the system.

  Reflect the change in the rc.conf(5) manpage.  Also stop telling
  lies there about softupdates: it does not waste disc space, it
  just can delay its freeing.

	src/etc/defaults/rc.conf	1.306
	src/share/man/man5/rc.conf.5	1.317
2007-03-14 14:19:42 +00:00
mjacob
fb7fec9025 Update isp(4) man page to match driver in RELENG_6. 2007-03-08 05:38:23 +00:00
bms
b083fe7338 MFC:
Implement ifnet cloning for tun(4)/tap(4).
  Make devfs cloning a sysctl/tunable which defaults to on.

  If devfs cloning is enabled, only the super-user may create
  tun(4)/tap(4)/vmnet(4) instances. Devfs cloning is still enabled by
  default; it may be disabled from the loader or via sysctl with
  "net.link.tap.devfs_cloning" and "net.link.tun.devfs_cloning".

  Disabling its use affects potentially all tun(4)/tap(4) consumers
  including OpenSSH, OpenVPN and VMware.

  Revision  Changes    Path
  1.18      +32 -5     src/share/man/man4/tap.4
  1.24      +33 -4     src/share/man/man4/tun.4
  1.69      +126 -32   src/sys/net/if_tap.c
  1.162     +77 -7     src/sys/net/if_tun.c

PR:		105228 (potentially also 90413, 105570)
Submitted by:	Landon Fuller
Tested by:	Andrej Tobola
Approved by:	core (rwatson)
2007-03-04 14:34:42 +00:00
brueffer
de7854c13f MFC: rev. 1.40 by ru
Update the URL for the list of supported products.
2007-03-02 20:47:06 +00:00
ache
98c3af0150 MFC: RUR->RUB 2007-02-28 19:00:37 +00:00
brueffer
758632e292 MFC:
Complete the support for altq(4).
2007-02-28 14:06:25 +00:00
brueffer
c94d89396c MFC: rev. 1.7
Remove an obsolete error message.
2007-02-26 21:11:38 +00:00
cognet
7e6b00518e MFC: Big endian support for arm. 2007-02-26 01:19:06 +00:00
jhb
e64bcc19a6 Fix mis-merge. 2007-02-23 20:56:27 +00:00
luigi
de1cc72279 MFC: sync firmware(9) and iwi(4) with the version in HEAD (the changes
are related and this is why the MFC is done together).
In detail:

firmware(9):
  Cleanup and document the implementation of firmware(9) based on
  a version that i posted earlier on the -current mailing list,
  and subsequent feedback received. See the commit log
	luigi       2007-02-15 17:21:31 UTC
  The core of the change is just in sys/firmware.h and kern/subr_firmware.c,
  while other files are just adaptation of the clients to the ABI change
  (const-ification of some parameters and hiding of internal info,
  so this is fully compatible at the binary level).

  Note that in RELENG_6 sys/arm/xscale/ixp425, sys/dev/ipw and
  sys/dev/mxge do not exist or have not been updated to use firmware(9).

iwi(4)
  + add debugging code IWI_LOCK_CHECK() to print (under sysctl debug.iwi)
    missing locks;
  + make sure that iwi_ioctl() wait until the previous iwi_cmd() terminates.
2007-02-22 19:10:48 +00:00
n_hibma
988e11e339 MFC the following commits:
Align the interfaces for the various watchdogs and make the interface
  behave as expected.

  Also:
  - Return an error if WD_PASSIVE is passed in to the ioctl as only
    WD_ACTIVE is implemented at the moment. See sys/watchdog.h for an
    explanation of the difference between WD_ACTIVE and WD_PASSIVE.
  - Remove the I_HAVE_TOTALLY_LOST_MY_SENSE_OF_HUMOR define. If you've
    lost your sense of humor, than don't add a define.

  Specific changes:

  i80321_wdog.c
    Don't roll your own passive watchdog tickle as this would defeat the
    purpose of an active (userland) watchdog tickle.

  ichwd.c / ipmi.c:
    WD_ACTIVE means active patting of the watchdog by a userland process,
    not whether the watchdog is active. See sys/watchdog.h.

  kern_clock.c:
    (software watchdog) Remove a check for WD_ACTIVE as this does not make
    sense here. This reverts r1.181.

  Revision  Changes    Path
  1.371     +1 -0      src/share/man/man4/Makefile
  1.8       +69 -25    src/share/man/man4/watchdog.4
  1.4       +7 -1      src/share/man/man9/watchdog.9
  1.3       +15 -11    src/sys/arm/xscale/i80321/i80321_wdog.c
  1.7       +12 -30    src/sys/dev/ichwd/ichwd.c
  1.8       +8 -17     src/sys/dev/ipmi/ipmi.c
  1.8       +3 -1      src/sys/dev/mk48txx/mk48txx.c
  1.4       +4 -1      src/sys/dev/watchdog/watchdog.c
  1.33      +9 -9      src/sys/i386/i386/elan-mmcr.c
  1.193     +3 -3      src/sys/kern/kern_clock.c
  1.4       +0 -4      src/sys/sys/watchdog.h

and

  Don't exit from watchdogd on receiving a signal if we cannot stop the watchdog.
  That'll require -KILL. This avoids resetting your system on one of the
  watchdogs that you cannot disable.

  Revision  Changes    Path
  1.15      +18 -11    src/usr.sbin/watchdogd/watchdogd.c

Reviewed by:	phk
2007-02-20 22:56:28 +00:00
brueffer
77f9dff13d MFC:
Xref altq(4) for drivers that support it according to altq(4).
2007-02-16 13:55:25 +00:00
brueffer
086e8107c9 MFC:
The KAME project has been dissolved and kame.4 isn't terribly useful.
=> Sayonara
2007-02-15 17:35:16 +00:00
brueffer
492067c9ac MFC: rev. 1.316
Nuke pcnfsd(8) reference.
2007-02-15 17:31:14 +00:00
brueffer
c4ee1d888b MFC: rev. 1.4
There is no isa(4) manpage, convert to normal text an join lines.
2007-02-15 17:29:55 +00:00
brueffer
06853b36da MFC: rev. 1.3
Remove Xref to non-existant uhub(4).
2007-02-15 17:27:19 +00:00
brueffer
8f9291a104 MFC: rev. 1.4
Correct references to tcpdump(1).
2007-02-15 17:24:31 +00:00
brueffer
6e963132e2 MFC: rev. 1.21 + 1.22
Don't reference the non-existant lkm(4), use .Nm instead
since lkm is the name of an api.
2007-02-15 17:19:38 +00:00
le
2f7ae464b5 MFC:
Add support for Huawei Technologies Mobile card (3G).

  Submitted by:  Thorsten Schroeder <ths_AT_dev.io>
2007-02-14 19:57:15 +00:00
brueffer
f58c34d599 MFC: rev. 1.29 + 1.30
- Use the standard section 4 SYNOPSIS
- Utilize .Nm
2007-02-12 21:24:56 +00:00
jhb
f1e13c4788 MFC: Sync up bus_dma(9) to rev 1.39 (except for rev 1.37 since 6.x doesn't
have a real bus_get_dma_tag()) and add MLINK for bus_dmamap_load_mbuf_sg().
Prompted by a user who noticed the bus_dmamap_sync ops stuff was still
wrong in 6.x.

Reported by:	Jason Harmening <jason.harmening at gmail>
2007-02-12 17:57:14 +00:00
brueffer
02a8f7e073 MFC: rev. 1.71 + part of 1.69
- Document NetCell NC3000 and NC5000 support.
- New supported ALI and ServerWorks chipsets.
2007-02-12 05:37:55 +00:00
mlaier
60bd24580f MFC:
Add ALTQ support for aue(4).

  Tested by:	Greg Hennessy, Volker
2007-02-10 15:17:34 +00:00
bms
b9c034f809 MFC rev 1.20:
Add lists of ICMP types and codes for user and developer reference.
  Cross-reference pf.conf(5) which is able to use these definitions.

PR:		85243
Submitted by:	Daniel Gerzo
Obtained from:	OpenBSD
2007-02-10 12:01:39 +00:00
brooks
e906ee70e9 Sync dhclient and supporting code with CURRENT. In particular:
- Introduce per-interface dhclient_flags_<ifn> and
   background_dhclient_<ifn> rc.conf variables.
 - Default to sending a client identifer.
 - When an invalid host name option is sent, delete it and accept the
   lease.
 - Fix usage, the call to getopt, and a typo in rc.d/dhclient.
2007-02-09 03:11:32 +00:00
le
192003d9cc MFC:
Add support for various 3G datacards.
2007-02-07 19:52:33 +00:00
philip
6d43a729b0 MFC r1.3:
Fix hr.iso syscons keymap, making it possible to type < and >.
2007-02-07 09:27:42 +00:00
cvs2svn
71665d8ac5 This commit was manufactured by cvs2svn to create branch 'RELENG_6'. 2007-02-04 13:31:06 +00:00
mlaier
86ab5edcc3 MFC:
bce(4), ipw(4), iwi(4), ral(4), udav(4), ural(4) support ALTQ in RELENG_6
  as well.
2007-02-03 13:46:18 +00:00
brueffer
54a2d66595 MFC: rev. 1.31
Add the 3Com 3c996-SX.
2007-02-02 07:29:51 +00:00
glebius
d47bcebbb2 Merge the ng_deflate(4) and ng_pred1(4) nodes.
Submitted by:	Alexander Motin <mav alkar.net>
2007-01-28 17:14:57 +00:00
glebius
1c62bdd5f6 Sync ng_ppp(4) node with HEAD. This includes the rewrite of the PPP
stack and new options to specify the compression and encryption mode.

Submitted by:	Alexander Motin <mav alkar.net>
2007-01-28 17:14:08 +00:00
cvs2svn
7fc74e4ad3 This commit was manufactured by cvs2svn to create branch 'RELENG_6'. 2007-01-26 10:19:09 +00:00
thompsa
ff93085ed6 MFC: sync to HEAD
- markup fixes
 - spelling
 - RSTP section
2007-01-22 19:48:50 +00:00
flz
2e12d17b90 MFC: Introduce mixer_enable (default: YES).
src/etc/rc.d/mixer: rev 1.6 -> 1.7
      src/share/man/man5/rc.conf.5: rev 1.307 -> 1.308
      src/etc/defaults/rc.conf: rev 1.297 -> 1.298

PR:		conf/101268
Submitted by:	Eugene Grosbein <eugen@grosbein.pp.ru>
2007-01-22 17:51:17 +00:00
maxim
9bcec45c10 MFC rev. 1.110: FreeBSD 6.2-RELEASE, copyright years++. 2007-01-18 11:05:18 +00:00
brueffer
237985bca2 MFC: rev. 1.5
Sync the hardware list with the driver and with what I could find on
the Areca website.
Also remove the module from the FILES section, it's already covered in
the SYNOPSIS.
2007-01-11 11:33:34 +00:00
brueffer
2223ed864b MFC:
Xref uark(4)
2007-01-04 09:05:37 +00:00
danger
8b577d2188 - Sync with -HEAD
Approved by: trhodes (mentor), keramida (mentor)
2007-01-01 21:26:32 +00:00
ceri
eb94a6f60e MFC revisions 1.4 and 1.5.
Approved by:	ru
2006-12-31 17:41:49 +00:00
ceri
b74f9335d6 MFC the cr_cansee.9 and p_cansee.9 manuals.
Approved by:	ru
2006-12-31 17:41:19 +00:00
maxim
b88e884a28 MFC uark(4), a driver for Arkmicro Technologies ARK3116 based serial
adapters.
2006-12-30 17:55:15 +00:00
fjoe
929295530c MFC: Add support for the second (RT2561/RT2561S) and third
(RT2661 MIMO XR) generations of 802.11abg chipsets from Ralink Technology.
2006-12-23 07:14:42 +00:00
delphij
aa6d077ab3 MFC 1.13 (by ps):
Add E200, E200i, P400, and P400i storage controllers to
supported list.  Remove the E400 since it is not a real
product.
2006-12-21 08:03:03 +00:00
yar
b23f545bec MFC load_kld().
Prodded by:	delphij, emax
2006-12-20 11:43:04 +00:00
brueffer
64ec562e64 MFC: rev. 1.34
Document IBM ServeRAID 8k support.
2006-12-14 13:44:41 +00:00
cvs2svn
c712674dad This commit was manufactured by cvs2svn to create branch 'RELENG_6'. 2006-12-13 02:37:49 +00:00
wilko
fc607261f5 MFC: document that NCQ is not yet supported.
PR: kern/106343
2006-12-06 19:05:12 +00:00