summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix some spelling errors.mpp1996-01-291-5/+5
|
* Add the -u flag to the cpio's used to install the initial files, justjoerg1996-01-293-12/+12
| | | | | to make sure they will be overwritten even in cases where the've bogusly got more recent timestamps.
* Getpwent() and getservent() can wind up calling free() withmpp1996-01-292-2/+0
| | | | | an invalid pointer if a call to yp_first() fails. Closes PR # 964, and possibly # 952.
* Remove redundant declaration for worminit(). Dunno why my config(8)joerg1996-01-291-2/+1
| | | | didn't generate it, but it's supposed to.
* Minor tweak to allow the mbone mapper to work again on hosts which arepeter1996-01-291-2/+2
| | | | | | themselves acting as multicast routers. Reviewed by: Bill Fenner (quite some time ago)
* Don't install sendmail setgid kmem since it doesn't reallympp1996-01-291-2/+1
| | | | | | require kmem access. It is currently configured to call getloadavg(3), which uses sysctl(2) to determine the load average, which is the only reason some sendmails require kmem access.
* Add missing cat9ache1996-01-291-1/+5
|
* Added a check/panic for vm_map_find failing to find space for the pagedg1996-01-291-5/+7
| | | | tables/u-pages when forking. This is a "can't happen" case. :-)
* Implement what I mentioned in rev 1.18: limit per-bucket allocations todg1996-01-291-3/+7
| | | | 60% of physical memory or 60% of malloc area size, whichever is smaller.
* Fixed two bugs in the calculation of the malloc area (kmem_map) size:dg1996-01-291-7/+9
| | | | | | | | | | | 1) The calculation didn't account for NMBCLUSTERS, so if a large number of clusters was specified, it would leave little or no space for kernel malloc. 2) It was bogusly restricted to v_page_count. This doesn't take into account the sparseness of the malloc area and would have caused problems on machines with small amounts of memory. It should probably instead be changed to set the malloc limit to be constrained by the amount of memory, but I didn't do this.
* Add an option to start mrouted. Off by defaultgpalmer1996-01-292-2/+11
|
* Add LIST_INSERT_BEFORE and TAILQ_INSERT_BEFORE.gibbs1996-01-291-10/+78
| | | | | Change examples to actually free() the nodes removed from lists. Give examples of faster list deletion routines.
* Add LIST_INSERT_BEFORE and TAILQ_INSERT_BEFORE. These are used by thegibbs1996-01-292-3/+17
| | | | new eisaconf code.
* Prevent media eject on first open and re-enable ejection on last close.gibbs1996-01-291-3/+6
| | | | | The previous behavior was based on the lifetime of a "mount session" which isn't very obvious.
* Update copyright.gibbs1996-01-291-2/+2
|
* Kernel printf now returns int.gibbs1996-01-291-3/+5
|
* Changes to support Performance enhancements in the sequencer.gibbs1996-01-292-135/+175
| | | | | Bring back the polling code (for dumps mostly), but protect it with splbio() to make it safe for reprobes.
* Finally commit Serge's multicast and "misc other changes" patch. Igibbs1996-01-294-86/+168
| | | | | | don't have a network to test it on here, but it does probe my card okay. Submitted by: "Serge A. Babkin" <babkin@hq.icb.chel.su>
* Another pass through eisaconf. Ioaddrs and Maddrs are link lists now.gibbs1996-01-297-252/+846
| | | | | | The Bt driver is the only one that actually registers multiple addresses. Probe output is formatted to 80 columns.
* Performance optimizations. Unroll all bcopies. Use PIO to transfer SCBsgibbs1996-01-292-194/+138
| | | | | | | since setting up the DMA is too costly. Restructure for efficiency. Pause the sequencer when a parity error occurs so that the kernel driver knows during which phase the error was encountered.
* Whoops! Include paths.h instead of sys/cdefs.h - that results injkh1996-01-291-1/+1
| | | | | | PATH_VARTMP having a somewhat saner value. Submitted by: matthew green <mrg@eterna.com.au> By way of: Eric Allman <eric@sendmail.org>
* Fixed an uninitialized variable (argument to vm_map_find) -- problemdyson1996-01-291-5/+8
| | | | | that DG detected, and promptly found a fix. Submitted by: davidg
* german calendawosch1996-01-2914-0/+690
|
* include preprocessor commands likewosch1996-01-2911-0/+132
| | | | | | | #ifndef _calendar_christian_ #define _calendar_christian_ [...] #endif
* install new calendars/de_DE.ISO8859-1/calendar.* fileswosch1996-01-291-2/+13
|
* Section SEE ALSO completewosch1996-01-291-0/+7
|
* Section FILES and SEE ALSO completewosch1996-01-292-2/+25
|
* Section FILES and SEE ALSO completedwosch1996-01-281-1/+18
| | | | Section FILES and SEE ALSO completed
* Section FILES and SEE ALSO completedwosch1996-01-281-1/+13
|
* A manpage. May be the file nologin.5 should located inwosch1996-01-284-0/+126
| | | | src/share/man/man5.
* Read from standard input if file name "-" is given.wosch1996-01-282-2/+10
|
* Added sys_pipe into files.dyson1996-01-281-0/+1
|
* Enable the new fast pipe code. The old pipes can be used with thedyson1996-01-283-4/+16
| | | | "OLD_PIPE" config option.
* Added new files to support the new fast pipes. After the follow-ondyson1996-01-282-0/+646
| | | | | commits, pipe performance should increase significantly. The pipe(2) system call is currently supported, while fifofs will be added later.
* Make worm.c compile with -Wall -Werror again.joerg1996-01-281-7/+7
| | | | | | . remove some unused variables . declare worminit() right this time, it's actually extern (?) . use wormminphys(), now that it's already there (hope i've got this right)
* Submitted by: rich (which one?)julian1996-01-281-1/+5
| | | | | | Another special case for probing multi-CD cdrom drives. 2nd try at this patch.
* Implement a prototype interface to bus-master IDE DMA on the Tritonwollman1996-01-287-9/+446
| | | | | | | | chipset. This does not attempt to do anything special with the timing on the hope that the BIOS will have done the right thing already. The actual interface from the wd driver to the new facility is not implemented yet (this commit being an attempt at prodding someone else to do it because looking at the wd driver always confuses the h*** out of me).
* Back out the previous change. It's not correct for -current.jkh1996-01-281-8/+0
|
* Add an entry for the "MBR-7", whatever that is.jkh1996-01-281-1/+9
| | | | Submitted by: rich
* Man page for the vx driver.jkh1996-01-281-0/+85
| | | | Submitted by: Frederick Earl Gray <fgray@owlnet.rice.edu>
* 3c590 driver for FreeBSDjkh1996-01-282-6/+12
| | | | Submitted by: Frederick Earl Gray <fgray@owlnet.rice.edu>
* Use umask disk_umask=037 for all (writable) disks. Use umaskbde1996-01-282-56/+44
| | | | | | | | | | | | | | | | | | tape_umask=017 for all tapes. This has a significant effect only for ft and st (they were created with the wrong umask 002 and then chmod'ed to mode 640; now they are created with mode 660). Chmod the st control devices (mode 3) to 600. These need to be more secure than the st i/o devices, but were less secure. Use the default umask of 077 for joy0. 002 gave mode 664, which is insecure. Use umask 037 for ch*. Cosmetic. Removed redundant chmod's. Sorted case lists for disks.
* An earlier modification had decreased CPU usage, but alsodyson1996-01-281-4/+4
| | | | decreased performance. This essentially undoes that change.
* Formatting tweak.jfieber1996-01-281-2/+2
|
* Add info about distinguishing freebsd versions.jfieber1996-01-281-4/+26
| | | | Submitted by: obrien@cs.ucdavis.edu
* make devfs_add_devswf a little smarter about '/';phk1996-01-281-5/+9
|
* Fix DEVFS, remove unused vars.phk1996-01-282-19/+10
|
* Minor but fatal spelling error when merging my code into -current.joerg1996-01-281-3/+5
| | | | | | Also declared worminit() to avoid a compiler warning. Seems that the other SCSI drivers don't declare XXinit() yet, so perhaps we'd also create a typedef for these func's.
* Fixed dangling pointer bugs in DIOCSDINFO.bde1996-01-281-7/+7
| | | | | Enabled DEVFS support. It doesn't work while devfs is mounted (add_devfs_devsw() doesn't work then), but seems to be safe.
* Add (at long last) an option to say if you want to run the printergpalmer1996-01-282-3/+9
| | | | daemon (lpd) or not. Set to run it by default.
OpenPOWER on IntegriCloud