summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Interrupt transfers and split transactions work now, so remove theiedowse2005-03-201-5/+2
| | | | | part of the BUGS section that says they don't. Leave the "quite buggy" comment for now though, as it's still partially true.
* Add a read-only kern.sched.preemption sysctl so that user space can tellrwatson2005-03-201-0/+13
| | | | if "options PREEMPTION" is compiled into the kernel.
* Document acpi_fujitsu(4).philip2005-03-202-0/+165
| | | | Reviewed by: brueffer
* Add a missing word.brueffer2005-03-202-4/+4
|
* ifma_protospec is a pointer. Use NULL when assigning or compating it.glebius2005-03-203-6/+6
|
* Add regression tests for pkill/pgrep.pjd2005-03-2025-0/+803
| | | | MFC after: 3 days
* Whitespace fixes.pjd2005-03-202-7/+6
|
* - Introduce an '-o' option which allows to match oldest of the matchingpjd2005-03-202-14/+33
| | | | | | | | | | processes. This option can be also found in Solaris and Linux. - Use timercmp(9) macro for timeval comparsion. - Include time.h directly, don't depend on stat.h doing it for us. Reviewed by: gad (first point) MFC after: 3 days
* - Introduce '-S' option which allows to match system processes (pgrep only).pjd2005-03-202-21/+21
| | | | | | | | | | | | | - Rename IS_KERNPROC() macro to PSKIP() and extend its functionality. Now it'll skip calling process and system processes when -S is not given. As a side effect it fixes '-n' option. Before it was always matching calling process (because of missing 'if (kp->ki_pid == mypid)' check) and after that, calling process was ignored. - When '-l' option is given and there are no arguments, use p_comm as an arguments list (this is helpful for kernel threads matching). Reviewed by: gad MFC after: 3 days
* Sort options properly.pjd2005-03-201-4/+4
| | | | | Reviewed by: gad MFC after: 3 days
* Add a -i option to ignore case in the process match.pjd2005-03-202-6/+12
| | | | | | Obtained from: NetBSD Reviewed by: gad MFC after: 3 days
* Add and document '-F' option which allows to use file where PID is storedpjd2005-03-202-4/+53
| | | | | | | for matching. Reviewed by: gad MFC after: 3 days
* Add and document '-j' option which allows to match processes based on itspjd2005-03-202-4/+30
| | | | | | | jail ID. Reviewed by: gad MFC after: 3 days
* Add and document the 'jid' keyword for the '-o' option.pjd2005-03-202-1/+4
| | | | | Reviewed by: gad MFC after: 3 days
* Make kvm(3) aware of ki_jid field.pjd2005-03-201-1/+17
| | | | | Reviewed by: gad MFC after: 3 days
* Add ki_jid field to the kinfo_proc structure and store jail ID there.pjd2005-03-202-4/+12
| | | | | Reviewed by: gad MFC after: 3 days
* Make prison structure visible from userland if _WANT_PRISON is definedpjd2005-03-201-1/+5
| | | | | | | (simlar to _WANT_UCRED). Reviewed by: gad MFC after: 3 days
* Remove a workaround from previos revision. It proved to be incorrect.glebius2005-03-201-7/+16
| | | | | | | | Add two another workarounds for carp(4) interfaces: - do not add connected route when address is assigned to carp(4) interface - do not add connected route when other interface goes down Embrace workarounds with #ifdef DEV_CARP
* s/SLIST/STAILQ to catch up with changes to resource lists.njl2005-03-201-2/+2
| | | | Missed by: imp
* s/SLIST/STAILQ/nyan2005-03-201-1/+1
|
* Attach acpi_perf early. Especially when it is being used to provide infonjl2005-03-201-1/+6
| | | | | to other devices, it needs to be attached first. (Multi-pass newbus probes would be a better solution.)
* I forgot to commit this fix that is now kgdb aware...jmg2005-03-202-4/+5
|
* fix braino introduced when converting from madwifisam2005-03-201-1/+1
|
* eliminate mid-block variable declssam2005-03-201-5/+4
|
* Add the acpi_ec_read and write methods. This allows an external drivernjl2005-03-202-0/+65
| | | | | | | (like an EC/SMbus controller) to access the EC address space. Access is synchronized by the EcLock/Unlock routines in EcSpaceHandler(). Tested by: Hans Petter Selasky
* Only activate ICH speedstep if we're going to use it. No bugs were observednjl2005-03-201-9/+9
| | | | due to this but it's cleaner this way.
* Use the correct values for softfloat, in both the little endian and the bigcognet2005-03-202-8/+13
| | | | endian cases.
* Bring in a version of float.h more correct for softfloat.cognet2005-03-201-12/+17
|
* version 1.1 (with cleanups)sam2005-03-192-222/+533
| | | | Submitted by: John Bicket
* New release notes: clkbrd driver, nve, re(4) ALTQ support.bmah2005-03-192-14/+40
| | | | | | | | | | MFCs noted: tcpdrop(8). Updated release notes: Mention ath_rate_sample rate control module, libthr stack size update, Xorg 6.8.2. Fixed a minor grammo in introduction, also adjust wording in pointers to snapshots.
* Rather than pointing users at jp.freebsd.org for CURRENTbmah2005-03-191-1/+1
| | | | | | snapshots, instead point them at a Web page on the main FreeBSD site that gives more information on the monthly (RE-created) snapshots plus pointers to the jp.freebsd.org and se.freebsd.org snapshots.
* Now that all architectures allow hooks to be inserted beforeiedowse2005-03-191-6/+2
| | | | | | | configure_final(), assert that "cold" is true in usb_cold_explore() when there are busses to explore. When USB is kldloaded after boot, usb_cold_explore() will still get invoked but the list of busses to explore in that case should always be empty.
* Change the PATH for pkg_add to be the same used for pointyhat package builds.marcus2005-03-191-1/+1
| | | | | | | This will give our users and porters a more consistent experience between installing ports and installing packages. Discussed with: portmgr
* s/SLIST/STAILQ/maxim2005-03-191-1/+1
| | | | Spotted by: clive
* It was possible to have two threads concurrently aborting the sameiedowse2005-03-196-1/+92
| | | | | | | | | | | | | | | | | | transfer, which lead to panics or page faults. For example if a transfer timed out, another thread could come along and attempt to abort the same transfer while the timeout task was sleeping in the *_abort_xfer() function. Add an "aborting" flag to the private transfer state in each host controller driver and use this to ensure that the abort is only executed once. Also prioritise normal abort requests over timeouts so that the callback is always given a status of USB_CANCELLED even if the timeout-initiated abort began first. The crashes caused by this bug were mainly reported in connection with lpd printing to a USB printer. PR: usb/78208, usb/78986
* Xref carp(4) and polling(4).brueffer2005-03-191-0/+2
| | | | MFC after: 3 days
* Instead of a rather useless generation number, use a sample number tophk2005-03-191-18/+19
| | | | keep track of things.
* Bump documentation date for last commit before ru reminds me.simon2005-03-191-1/+1
|
* Add nForce4 to the list of supported audio devices.simon2005-03-191-0/+2
| | | | MFC after: 1 week
* Use subr_unitphk2005-03-194-146/+10
|
* Sleeping is not allowed in uma->finiphk2005-03-191-4/+4
|
* Don't free the SIM object twice.scottl2005-03-191-1/+0
| | | | Submitted by: Coverity Prevent analysis tool
* Handle failures better in the passthrough bus creation code.scottl2005-03-191-4/+11
| | | | Submitted by: Coverity Prevent analysis tool
* check copyin return valuesam2005-03-191-1/+1
| | | | Noticed by: Coverity Prevent analysis tool
* Add device ID for Planet IA 128P-STD card.murray2005-03-191-0/+2
| | | | | | PR: kern/71923 Submitted by: Vassily Kiryanov <admin@assist.berezniki.ru> MFC after: 1 week
* Typo.murray2005-03-191-1/+1
| | | | | | PR: conf/77178 Submitted by: Andras Jako <jako.andras@eik.bme.hu> MFC after: 1 week
* Add Central European and Slovak keymaps to sysinstall.murray2005-03-194-6/+12
| | | | | PR: misc/78701 MFC after: 1 week
* When disarming a watchdog by using an interval of WD_TO_NEVER a non-zeromarius2005-03-191-1/+2
| | | | | | | return value of the ioctl doesn't indicate that the command has failed so don't let watchdog(8) return an error in this case. MFC after: 3 days
* Optimize putc routine to write 2 ints instead of 8 chars to uncachedgrehan2005-03-191-14/+41
| | | | | | | framebuffer memory. Speeds up system time of large ascii file cat by 4x. Inspired by: Linux scrolling so damned fast.
* Add device id for nForce 4 audio controller.murray2005-03-191-0/+4
| | | | | | PR: kern/78482 Submitted by: Markus Niemistö <markus.niemisto@iki.fi> MFC after: 1 week
OpenPOWER on IntegriCloud