summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Clean out all mentions of struct proc* for it was removed fromgonzo2008-05-221-4/+1
| | | | | | taskqueue(9) API more then two years ago. Approved by: cognet (mentor)
* The function pmap_addr_hint no longer exists. Remove its man page.alc2008-05-223-64/+0
|
* Introduce REMOVE_NEXT() macro's for SLIST and STAILQ.ed2008-05-222-0/+22
| | | | | | | | | | | | | | | Even though single linked lists allow items to be removed at constant time (when the previous element is known), the queue macro's don't allow this. Implement new REMOVE_NEXT() macro's. Because the REMOVE() macro's also contain the same code, make it call REMOVE_NEXT(). The OpenBSD version of SLIST_REMOVE_NEXT() needs a reference to the list head, even though it is unused. We'd better mimic this. The STAILQ version also needs a reference to the list. This means the prototypes of both macro's are the same. Approved by: philip (mentor) PR: kern/121117
* Add myself to this list as well.ed2008-05-221-0/+1
| | | | Approved by: philip (mentor)
* Add support for the Compact C Type (CTF) conversions throughout FreeBSD'sjb2008-05-224-0/+130
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | system makefiles. Note that the CTF conversion defaults to off. We may choose to change this default later if DTrace proves popular and people are prepared to wear the compilation performance impact of compiling with debug symbols all the time. Setting NO_CTF in the make args or user environment turns off CTF conversion. Even if we choose to default CTF generation to on later, we still need NO_CTF so that the buildworld process can bootstrap the tools without needlessly generating CTF data for temporary tools. Setting WITH_CTF in the make args or user environment (and _NOT_ in /etc/make.conf) is the only way to enable CTF data conversion. Nore that this can't be implemented the same way that the WITH_ and WITHOUT_ stuff is implemented throughout the buildworld because the CTF conversion needs to work when building a simple object without a Makefile, using the default rules in sys.mk. Typing 'make test.o' with no makefile and just a source file test.c should work. Also, typing 'make WITH_CTF=1 test.o without a makefile and just a source file test.c should work and produce an object with a CTF elf section. Typing 'make WITH_CTF=1 CFLAGS=-g test.o' without a makefile and just a source file test.c should produce an object with both a CTF elf section and the debug elf sections. In the FreeBSD build where more .mk files are used than just sys.mk which is included my make by default, the use of DEBUG_FLAGS is the correct way to enable a debug build. The important thing to note here is that it is the DEBUG_FLAGS setting that prevents libraries and programs from being stripped on installation. So, for the addition of CTF data conversion, setting DEBUG_FLAGS to contain -g, without NO_CTF, will cause the ctfconvert and ctfmerge build programs to be executed also with the -g arg so that debug symbols are retained rather than being removed after the CTF data elf section has been added. Add DTrace libraries to the list of libnames.
* Document the azp for controlling audio powerkevlo2008-05-201-0/+2
|
* Hook up age(4) to the build.yongari2008-05-191-0/+1
|
* Add age(4) to the list of drivers use the miibus interface.yongari2008-05-191-1/+4
|
* Add age(4) to the list of drivers supporting ALTQ.yongari2008-05-191-1/+2
|
* Add age(4) to the list of devices supporting full VLAN processingyongari2008-05-191-1/+2
| | | | in hardware.
* Add man page for age(4).yongari2008-05-191-0/+183
| | | | | | brueffer fixed various nits in the document. Reviewed by: brueffer
* Add support for specifying which INDEX files to build via portsnap.conf.cperciva2008-05-171-0/+7
| | | | | Requested by: brooks Reminded by: brooks, about halfway through his BSDCan talk
* - The names of the months and the days are in lowercase according to thegabor2008-05-162-100/+100
| | | | | | Hungarian spelling, change them accordingly Requested by: Janos Mohacsi <mohacsi@niif.hu>
* Change the default value of synchronous_dhclient to NO.brooks2008-05-151-2/+6
| | | | | | | | | To preserve the existing behavior of etc/rc.d/netif, add code to wait up to if_up_delay seconds (30 seconds by default) for a default route to be configured if there are any dhcp interfaces. This should be extended to test that the interface is actually up. X-MFC after:
* Bump modification date.remko2008-05-131-1/+1
|
* The first of thirteen patches by Ed that resolves a documentationremko2008-05-131-1/+1
| | | | | | | | issue in termios.4, ttydefaults.h does not exist in /usr/include but in /usr/include/sys. MFC after: 3 days Submitted by: Ed Schouten (ed at 80386 dot nl)
* Typo fixes.brueffer2008-05-121-4/+4
|
* Update HARDWARE section.joel2008-05-111-1/+9
|
* Generalize vm_map_find(9)'s parameter "find_space". Specifically, addalc2008-05-101-7/+26
| | | | | | | | | | support for VMFS_ALIGNED_SPACE, which requests the allocation of an address range best suited to superpages. The old options TRUE and FALSE are mapped to VMFS_ANY_SPACE and VMFS_NO_SPACE, so that there is no immediate need to update all of vm_map_find(9)'s callers. While I'm here, correct a misstatement about vm_map_find(9)'s return values in the man page.
* Remove extraneous .Ed, correct SEE ALSO section.brueffer2008-05-101-3/+2
|
* Add a new awk script which parses informations returned by the newlyattilio2008-05-071-0/+24
| | | | | | | | added sysctl debug.witness.graphs and returns all the graphs involving Giant lock creating an appropriate script in DOT format which can be plotted immediately. Submitted by: Michele Dallachiesa <michele dot dallachiesa at poste dot it>
* Fix conflicts after heimdal-1.1 import and add build infrastructure. Importdfr2008-05-071-2/+5
| | | | all non-style changes made by heimdal to our own libgssapi.
* Replace a couple mentions of the soon to be removed vaps_<ifn>brooks2008-05-031-1/+1
| | | | variable form with wlans_<ifn>.
* Fix type name: struct auditpipe_preselect is actually structrwatson2008-05-021-1/+1
| | | | | | | auditpipe_ioctl_preselect. MFC after: 3 days Submitted by: Stacey D. Son <stacey at son.org>
* o OpenBSD 4.3 added.maxim2008-05-011-1/+2
|
* Document the kproc_kthread_add() calljulian2008-04-292-0/+74
| | | | | and fix a small detail of its implementation. MFC after: 1 week
* Intel 4965 wireless driver (derived from openbsd driver of the same name)sam2008-04-292-0/+162
|
* Fix some section references.pjd2008-04-292-5/+5
|
* mention DX8400/50imp2008-04-291-2/+3
|
* Handle endianness for mipsgonzo2008-04-281-2/+4
| | | | Approved by: cognet (mentor)
* Document 'show mount' command.pjd2008-04-281-1/+7
|
* Replace the prototype vaps_<ifn> and vap_create_<ifn> variables withbrooks2008-04-251-4/+26
| | | | | | | | | | | | | more wlans_<ifn> and create_args_<ifn> Add documentation for these variants and generally update the wireless device example. There is are very short lived shim from vaps_<ifn> which produces a warning and vap_create_<ifn> which does not. Misuse the MFC notification service to remind me to remove them. MFC after: 3 weeks
* Fix the year of my doc/www commit bit that I've got :)ganbold2008-04-231-1/+1
| | | | Approved by: keramida(mentor)
* Add:pgj2008-04-221-0/+3
| | | | | | | - myself to the doc committers' graph - my birthday to the FreeBSD calendar Approved by: gabor (mentor)
* Use ddb(4), not DDB(4) for man page cross-references.rwatson2008-04-211-4/+4
| | | | | MFC after: 3 days Reported by: novel
* Multi-bss (aka vap) support for 802.11 devices.sam2008-04-2016-491/+586
| | | | | | | | | | | Note this includes changes to all drivers and moves some device firmware loading to use firmware(9) and a separate module (e.g. ral). Also there no longer are separate wlan_scan* modules; this functionality is now bundled into the wlan module. Supported by: Hobnob and Marvell Reviewed by: many Obtained from: Atheros (some bits)
* move awi to the Attic; it will not make the jump to the new world ordersam2008-04-205-164/+0
| | | | Reviewed by: imp
* Mention support for nForce MCP73.yongari2008-04-161-2/+4
| | | | Touch Dd.
* LK_NOWITNESS can be used now in lockmgr*() functions in order to skipattilio2008-04-121-1/+5
| | | | witness(4) checks on a per-instance basis.
* MFp4: k8temp(4) man page.rpaulo2008-04-122-0/+72
|
* Correct an obvious typo.pjd2008-04-121-1/+1
|
* Update .Ddemax2008-04-091-1/+1
| | | | | Pointed out by: Niclas Zeising <niclas-dot-zeising-at-gmail.com> MFC after: 1 week
* Fix spelling mistake in comment.kan2008-04-091-1/+1
|
* Add rfcomm_pppd_server rc script to allow start rfcomm_pppd(8) in serveremax2008-04-081-0/+106
| | | | | | | | | mode at boot time. Multiple profiles can be started at the same time. The whole idea is very similar to the ppp rc script. Document Bluetooth knobs in rc.conf(5) MFC after: 1 week
* - Add write(2) support for psm(4) in native operation level. Now arbitraryjkim2008-04-081-2/+4
| | | | | | | commands can be written to /dev/psm%d and status can be read back from it. - Reflect the change in psm(4) and bump version for ports. MFC after: 1 week
* Change the EXAMPLE section to reflect reality (ISA -> ACPI).rpaulo2008-04-071-3/+3
|
* Maintain and observe a ZBUF_FLAG_IMMUTABLE flag on zero-copy BPFrwatson2008-04-071-8/+8
| | | | | | | | | | | | | | | | | | | | | | buffer kernel descriptors, which is used to allow the buffer currently in the BPF "store" position to be assigned to userspace when it fills, even if userspace hasn't acknowledged the buffer in the "hold" position yet. To implement this, notify the buffer model when a buffer becomes full, and check that the store buffer is writable, not just for it being full, before trying to append new packet data. Shared memory buffers will be assigned to userspace at most once per fill, be it in the store or in the hold position. This removes the restriction that at most one shared memory can by owned by userspace, reducing the chances that userspace will need to call select() after acknowledging one buffer in order to wait for the next buffer when under high load. This more fully realizes the goal of zero system calls in order to process a high-speed packet stream from BPF. Update bpf.4 to reflect that both buffers may be owned by userspace at once; caution against assuming this.
* Commit manpages for lockmgr_args_rw(9) and lockmgr_rw(9).attilio2008-04-062-16/+44
|
* MFp4 (mips2-jnpr):imp2008-04-041-1/+1
| | | | | | o Default to -O on mips as well as arm. -O2 has been strongly implicated in many problems in the past, so we're taking a conservative approach until the problems are well understood.
* Add note about PZERO being obsolete, because so much code uses it.imp2008-04-041-1/+5
| | | | | Feel free to improve the verbage, since this was a compromise between conflicting feedback I got on my original version.
OpenPOWER on IntegriCloud