summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Link libcrypt_p.a to the DES profiled library, if this library is present.jkoshy1999-08-191-0/+5
| | | | | | PR: misc/7759 Submitted by: Carl Mascott <cmascott@world.std.com> Reviewed by: jkh
* Fix breakage if blackhole=1 and tiflags & TH_SYN, pluscsgr1999-08-193-16/+26
| | | | | | style(9) fixes Submitted by: Jonathon Lemon
* Use el_source() so we pick up .editrcmdodd1999-08-194-2/+6
|
* Small tweak: in xl_rxeof(), rxstat should be u_int32_t, not u_int16_t.wpaul1999-08-191-3/+3
|
* Add support for command line editing and history.mdodd1999-08-1910-2089/+180
| | | | | | | | Remove src/contrib/bind/bin/nslookup/commands.c as it is generated by lex from commands.l. Submitted by: lpc/cdcontrol patches originally by msmith. Reviewed by: msmith (in theory)
* Try using the builtin ffs() for egcs, it (by random inspection)peter1999-08-192-2/+10
| | | | | generates slightly better code and avoids the incl then subl when using ffs(foo) - 1.
* Update for MI switch code, and trim a heap of unused (I believe) entries.peter1999-08-195-208/+7
|
* Use the MI process selection. We use a quick routine to decide whetherpeter1999-08-193-807/+45
| | | | to get the mplock and enter the kernel to run a process in the SMP case.
* Use MI switch code for process selection. This gets run queues entirelypeter1999-08-192-148/+10
| | | | | | out of the asm code, and as a bonus implements rtprio and idprio for the Alpha. Previously if you ran an idprio process, you were assured of a deadlock.
* Update for run queue code.peter1999-08-191-2/+2
|
* Don't initialize run queues here, do it all in one place.peter1999-08-191-22/+2
|
* Run queue heads have moved to TAILQ's.peter1999-08-191-5/+1
|
* Update for MI switch components. struct prochd is replaced by TAILQ's.peter1999-08-191-10/+11
| | | | Use a spare pad field for saving the run queue index.
* (forced commit, cvs aborted part way though)peter1999-08-190-0/+0
| | | | | | | | Extract the next runnable process selection out of cpu_switch() into a fairly machine independent C routine. gcc actually does a pretty good job of this. Reviewed by: msmith (in principle)
* Sort xrefs.mpp1999-08-191-3/+3
| | | | Submitted by: Alexey Zelkin <phantom@cris.net>
* Extract the next runnable process selection out of cpu_switch() into apeter1999-08-192-0/+205
| | | | | | | fairly machine independent C routine. gcc actually does a pretty good job of this. Reviewed by: msmith (in principle)
* Make these actually compile. I got a little delete happy pruning includesmdodd1999-08-1816-34/+82
| | | | | | | and used 'command' instead of 'cmd' in a few cases. Also clear up some unused variables. Pointed out by: phk
* Add pin-numbers for easy reference.phk1999-08-181-11/+12
|
* Document some common ENVIRONMENT variables.mpp1999-08-181-1/+11
| | | | | PR: docs/13233 Submitted by: Alexey Zelkin <phantom@cris.net>
* Add pam_radius.so manual page.abial1999-08-182-1/+130
| | | | Reviewed by: jdp
* printf("%x",dev); -> printf("%s",devtoname(dev));nsayer1999-08-182-22/+22
|
* Slight tweak to tcp.blackhole to add optional behaviour tocsgr1999-08-182-18/+52
| | | | | | | | | drop any segment arriving at a closed port. tcp.blackhole=1 - only drop SYN without RST tcp.blackhole=2 - drop everything without RST tcp.blackhole=0 - always send RST - default behaviour This confuses nmap -sF or -sX or -sN quite badly.
* Mention ``alias enable no'', not ``alias enable off''.brian1999-08-182-4/+4
|
* Hopefully make IFMEDIA_DEBUG compile. if_xname[] is a NetBSD addition,peter1999-08-181-3/+3
| | | | | | we need if_name, if_unit. (maybe we should pick up if_xname[] ?) Pointed out by: jkb@yahoo-inc.com
* The "LINUX" option isn't actually used or referenced anywhere. The stuffpeter1999-08-182-4/+2
| | | | | | | that goes to opt_dontuse.h is so an opt_*.h file doesn't get created even though an option may be used for bringing stuff in via files[.*]. Pointed out by: bde
* 1) rename dev->self to be consistentn_hibma1999-08-184-152/+214
| | | | | 2) use device_printf 3) properly tear down and disable interrupts when init fails
* Remove redundant spaces in the whole line, not only the first occurrence.n_hibma1999-08-181-3/+3
| | | | (not that anyone actually reads the created .c and .h files :)
* Merge from sys/i386/isa/spkr.c revision 1.38.kato1999-08-181-5/+5
|
* Merge from sys/i386/i386/machdep.c revision 1.359.kato1999-08-182-16/+34
|
* Merge from sys/i386/conf/files.i386 revision 1.259.kato1999-08-182-4/+8
|
* Document sysctl MIBs under net.inet.udpcsgr1999-08-181-2/+31
|
* SIOCSIFADDR, SIOCGIFADDR, and SIOCSIFMTU are implemented inmdodd1999-08-1816-1018/+77
| | | | | | | | sys/net/if_ethersubr.c:ether_ioctl(). Drivers need not implement generic behavior. PR: kern/12126 Submitted by: in part by Boris Popov <bp@butya.kz>
* Fix a bunch of broken cross-referenceschris1999-08-1816-35/+35
|
* Create callable (non-inline) versions of the atomic_OP_TYPE functionsalc1999-08-186-8/+128
| | | | | | | | | | | | that are linked into the kernel. The KLD compilation options are changed to call these functions, rather than in-lining the atomic operations. This approach makes atomic operations from KLDs significantly faster on UP systems (though somewhat slower on SMP systems). PR: i386/13111 Submitted by: peter.jeremy@alcatel.com.au
* Fix breakage - an extra brace got inserted where DIAGNOSTIC was definedmjacob1999-08-181-2/+1
| | | | but MAP_LOCK_DIAGNOSTIC wasn't.
* Remove the SMBIOS detection and definitions; this should be handled in amsmith1999-08-184-118/+4
| | | | loadable module (under development).
* Bad cross-reference of getservbyname(2) changed to getservbyname(3)chris1999-08-181-2/+2
| | | | Reviewed by: ru
* The new test(1) did not use access() correctly. I don't know why, sincegreen1999-08-181-2/+7
| | | | | | | | supposedly it's ksh-derived, and it's not broken in pdksh. I've added a test for test running as root: if testing for -x, the file must be mode & 0111 to get "success", rather than just existant. Reviewed by: chris
* Devfs isn't quite dead yet... Add back devfs support to ptys..julian1999-08-171-1/+36
| | | | | | When you use pty(N) it creates pty(N+1) ready for your use in the DEVFS, so DEVFS is not cluttered up with hundreds of ptys you are never going to use.
* Unbreak the nfs KLD_MODULE. It needs a bit more of vm_page.h than wasgreen1999-08-171-3/+5
| | | | | exported (notably vm_page_undirty()). Also, let vm_page_dirty() work in a KLD.
* (1) Fix a spelling mistake in a comment.billf1999-08-171-2/+3
| | | | | | (2) Add braces to avoid ambigious if/if/else Reviewed by: bde
* Fix a printf(3) formatter to match its variable.billf1999-08-171-1/+1
| | | | Reviewed by: bde
* Fix a printf() formatter to match its variable.billf1999-08-171-2/+2
| | | | Reviewed by: bde, luigi
* Remove an unused variable.billf1999-08-171-2/+1
| | | | Reviewed by: bde
* Wrap two declarations that are only used in an #ifdef in their own #ifdef.billf1999-08-171-1/+5
| | | | Reviewed by: bde
* Take out a reference to ccb(4). I never got around to writing it.ken1999-08-171-3/+2
| | | | Reported by: "Alexey M. Zelkin" <phantom@cris.net>
* Welcome devtoname(), to most likely be used when printing informationbillf1999-08-176-15/+24
| | | | | | | | | | about a dev_t. printf("%x", dev) now becomes printf("%s", devtoname(dev)) because printing actual information about the device is much more useful then printing a pointer to an address that would never help the developer debug. Submitted by: phk, bde
* Add a second arg to ``set timeout'' as an example of a minimum idlebrian1999-08-171-2/+4
| | | | period.
* vm_page_free_toq:alc1999-08-171-10/+2
| | | | | Update the comment to reflect the demise of PQ_ZERO and remove a (now) useless test.
* Implement a minimum idle time value as an optional second argumentbrian1999-08-176-26/+79
| | | | | | to ``set timeout''. This is useful for situations where your minimum call charge is (say) 5 minutes (like mine is)
OpenPOWER on IntegriCloud