summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix a typo: "must be have" -> "must have"yar2001-07-031-1/+1
| | | | MFC after: 5 days
* First, fix a leftover of the cut'n'paste from the kld* pages:yar2001-07-031-2/+6
| | | | | | | | | change the name of the page (.Nm) from "kldstat" to "modstat". Second, don't claim that modstat(2) always returns 0. Actually, it behaves as most syscalls do - returns 0 on success, or -1 on failure. MFC after: 5 days
* Use correct paths to postfix the way we install iteivind2001-07-031-4/+4
|
* remove obsolete typedefs.cg2001-07-033-7/+5
| | | | only define INTR_TYPE_AV if it is not already defined.
* use TAILQ_FOREACH() in searching address listume2001-07-031-2/+1
| | | | | Obtained from: KAME MFC after: 1 week
* Add Transmeta Crusoe LongRun support.iwasaki2001-07-034-1/+470
| | | | | | Submitted by: Tamotsu HATTORI <athlete@kta.att.ne.jp> Reviewed by: arch@ folks MFC after: 1 week
* Fixed the world breakage in rev. 1.8 (space after -I).ru2001-07-031-1/+2
| | | | While here, removed the GCCism (replaced with WARNS?=1).
* Remove duplicate $FreeBSD$ lines.dd2001-07-036-17/+0
| | | | Approved by: bmah
* New release notes: network device cloning, ich sound driver.dd2001-07-032-0/+20
| | | | | | # I have deliberately not mentioned the kernel compile directory move; # people using buildworld aren't affected, and those that aren't had # better be reading cvs-all and/or src/UPDATING.
* Mention hardware supported by the new ich sound driver.dd2001-07-032-0/+4
| | | | Source: PR 25507
* Remove commented-out garbage that skipped updating schedcpu() stats forjhb2001-07-031-2/+0
| | | | ithreads in SWAIT.
* Just check p_oncpu when determining if a process is executing or not.jhb2001-07-031-4/+1
| | | | | | | We already did this in the SMP case, and it is now maintained in the UP case as well, and makes the code slightly more readable. Note that curproc is always executing, thus the p != curproc test does not need to be performed if the p_oncpu check is made.
* Axe spl's that are covered by the sched_lock (and have been for quitejhb2001-07-031-30/+4
| | | | some time.)
* Add a manpage for the acpi super-device. This is still fairly brief, andmsmith2001-07-032-0/+284
| | | | will need to be fleshed out as the system's design solidifies.
* Include the wait message and channel for msleep() in the KTR tracepoint.jhb2001-07-031-1/+2
|
* Fix a XXX comment by moving the initialization of the number of pbuf'sjhb2001-07-031-9/+9
| | | | | for the vnode pager to a new vnode pager init method instead of making it a hack in getpages().
* Remove bogus need_resched() of the current CPU in roundrobin().jhb2001-07-031-3/+6
| | | | | | | We don't actually need to force a context switch of the current process. The act of firing the event triggers a context switch to softclock() and then switching back out again which is equivalent to a preemption, thus no further work is needed on the local CPU.
* Grab Giant around postsig() since sendsig() can call into the vm tojhb2001-07-032-6/+2
| | | | grow the stack and we already needed Giant for KTRACE.
* Quiet warning by removing ast() prototype.jhb2001-07-032-2/+0
| | | | Forgotten by: jhb (me)
* Allow Giant to be recursed when a process terminates.jhb2001-07-036-12/+12
|
* Argh...this isn't ready for WARNS=2 on alpha.mikeh2001-07-031-1/+0
|
* Constify and lockdown with WARNS=2.mikeh2001-07-033-25/+26
| | | | | Submitted by: Mike Barcroft <mike@q9media.com> MFC after: 2 weeks
* Do away with the ``err'' variable.brian2001-07-031-74/+117
| | | | Inspired by: kris
* Document continuation line support.dd2001-07-022-0/+4
| | | | | PR: 8479 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
* Correct handling of continuation lines. Instead of treating thedd2001-07-022-0/+8
| | | | | | | | backslash as nothing, treat it like a space so that adjacent lines aren't glued together. PR: 8479 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
* Correct obviously wrong mistakes.green2001-07-023-3/+3
|
* EACCES may be returned if write permission was denied as well.dd2001-07-021-1/+1
| | | | | PR: 28553 Submitted by: Ronald F. Guilmette <rfg@monkeys.com>
* Revert previous commit; it broke large file support on platforms thatdd2001-07-021-1/+1
| | | | | | had it to begin with (e.g., the Alpha). Submitted by: bde
* Use the printstatus() function from ${.CURDIR}/../fdread/fdutil.c tojoerg2001-07-023-25/+39
| | | | | | | | | give a bit more information about up to 10 errors encountered during formatting (unless -q has been specified, of course). While being here, removed a bitrotten comment in the Makefile, and kill the old Emacs local variable stuff at the end of fdformat.c that's no longer useful anway.
* Break out the function to print the FDC error information intojoerg2001-07-024-44/+114
| | | | fdutil.c so it can be used elsewhere.
* Add a couple of major numbers for ICP Vortex (who were acquired by Intel,msmith2001-07-021-0/+2
| | | | thus taking over the SRC controllers).
* Create gif devices in the "gifconfig" stage while configuring them.brooks2001-07-027-7/+7
| | | | | | Reviewed by: ru, ume Obtained from: NetBSD MFC after: 1 week
* gif(4) and stf(4) modernization:brooks2001-07-0218-203/+287
| | | | | | | | | | | - Remove gif dependencies from stf. - Make gif and stf into modules - Make gif cloneable. PR: kern/27983 Reviewed by: ru, ume Obtained from: NetBSD MFC after: 1 week
* Support network device cloning via create and destroy options.brooks2001-07-022-12/+162
| | | | | | Reviewed by: ru, ume Obtained from: NetBSD MFC after: 1 week
* Document network device cloning ioctls.brooks2001-07-021-0/+37
| | | | | Reviewed by: ru, ume MFC after: 1 week
* Add kernel infrastructure for network device cloning.brooks2001-07-024-5/+242
| | | | | | Reviewed by: ru, ume Obtained from: NetBSD MFC after: 1 week
* s/Netherlands/the Netherlandswilko2001-07-021-3/+3
| | | | | | | ISO3166 is *plain wrong* ... Requested by: grog MFC after: 1 week
* correct arg to getopt (-P takes arg).ume2001-07-021-1/+1
| | | | | Submitted by: mikeh MFC after: 1 week
* A slightly more complete change to timeouts:mjacob2001-07-024-14/+31
| | | | | | | | | | 1. Add SA_IO_TIMEOUT as an option (4 minutes default) to cover reads, writes, wfm, test unit ready. 2. Add internal SCSIOP_TIMEOUT (e.g., for mode sense) at 1 minute. This should not require an option, but is cleaner to parameterize. MFC after: 1 week
* make it compile again in -currentmjacob2001-07-021-1/+1
|
* Add Cisco Aironet 350 Series.brooks2001-07-022-2/+4
| | | | Approved by: bmah
* Reviewed by: Matthew Jacoblars2001-07-021-1/+1
| | | | | Changed the timeout to wait for writing of filemarks to complete from 1 minute to 3 minutes. This should probably be enhanced to be a sysctl variable.
* add MR-AFS port numbersassar2001-07-021-0/+4
|
* While in there fixing a fragment logging bug, fix it so we logcjc2001-07-021-8/+11
| | | | | | | | | | | | | | | | | | fragments "right." Log fragment information tcpdump(8)-style, Jul 1 19:38:45 bubbles /boot/kernel/kernel: ipfw: 1000 Accept ICMP:8.0 192.168.64.60 192.168.64.20 in via ep0 (frag 53113:1480@0+) That is, instead of the old, ... Fragment = <offset/8> Do, ... (frag <IP ID>:<data len>@<offset>[+]) PR: kern/23446 Approved by: ru MFC after: 1 week
* Detect the device on e.g. Dell OptiPlex GX110s.green2001-07-021-0/+1
|
* Make all this compile on 4.3, modulus sbuf.green2001-07-024-3/+15
|
* Lose any stray host bits that a user may have entered when providingcjc2001-07-021-1/+3
| | | | | | | a network number and netmask to the '-a' option. Approved by: ru MFC after: 1 week
* Add device ID for the OHCI controller in the Apple KeyLargo chip.benno2001-07-022-0/+10
|
* Silence some of the -Wnon-const-format warnings and add __printflike()kris2001-07-022-6/+11
| | | | | | | to a function prototype which needs it. Approved by: brian MFC After: 2 weeks
* Fix some typos.brian2001-07-021-3/+3
| | | | | Submitted by: Jimmy Olgeni <olgeni@uli.it> MFC after: 1 week
OpenPOWER on IntegriCloud