summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add .Pp before enumerating optionscharnier2002-04-192-0/+2
|
* Use `The .Nm utility'charnier2002-04-192-8/+10
|
* Clean up:alfred2002-04-192-8/+20
| | | | | | | | Comment run_filter() to explain what it does. Remove chatty comments. void busdma_swi() { } -> void busdma_swi(void) { }
* Move tx(4) driver to sys/dev/tx. BTW split hardware structures and constantssemenu2002-04-197-2716/+14
| | | | | | into if_txreg.h. MFC after: 1 week
* Make this build on 4.x machines again (building a -current kernel on aimp2002-04-193-36/+27
| | | | | | | | | | | | -stable machine via the old-school methods): Use __FreeBSD_version in preference to __FreeBSD__ >= N where possible. Define a single variable mythread which is set to curproc or curthread depending on the OS version (with a comment saying it is a white lie on 4.x since it really is a proc). NB: __FreeBSD__ is the OS level of the host machine, not the target, and should never be used, if possible, as __FreeBSD__ >= N.
* - Nuke some more #ifdef sun related sections.arr2002-04-194-41/+1
|
* - Nuke some #ifdef sun4m code; it hasn't been updated in 4 years and is notarr2002-04-192-69/+0
| | | | being used.
* Prevent sign extension on characters with 8bit setache2002-04-191-1/+1
|
* Change lpd to recognize the '-s' parameter as a preferred synonymgad2002-04-192-13/+26
| | | | | | | | | | for what is currently the '-p' parameter. '-s' is what NetBSD used (and they implemented it before I added -p in FreeBSD), and it also matches the '-s' option in syslogd. Someone in OpenBSD land had also talked about adding a '-s' option, but it hasn't happened yet. MFC after: 5 days
* Remove a safety-setting line which is unnecessary now that the previousgad2002-04-191-1/+0
| | | | | | line is using strlcpy instead of strncpy. MFC after: 4 days
* Fix 'deamon' -> 'daemon' in a comment.gad2002-04-191-1/+1
| | | | | Obtained from: NetBSD, OpenBSD MFC after: 4 days
* Add a little detail to the syslog-msg that comes up when lpd can notgad2002-04-191-2/+3
| | | | | | execute a given filter. MFC after: 4 days
* Add the previously committed usb(4) manual pages to the build.trhodes2002-04-191-0/+7
| | | | | PR: 27919 MFC after: 3 days
* Add usb(4) manual pages.trhodes2002-04-197-0/+615
| | | | | | PR: 27919 Obtained from: NetBSD MFC after: 3 days
* Add .asm as an alias for .s. .asm is common in contribed sources.obrien2002-04-193-3/+24
| | | | Helps with: gcc31 build.
* - Change KM_ macro calls to the appropriate function call.arr2002-04-1930-238/+170
| | | | | | | - Nuke KM_ macros from port.h This is a leadin step towards cleaning up this code as I wait for some ATM cards and a ATM switch to arrive.
* - Remove KM_ macro calls and replace with the real function we're calling.arr2002-04-194-16/+12
| | | | | | As a note, this driver needs the same updating as the hfa driver was just given; removing these macros since I will be nuking them from netatm.
* Add __FBSDID, this file was unmodified so it was missed in the initial sweep.jmallett2002-04-191-0/+3
|
* Bring OpenBSD m4(1) off of the OPENBSD vendor branch, and add the -s option,jmallett2002-04-1912-643/+1442
| | | | | | | $FreeBSD$ identifiers, and fix initialisation to stderr to happen in a function as stderr is not the same in CURRENT as in OpenBSD. Reviewed by: obrien
* Merge differences and correct the manual page.jmallett2002-04-191-144/+309
|
* New release notes: my driver.bmah2002-04-194-8/+38
| | | | MFCs noted: viapm(4), ng_etf(4) (fixed spelling), libstand splitfs.
* Add a reminder that commits to the security branches must go through thenectar2002-04-191-0/+1
| | | | Security Officer.
* In sendfile(), use the vn_rdwr() helper function, rather than manuallyrwatson2002-04-191-13/+4
| | | | | | | | | | | | | | | | constructing a struct aio and invoking VOP_READ() directly. This cleans up the code a little, but also has the advantage of making sure almost all vnode read/write access in the kernel goes through the helper function, meaning that instrumentation of that helper function can impact almost all relevant read/write operations. In this case, it permits us to put MAC hooks into vn_rdwr() and not modify uipc_syscalls.c (yet). In general, if helper vn_*() functions exist, they should be used in preference to direct VOP's in system call service code. Submitted by: green Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* Divorce proc0 and proc1 credentials earlier; while this isn't technicallyrwatson2002-04-191-0/+7
| | | | | | | | | | | | needed in the current code, in the MAC tree, create_init() relies on the ability to modify the credentials present for initproc, and should not perform that modification on a shared credential. Pro-active diff reduction against MAC changes that are in the queue; also facilitates other work, including the capabilities implementation. Submitted by: green Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* Record libtelnet.a death.ru2002-04-195-5/+5
|
* Explicitly specifies sin6_family & sin6_len of sockaddr_in6 for raw socketsuz2002-04-191-1/+3
| | | | | | | | | | | | | | destination. (Currently lack of their specification does not lead to any problem, because kernel does not check the consistency between actual address and its address family / length on raw socket. However kernel should always check their consistency and stop sending packets if there is a contradiction. Considering backward compatibility of programs, I just fixed rtsol now; I'd like to fix the kernel behavior later.) Reviewed by: ume MFC after: 3 days
* Mention the UCONSOLE kernel option removal.ru2002-04-191-0/+3
| | | | Prompted by: sheldonh
* mdoc(7) police: polishing.ru2002-04-191-11/+14
|
* Build modules on ia64:marcel2002-04-191-9/+38
| | | | | | | | | | | | | | | | | | | | | | o Make the cam, cd9660 lomac and sound modules i386 and alpha specific due to link problems (@gprel relocation when @ltoff is required). Once resolved, these can be moved back to the generic list. o Build linprocfs only on those architectures that have the linux module. o Make the sppp module i386 and alpha specific due to compile problems (pointers as switch cases). Once resolved, this can be moved back to the generic list. o Build all i386 specific modules, with the exception of those mentioned above as being moved from the generic list to the i386 list and those with dependencies on the linux module (aac) or i386 dependent (ar, apm, atspeaker, fpu, gnufpu, ibcs2, linux, ncv, nsp, netgraph, oltr, pecoff, s3, sbni, stg and vesa). o Don't build acpi as a module yet. It most be ported first. Once ported, it can be added to the ia64 list. o Don't build ipfilter yet due to compile errors (osreldate.h not found).
* Push the .info file contents out when we're done so people canphk2002-04-191-0/+1
| | | | read the description while the megs shift from one place to another.
* Make kernel dumps work with GEOM.phk2002-04-194-0/+53
| | | | | | | | | | Notice that if the device on which the dump is set is destroyed for any reason, the dump setting is lost. This in particular will happen in the case of spoilage. For instance if you set dump on ad0s1b and open ad0 for writing, ad0s* will be spoilt and the dump setting lost. See geom(4) for more about spoiling. Sponsored by: DARPA & NAI Labs.
* Make life easier for reference-vector generatorts in tools/regression/geomphk2002-04-191-0/+3
| | | | | | by including a FreeBSD friendly CVS identifier in the XML output. Sponsored by: DARPA & NAI Labs.
* suser is Giant safe, so optimize a pointless case.phk2002-04-191-3/+3
|
* Add a SI_DUMPDEV flag for devices.phk2002-04-192-0/+2
| | | | Sponsored by: DARPA & NAI Labs.
* Respect setting of NM to allow cross-building.marcel2002-04-191-1/+1
|
* Localize it, LC_CTYPEache2002-04-191-1/+4
|
* Some fixes for Symbol card.onoe2002-04-191-2/+20
| | | | | | - The version string doesn't need to start with 'V'. - Symbol firmware doesn't support ROAMING_MODE nor MICROWAVE_OPEN. Obtained from: NetBSD
* Use LC_ALL to pick collateache2002-04-191-1/+1
| | | | Noticed by: tjr
* Style.ru2002-04-192-2/+3
|
* Fix the type of .include.ru2002-04-192-2/+2
|
* Fix the bsd.port.mk breakage caused by sys.mk,v 1.60 commit.ru2002-04-191-0/+2
| | | | Submitted by: fenner
* Allocate sufficient pages to hold the bootinfo block and stopmarcel2002-04-192-14/+20
| | | | hardwiring the location.
* Remove the bootinfo kludge. We get the address of the bootinfomarcel2002-04-191-28/+3
| | | | block from the loader.
* just merged cosmetic changes from KAME to ease sync between KAME and FreeBSD.suz2002-04-1975-573/+644
| | | | | | | (based on freebsd4-snap-20020128) Reviewed by: ume MFC after: 1 week
* Do some minor editing of the entires (the date of the smmsp userimp2002-04-191-10/+20
| | | | | | wasn't April 4, but Feb 17th). Update the updating proceedure to use the new mergemaster -p flag. Add a footnote telling users how to cope if their mergemaster doesn't have a -p flag.
* o Move the acquisition of Giant from vm_fault() to the pointalc2002-04-191-12/+8
| | | | | after initialization in vm_fault1(). o Fix some style problems in vm_fault1().
* Move the sysV variable substitution up with the BSD feature that replaced it.obrien2002-04-191-2/+2
|
* o Remove vm_map_growstack() from ia64's trap_pfault().alc2002-04-191-16/+2
| | | | | o Remove the acquisition and release of Giant from ia64's trap_pfault(). (vm_fault() still acquires it.)
* Clean up usage message: don't put optional parameter's in brackets.rwatson2002-04-191-7/+7
| | | | | | | | Update copyright date. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs Extracted from: green
* When exec'ing a set[ug]id program, make sure that the stdio file descriptorsnectar2002-04-193-0/+70
| | | | | | | | (0, 1, 2) are allocated by opening /dev/null for any which are not already open. Reviewed by: alfred, phk MFC after: 2 days
OpenPOWER on IntegriCloud