summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add bits of PAO that are non-controversial.markm1999-06-1722-132/+456
| | | | Submitted by: Tatsumi HOSOKAWA
* Please forgive me, it's my first day on the block. Forgot to mention:sheldonh1999-06-171-1/+1
| | | | PR: 11987
* Null commit to reflect that the previous commit added warnings forsheldonh1999-06-171-1/+1
| | | | | previously unreported malloc() failures, and changed the exit status for those failures to encourage MTA retries.
* * Add a command-line option to enable debugging mode, which sends errorsheldonh1999-06-172-19/+67
| | | | | | | | messages to stderr instead of syslog. * Fix manpage with respect to diagnostics. Reported by: rfg@monkeys.com (Ronald F. Guilmette)
* Sync with sys/i386/i386/machdep.c revision up to 1.341.kato1999-06-172-8/+6
|
* Sync with sys/i386/conf/options.i386 revision 1.117.kato1999-06-172-2/+4
|
* Merge from non-crypto version:ru1999-06-1710-30/+150
| | | | | | | | - "-N" option - "-E" security fix - "-s src_addr" option Requested by: markm
* Various fixes for inetd's TCP Wrappers support:sheldonh1999-06-173-24/+26
| | | | | | | | | | | | | | | | | | | | | 1) Handle forking and non-forking internal services correctly. Turn on wrapping for internal services because it works now. 2) Preserve server names for each service on HUP. 3) Honour hosts_options(5) severity option. 4) Add IMPLEMENTATION NOTES section to clarify TCP Wrappers usage and limitations. This change may cause previously allowed builtin services (e.g. daytime) to be denied in existing configurations. PR: 12097 Reviewed by: markm 1) Reported by: Pierre Beyssac <pb@fasterix.freenix.org> 2) Submitted by: Masachika ISHIZUKA <ishizuka@ish.org> 3) Submitted by: David Malone <dwmalone@maths.tcd.ie>
* Add "-N" option to the SYNOPSIS and usage().ru1999-06-172-5/+5
|
* Fixed a missing userland dev_t to kernel dev_t conversion.bde1999-06-172-2/+2
|
* vm_map_insert sometimes extends an existing vm_map entry, rather thanalc1999-06-171-3/+7
| | | | | | | creating a new entry. vm_map_stack and vm_map_growstack can panic when a new entry isn't created. Fixed vm_map_stack and vm_map_growstack. Also, when extending the stack, always set the protection to VM_PROT_ALL.
* Reformat comment to match indentation of code around it.julian1999-06-171-8/+9
|
* Move vm_map_stack and vm_map_growstack after the definitionalc1999-06-171-204/+204
| | | | | of the vm_map_clip_end macro. (The next commit will modify vm_map_stack and vm_map_growstack to use vm_map_clip_end.)
* Remove some unused declarations and duplicate initialization.alc1999-06-171-6/+2
|
* Add a vnode argument to VOP_BWRITE to get rid of the last vnodemckusick1999-06-1624-448/+106
| | | | | operator special case. Delete special case code from vnode_if.sh, vnode_if.src, umap_vnops.c, and null_vnops.c.
* Add the -p switch - tells rwhod to ignore POINTOPOINT interfaces.brian1999-06-162-2/+15
| | | | | Mostly submitted by: Stefan Zehl <sec@42.org> PR: 12216
* Init(8) will halt the system if sent USR1 signal,ru1999-06-162-8/+23
| | | | | | | | | or halt and turn the power off if sent SIGUSR2. PR: 5451 Submitted by: Leif Neland <leifn@image.dk> Reworked by: ru Reviewed by: -hackers
* Close a race window where a tcp socket is closed while tcp_pcblist istegge1999-06-162-4/+14
| | | | copying out tcp socket info, causing a NULL pointer to be dereferenced.
* Make syscall tracing work: include "opt_ktrace.h" and make it compile.dt1999-06-161-2/+8
|
* Syscall arguments are now properly aligned. Print them, and syscall returndt1999-06-161-16/+16
| | | | values, as longs, instead of int.
* Make sure syscall arguments properly aligned in ktrace records.dt1999-06-162-11/+18
| | | | | | | Make syscall return value a register_t. Based on a patch from Hidetoshi Shimokawa. Mostly reviewed by: Hidetoshi Shimokawa and Bruce Evans.
* Use vput instead of vrele.mjacob1999-06-161-3/+3
| | | | | | Reviewed by: Matthew Dillon <dillon@apollo.backplane.com> Submitted by: Ville-Pertti Keinonen <will@iki.fi> Obtained from: Matthew Dillon <dillon@apollo.backplane.com>
* Remove option USBVERBOSEn_hibma1999-06-162-4/+4
| | | | | | Add the options for debugging used in dev/usb/*.c Submitted by: Kazu
* Grrr! The PNIC II's multicast hash table is only 128 bits wide, not 512wpaul1999-06-161-20/+45
| | | | | | | like the original PNIC and the MX98715A (from which the PNIC II is derived). This requires special handling. Save the card type, and in mx_calchash(), if we see that the card is a PNIC, return only the low 7 bits of the hash instead of the low 9 bits.
* Changed trypbuf to a getpbuf to work around a problem where redundant writesdg1999-06-161-2/+2
| | | | | | | | | would occur when clustering them - caused by running out of buffers and taking a degenerate code path as a result. It appears that waiting instead for buffers to become available is okay. Submitted by: Matthew Dillon <dillon@apollo.backplane.com> Discovered by: Craig A Soules <soules+@andrew.cmu.edu>
* Add "-s src_addr" option to allow setting of the source IP address.ru1999-06-163-9/+60
|
* Print verbose messages when there is error.yokota1999-06-162-4/+42
| | | | Oked by: des
* Fix non-benign typo.billf1999-06-161-2/+2
| | | | Submitted by: Daniel Baker <dbaker@cuckoo.com>
* Clean up bitrot in interrupt tracing code.tegge1999-06-163-9/+9
|
* If we still haven't got a sufficient number of free buffers after thetegge1999-06-161-2/+2
| | | | | | call to flushdirtybuffers() then sleep in waitfreebuffers(). PR: 11697 Reviewed by: David Greenman, Matt Dillon
* Get rid of the global variable rushjob and replace it with a function inmckusick1999-06-157-141/+215
| | | | | kern/vfs_subr.c named speedup_syncer() which handles the speedup request. Change the various clients of rushjob to use the new function.
* If we retry this operation from the top of this routine, we need tomjacob1999-06-152-2/+10
| | | | | | make sure we've freed any allocated resources (to avoid a memory leak) and and do the right thing with respect to the nfs node hash lock we'd acquired.
* Add a couple of command definitions.julian1999-06-151-67/+74
| | | | | | Also add offsets into the IDE parameter block so that it is humanly possible to match the structure to the manufacturer's documentation. (basically this is just changes to comments)
* COM_LLCONSOLE should over-ride COM_DEBUGGER request.mckusick1999-06-152-4/+4
|
* cam_get_device() was returning 0 on failure, and 1 on success, whilempp1999-06-151-10/+10
| | | | | | | | camcontrol(8) and the documentation in camlib.c and cam(3) all expect -1 on failure and 0 on success. Updated camlib.c to return the values specified by the documentation. PR: 12023
* Correctly document the two different object file formats that can bempp1999-06-151-3/+3
| | | | | | used with objformat. PR: 10877
* Document the IMPLEMENTATION NOTES section since we have a number ofmpp1999-06-151-2/+4
| | | | | | man pages that use it. PR: 10659
* This really belongs to section 8.ru1999-06-151-2/+2
|
* Kill option FAILSAFE.des1999-06-1516-54/+25
| | | | | PR: i386/12187 Approved by: bde
* Document the usage of escape character in a service name.ru1999-06-151-2/+9
| | | | | PR: 7101 Reminded by: jhs
* MFS: No longer needed with PicoBSD 0.44roger1999-06-154-86/+0
|
* MFS: No longer needed in PicoBSD 0.44roger1999-06-1518-8261/+0
|
* Add VIA Apollo Master VT82c570 chipset. (I have 2 of these)roger1999-06-151-12/+8
| | | | Also, Apollo IDE controller has device ID of 1571 and 0571
* MFS: No longer needed in PicoBSD 0.44roger1999-06-153-216/+0
|
* MFS: No longer needed in PicoBSD 0.44roger1999-06-1571-19007/+0
|
* Ensoniq AudioPCI sound cards haven't worked since the newbus integrationnewton1999-06-151-2/+2
| | | | | | because they haven't been able to attach. Now fixed. Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* Add the System V message queue and semaphore options for better 3rd partyjb1999-06-142-6/+10
| | | | software support out-of-the-box (like i386 does).
* Support Alpha and -CURRENT in the "-r" option case.obrien1999-06-141-9/+17
|
* Include <sys/time.h> for correctness. BDE has a better version of this,nik1999-06-141-1/+2
| | | | | | | | | | but it's more complex, and in his words Commit your version, since it is the only one that is clearly permitted (if not best), and I'll untangle it later. PR: docs/11589 Reviewed by: Bruce "he kicks ass" Evans
* It was possible to circumvent telnet's security ``-E'' (no escape at all)ru1999-06-141-1/+1
| | | | | | | option by running it with ``-8 -E'' and passing it 0xff character. PR: 6317 Reviewed by: des, David Borman <dab@bsdi.com> (the author)
OpenPOWER on IntegriCloud