summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Define a null_getwritemount to get the mount-point for the lowerjeff2006-03-121-2/+26
| | | | | | | filesystem so that nullfs doesn't permit you to circumvent snapshots. Discussed with: tegge Sponsored by: Isilon Systems, Inc.
* The idea of supporting 'tp' was a fun one, but it iskientzle2006-03-113-621/+0
| | | | | really not worth the effort to develop and maintain support for a format that hasn't been used for 30 years. ;-/
* use the same test as release/Makefile to select WITH_SMPsam2006-03-112-4/+6
| | | | Reviewed by: ru
* fix handling of default kernelssam2006-03-111-6/+8
| | | | Reviewed by: ru
* Make sure that we are adding a path token to the audit record in open(2).csjp2006-03-111-2/+3
| | | | | | Do this by making sure we are using the AUDITVNODE1 mask in the namei flags. Obtained from: TrustedBSD Project
* Don't be noisy in case of shared interrupts.phk2006-03-111-0/+2
|
* add dependency with firmware module.damien2006-03-111-0/+1
| | | | pointed out by Martin Wilke.
* Go over calcru and friends once more.phk2006-03-112-48/+49
| | | | | Reintroduce the monotonicity for the normal case and make the two special cases behave in what is belived to be the most sensible fasion.
* Remove last traces of disk_enumerate()phk2006-03-111-2/+0
|
* Fix "make distribution" when just NO_CRYPT is defined.ru2006-03-111-1/+1
| | | | | | PR: misc/94309 Submitted by: Matthias Lederhofer MFC after: 3 days
* Remove debug flag.sos2006-03-111-1/+0
| | | | Spotted by: ru@
* Fix build.ru2006-03-111-2/+2
|
* Block secondary writes while expunging active unlinked files.tegge2006-03-115-5/+119
| | | | | | | | | | Fix detection of active unlinked files by checking VI_OWEINACT and VI_DOINGINACT in addition to v_usecount. Defer inactive handling for unlinked files if the file system is mostly suspended (secondary writes being blocked). Perform deferred inactive handling after the file system is resumed.
* Fix multicast support for cs89x0 chips. Just setting the RX_MULTCAST_ACCEPTphilip2006-03-101-18/+56
| | | | | | | | flag isn't enough - the filter needs to be set up too, or no multicast frames are accepted. Sponsored by: Philips Industrial Applications (indirectly) MFC after: 3 days
* Micro-optimize invalid UUID check.jkim2006-03-101-1/+3
|
* o acknowledge interrupts early in the interrupt handlerdamien2006-03-102-10/+13
| | | | | | | | o stop processing interrupts after a firmware fatal error or a radio kill o clarify the possible values for the 'antenna' sysctl. o by default, let the firmware do antenna diversity. the firmware will periodically switch to another antenna to evaluate the signal quality.
* make use of the firmware(9) subsystem.damien2006-03-102-158/+73
| | | | use intel's firmware version 3.0 layout.
* Add atausb modulesos2006-03-101-0/+10
|
* Add "device atausb"sos2006-03-101-0/+1
|
* Module that adds support for using USB storage devices through thesos2006-03-101-0/+980
| | | | | | ATA framework. Mainly written to be able to use USB Flash keys. This is work in progress so use with care :) Doesn't need CAM and cannot coexist with umass.c
* fix the locking.damien2006-03-102-28/+73
|
* Add note about 'audit' group.imp2006-03-101-0/+9
| | | | | | | | Add note about the '_dhcp' user. While one is expected to run mergemaster -p before installworld, make a note of the points where this will actively fail due to the addition of users/groups.
* Use .Cm for all key words, not just the ones I added. More in line withtrhodes2006-03-101-12/+12
| | | | | | mdoc(7) according to ru. Requested by: ru
* write the right unit # on verbose output.sos2006-03-101-1/+2
|
* Disable an SMP detection on pc98.nyan2006-03-105-5/+5
|
* Hopefully fix all nearby style bugs that Bruce has mentioned.ru2006-03-101-8/+8
|
* - Fix variable assignment to be portable.ru2006-03-101-6/+6
| | | | | | - "Line up" continuations. Submitted by: bde
* Add entries for new pthread stubs.davidxu2006-03-101-0/+30
|
* Block all signals in helper threads except those should not be blocked.davidxu2006-03-101-6/+9
|
* Remove including of libc sources. All the required functionsdeischen2006-03-102-16/+4
| | | | | are exported by libc with prototypes in our standard headers. I guess at one time this was necessary, but not any longer.
* When inserting a new component md_provsize metadata field wasn't set, whichpjd2006-03-102-0/+2
| | | | | | | | means that old problem was triggered (when two providers end at the same offset, eg. ad0 and ad0s1 and the wrong was is picked up by gmirror/graid3). Reported by: Michal Suszko <dry@dry.pl> MFC after: 3 days
* fix switching between agressive and non-agressive wmm modessam2006-03-101-2/+2
| | | | | Obtained from: atheros MFC after: 3 days
* It is not necessary to read %gs twice.davidxu2006-03-101-2/+1
|
* Fix stack offset to allow gcc's stack aligment code to work correctly.davidxu2006-03-101-1/+1
| | | | MFC after: 3 days
* Remove unneeded (and broken) usage of MNT_REF()/MNT_REL().tegge2006-03-101-2/+0
|
* MFp4: Forget the asm inlined version of in_cksum_hdr(). It doesn't work ifcognet2006-03-092-74/+10
| | | | the pointer is unaligned, and it just doesn't worth it.
* - Implement serial numbers, UUID, and asset tag (turned off by default).jkim2006-03-093-31/+80
| | | | | | Use 'BOOT_SENSITIVE_INFO=YES' variable to turn them on. - Use 'uint*_t' instead of 'u_int*_t', correct compilation warnings, and update copyright while I am here.
* Implement printf 'X' conversion for both libstand and kernel.jkim2006-03-092-19/+24
|
* missed a case that needs WITH_SMPsam2006-03-092-0/+4
| | | | Noticed by: kensmith
* Rever the previous changes. It turns out that it perfectly correctgad2006-03-093-3/+3
| | | | | | | for a makefile to set 'NO_MAN=' when the makefile is for a program that will not create a man page. Based on reaction from: ru bde
* Fix this to what I've actually submitted.ru2006-03-091-1/+1
|
* Revise the names of modules in the recent note on tdfx_linux.yar2006-03-091-4/+4
|
* handle KERNELS as beforesam2006-03-091-3/+2
| | | | Submitted by: ru, andrew
* Flip the switch and don't route interrupts to hyperthreads in a HT system.jhb2006-03-092-4/+4
| | | | | | | | | In at least one benchmark this showed around a 20% performance increase. If other workloads do benefit from having hyperthreads service interrupts, we can always make this a loader tunable. MFC after: 3 days Tested by: ps
* Don't dereference an uninitialized pointer.imp2006-03-091-1/+4
|
* Revert last change, per ru@'s objection. I misunderstood consensusimp2006-03-091-1/+1
|
* Avoid pulling in the whole <net/pfvar.h> by opaquely declaringyar2006-03-091-2/+3
| | | | | | | the structs pflog_packet() takes pointers to. Approved by: mlaier MFC after: 3 days
* The `pf' and `pflog' sources do not depend on DEV_PF or DEV_PFLOG,yar2006-03-092-6/+0
| | | | | | | | which is normal for own files of a device driver. DEV_FOO should be used if an unrelated kernel file needs to know of the `foo' driver's static presence. Obviously, module source files should never use DEV_*.
* Revert to setting vlan and vlandev parametes synchronously, as soonyar2006-03-091-0/+9
| | | | | | | | | | | | | | | as both have been read from the command line. Still use the callback, but this time only to verify that both vlan and vlandev have been found on the command line. This should allow for control over the relative order of processing parameters, which is needed to satisfy some caveats of the if_vlan driver. E.g., MTU cannot be changed on a vlan interface until it's attached to its parent. PR: bin/94028 Reviewed by: ru MFC after: 3 days
* Add -F option to not fail on already installed packages.phk2006-03-094-5/+13
| | | | Submitted by: Eugene Grosbein <eugen@grosbein.pp.ru>
OpenPOWER on IntegriCloud