summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Remove options MK_LIBKSE and DEFAULT_THREAD_LIB now that we no longerru2008-03-292-6/+2
| | | | build libkse. This should fix WITHOUT_LIBTHR builds as a side effect.
* Rewrite node to support multiple hooks, alike to ng_l2tp, to use one pairmav2008-03-291-5/+8
| | | | of pptpgre and ksocket nodes for all calls between two peers.
* ARC-1680 is supported.brueffer2008-03-281-1/+3
| | | | | Submitted by: Steven Hartland <killing@multiplay.co.uk> MFC after: 3 days
* Document lockmgr_waiters(9).brueffer2008-03-282-1/+9
| | | | Reviewed by: attilio
* Add Qualcomm, Inc. ZTE CDMA Technologies MSM to the list of supportedrpaulo2008-03-281-1/+3
| | | | | | devices. MFC after: 1 week
* Add support for hardwiring ppp sessions to particular devices with newbrooks2008-03-281-1/+9
| | | | | | | | | per-profile variables of the form ppp_<profile>_unit. No ppp_unit variable is supported since tying the same unit to more than one profile won't work. PR: conf/122127 MFC after: 1 week
* Allow the characters .-+/ to appear in ppp profile names by folding thembrooks2008-03-261-3/+24
| | | | | | | | to _ when evaluating ppp_<profile>_nat and ppp_<profile>_mode. Document the per-profile variables. PR: conf/121452, conf/122127 (partial) MFC after: 1 week
* Fix some "in in" typos in comments.brueffer2008-03-261-1/+1
| | | | | | | PR: 121490 Submitted by: Anatoly Borodin <anatoly.borodin@gmail.com> Approved by: rwatson (mentor), jkoshy MFC after: 3 days
* Bring this manpage more in line with other wlan driver manpages.brueffer2008-03-251-10/+15
|
* s/M_TRYWAIT/M_WAIT/ru2008-03-252-2/+2
|
* Replaced the misleading uses of a historical artefact M_TRYWAIT with M_WAIT.ru2008-03-251-14/+4
| | | | | | | | | | Removed dead code that assumed that M_TRYWAIT can return NULL; it's not true since the advent of MBUMA. Reviewed by: arch There are ongoing disputes as to whether we want to switch to directly using UMA flags M_WAITOK/M_NOWAIT for mbuf(9) allocation.
* Add support for Marvell Libertas 88W8335 based PCI network adapters.weongyo2008-03-251-0/+124
| | | | | Reviewed by: sam, many wireless people Approved by: thompsa (mentor)
* Fix double patch on this file.edwin2008-03-251-2/+0
|
* MFV of tzdata2008aedwin2008-03-255-38/+227
| | | | | | | | | | | | Changes: - Calcutta -> Kolkata - Iraq DST changes - Syria DST changes - Saigon -> Ho_Chi_Minh - Cuba DST changes - New area America/Argentina/San_Luis Approved by: grog@ (mentor)
* Introduce support for zero-copy BPF buffering, which reduces thecsjp2008-03-241-15/+240
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | overhead of packet capture by allowing a user process to directly "loan" buffer memory to the kernel rather than using read(2) to explicitly copy data from kernel address space. The user process will issue new BPF ioctls to set the shared memory buffer mode and provide pointers to buffers and their size. The kernel then wires and maps the pages into kernel address space using sf_buf(9), which on supporting architectures will use the direct map region. The current "buffered" access mode remains the default, and support for zero-copy buffers must, for the time being, be explicitly enabled using a sysctl for the kernel to accept requests to use it. The kernel and user process synchronize use of the buffers with atomic operations, avoiding the need for system calls under load; the user process may use select()/poll()/kqueue() to manage blocking while waiting for network data if the user process is able to consume data faster than the kernel generates it. Patchs to libpcap are available to allow libpcap applications to transparently take advantage of this support. Detailed information on the new API may be found in bpf(4), including specific atomic operations and memory barriers required to synchronize buffer use safely. These changes modify the base BPF implementation to (roughly) abstrac the current buffer model, allowing the new shared memory model to be added, and add new monitoring statistics for netstat to print. The implementation, with the exception of some monitoring hanges that break the netstat monitoring ABI for BPF, will be MFC'd. Zerocopy bpf buffers are still considered experimental are disabled by default. To experiment with this new facility, adjust the net.bpf.zerocopy_enable sysctl variable to 1. Changes to libpcap will be made available as a patch for the time being, and further refinements to the implementation are expected. Sponsored by: Seccuris Inc. In collaboration with: rwatson Tested by: pwood, gallatin MFC after: 4 months [1] [1] Certain portions will probably not be MFCed, specifically things that can break the monitoring ABI.
* Oops, add back the SYNOPSIS section header I accidently removed in thebrueffer2008-03-201-0/+1
| | | | previous revision.
* Add support for MACHINE_ARCH == mips, plus a few generic CPU types thatimp2008-03-191-0/+30
| | | | will be supported in the forth coming FreeBSD/mips port.
* Bah, missed one instance in the previous commit. Correct bpfbrueffer2008-03-171-1/+1
| | | | | | data-link type here as well. PR: 121477
* Correct bpf data-link type.brueffer2008-03-171-2/+2
| | | | | | PR: 121477 Submitted by: Sam Banks MFC after: 3 days
* Use a standard section 4 SYNOPSIS.brueffer2008-03-173-17/+41
| | | | MFC after: 3 days
* Device counts are long gone.brueffer2008-03-171-2/+2
| | | | MFC after: 3 days
* Fix AUTHORS formatting.brueffer2008-03-161-0/+1
| | | | MFC after: 3 days
* Device counts are long gone, also remove the outdated FILES section.brueffer2008-03-161-11/+2
| | | | MFC after: 3 days
* Implement atomic_fetchadd_long() for all architectures and document it.pjd2008-03-161-1/+2
| | | | Reviewed by: attilio, jhb, jeff, kris (as a part of the uidinfo_waitfree.patch)
* Implement soon-to-be-used rw_unlock() macro.pjd2008-03-161-1/+9
|
* Add missing .El.pjd2008-03-161-0/+1
|
* Add stack_print_ddb() to the synposis of stack(9), add mlink for it; fixrwatson2008-03-142-1/+4
| | | | | | stack_print(9) mlink. Spotted by: attilio
* Add projects-all collection to cvs-supfileedwin2008-03-131-0/+6
| | | | | | | PR: misc/121680 Submitted by: "Philip M. Gollucci" <pgollucci@p6m7g8.com> Approved by: grog@ (mentor) MFC after: 1 week
* document device hints including new ones to control rx fifo triggersam2008-03-121-1/+28
| | | | MFC after: 2 weeks
* Document a new sysctl variable, dev.vr.%d.stats.yongari2008-03-111-1/+9
| | | | Touch Dd.
* - Add myself.lippe2008-03-091-0/+5
| | | | Approved by: gabor (mentor)
* MFV: tzdata2008aedwin2008-03-092-8/+33
| | | | | | | | | Notable changes: - Chilis DST has been extended for 3 weeks. - No leapsecond in 2008 Approved by: grog@ (mentor)
* Document all the BUS_PROBE_* values.imp2008-03-091-1/+45
| | | | Note to the mdoc gods: This may need some teaks.
* Install manpage links for RB_PREV and RB_FOREACH_REVERSE.jasone2008-03-071-0/+2
|
* Update ddb.4 to reflect addition of /S (symbol name) printing mode forrwatson2008-03-071-0/+2
| | | | | | | examine. MFC after: 3 days PR: 57976
* Minor spelling/grammer fixes.rwatson2008-03-071-2/+2
| | | | MFC after: 3 days
* Added missing BSD license text to the cmx.4 manpage.rink2008-03-061-0/+25
| | | | Noticed by: brueffer
* Commit cmx(4), a driver for Omnikey CardMan 4040 PCMCIA smartcard readers.rink2008-03-062-0/+96
| | | | | | | | PR: kern/114582 Submitted by: Daniel Roethlisberger <daniel@roe.ch> Reviewed by: imp, myself Tested by: johans, myself MFC after: 2 weeks
* Use the new command file feature of ddb(8) to support setting ddb(4)brooks2008-03-051-0/+13
| | | | | | | | | scripts at boot. This is currently disabled by default. /etc/ddb.conf contains some potentially reasonable default scripts. PR: conf/119995 Submitted by: Scot Hetzel <swhetzel at gmail dot com> (Earlier version) X-MFC after: textdumps
* mdoc changes to make this manpage consistent with our other section 4 manpages.brueffer2008-03-051-8/+19
|
* Oops, I accidently concatenated uslcom.[c4] multiple times before therink2008-03-051-336/+0
| | | | | | commit :-/ Quickly fix before things get broken... Pointyhat to: me
* Import uslcom(4) from OpenBSD - this is a driver for Silicon Laboratoriesrink2008-03-052-0/+423
| | | | | | | | CP2101/CP2102 based USB serial adapters. Reviewed by: imp, emaste Obtained from: OpenBSD MFC after: 2 weeks
* Temporarily back out revision 1.98 to give Portmgr some time toobrien2008-03-041-2/+2
| | | | | | | address PR ports/121363 (current day re-opening of PR ports/73797) to make ports CFLAGS more independent of src/'s CFLAGS WRT aliasing. Discussed with: brooks
* Back out revision 1.97, which backed out part of revision 1.96.obrien2008-03-041-2/+2
| | | | | | | Change the default CFLAGS to match the simple defaults that the tinderboxes use. By using -fno-strict-aliasing by default we are choosing to ignore problems in code which had the potential to shoot ourselves in the foot.
* Connect MPC85XX to the PowerPC build.raj2008-03-031-0/+7
| | | | | | | | | | | | | | | | | The kernel config file is KERNCONF=MPC85XX, so the usual procedure applies: 1. make buildworld TARGET_ARCH=powerpc 2. make buildkernel TARGET_ARCH=powerpc TARGET_CPUTYPE=e500 KERNCONF=MPC85XX This default config uses kernel-level FPU emulation. For the soft-float world approach: 1. make buildworld TARGET_ARCH=powerpc TARGET_CPUTYPE=e500 2. disable FPU_EMU option in sys/powerpc/conf/MPC85XX 3. make buildkernel TARGET_ARCH=powerpc TARGET_CPUTYPE=e500 KERNCONF=MPC85XX Approved by: cognet (mentor) MFp4: e500
* - Add myself to ports committers and to tabthorpe and thierry's mentee listjadawin2008-03-031-0/+5
| | | | Approved by: thierry (co-mentor)
* The Sony i.LINK (CXD1947) is _not_ supported.brueffer2008-03-031-3/+1
| | | | | | PR: 116680 Submitted by: Jens Köhler <mail@chatty.de> MFC after: 3 days
* New sentence -> new line.brueffer2008-03-021-1/+2
|
* Fix lockstatus sorting on the top list.attilio2008-03-011-1/+1
|
* Connect lockmgr_args(9) to the build.attilio2008-03-011-0/+1
|
OpenPOWER on IntegriCloud