aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix a bunch of spelling errors in the comment fields ofMike Pritchard1996-01-30145-394/+400
| | | | | | | a bunch of system include files. Notes: svn path=/head/; revision=13765
* Prepare for adding mirroring. Check for flags (mirror forces uniform),Satoshi Asami1996-01-302-12/+50
| | | | | | | | reduce the size to half, etc. Right now it only uses the first n/2 disks for both read and write. Notes: svn path=/head/; revision=13764
* Add mirror flag.Satoshi Asami1996-01-301-3/+4
| | | | Notes: svn path=/head/; revision=13763
* Add mirror and parity flags to list of symbolic names.Satoshi Asami1996-01-301-1/+3
| | | | Notes: svn path=/head/; revision=13762
* Use libmd's MD5.Poul-Henning Kamp1996-01-307-389/+15
| | | | | | | | inline hdlc checksum calculation. make big tables const. Notes: svn path=/head/; revision=13760
* Fix a logic error in determining whether something is page-alignedGarrett Wollman1996-01-301-2/+2
| | | | | | | | that became evident while I was thinking about something else. (No, I am not working on the wd driver itself.) Notes: svn path=/head/; revision=13759
* No longer use the cyclecounter to attempt to correct for late or missedGarrett Wollman1996-01-307-17/+22
| | | | | | | | | | | clock interrupts. Keep a 1-in-16 smoothed average of the length of each tick. If the CPU speed is correctly diagnosed, this should give experienced users enough information to figure out a more suitable value for `tick'. Notes: svn path=/head/; revision=13758
* Add rdisc to subdirs.. It works for me. :-) (Thanks Bill!)Peter Wemm1996-01-301-1/+1
| | | | Notes: svn path=/head/; revision=13757
* de_DE.ISO8859-1 -> de_DE.ISO_8859-1 after repository operation onPeter Wemm1996-01-301-1/+1
| | | | | | | Andrey's request. Notes: svn path=/head/; revision=13756
* Another round of spelling fixes.Mike Pritchard1996-01-308-22/+22
| | | | Notes: svn path=/head/; revision=13754
* Add missing comma in usage printfAndrey A. Chernov1996-01-301-1/+1
| | | | Notes: svn path=/head/; revision=13753
* OOPS, forget to adjust starting track to not physically readAndrey A. Chernov1996-01-301-8/+9
| | | | | | | leadout entry Notes: svn path=/head/; revision=13751
* Fix even more spelling errors in some more man pages.Mike Pritchard1996-01-3028-55/+55
| | | | Notes: svn path=/head/; revision=13750
* Use ntohs/ntohl when reading TOC instead of hardcoded byte swapping.Andrey A. Chernov1996-01-301-9/+37
| | | | | | | Put fake entry len for MSF format too. Notes: svn path=/head/; revision=13749
* Calculate leadout entry instead of honor ATAPI requestAndrey A. Chernov1996-01-301-8/+8
| | | | | | | (it can be wrong for some devices) Notes: svn path=/head/; revision=13748
* Don't replace leadout entry with 255Andrey A. Chernov1996-01-301-1/+0
| | | | Notes: svn path=/head/; revision=13747
* READTOCENTRYS: make fake leadout entryAndrey A. Chernov1996-01-301-3/+26
| | | | Notes: svn path=/head/; revision=13746
* Fix a bunch of spelling errors in a bunch of man pages.Mike Pritchard1996-01-3077-227/+227
| | | | Notes: svn path=/head/; revision=13744
* READTOCENTRYS: protect against stack overflow when incorrect dataAndrey A. Chernov1996-01-303-17/+30
| | | | | | | stored in CD's TOC Notes: svn path=/head/; revision=13743
* READTOCENTRYS: handle 0 and lead out requests, add argument checkingAndrey A. Chernov1996-01-301-11/+34
| | | | Notes: svn path=/head/; revision=13742
* savectx() strikes again: the saved stack pointer wasn't properly adjustedDavid Greenman1996-01-305-31/+18
| | | | | | | | to remove the return address. It's only the frame pointer and luck that allowed the code to work at all. Notes: svn path=/head/; revision=13740
* Call pipe_stat() when presented with a DTYPE_PIPE file in the linuxPeter Wemm1996-01-302-2/+10
| | | | | | | | | | fstat() syscall, rather than panic("linux newfstat"). (Note: I've extracted this from a larger set of diffs, I'm confident I've not missed any dependencies but can't modload it to test it on my system) Notes: svn path=/head/; revision=13739
* Don't generate EINVAL for data_len too big in READTOCENTRYS, itAndrey A. Chernov1996-01-303-10/+7
| | | | | | | reduces automatically to reasonable value in the code below Notes: svn path=/head/; revision=13738
* Use starting track 0 for READTOCENTRYS, should be convertedAndrey A. Chernov1996-01-301-1/+1
| | | | | | | | to real starting track in CD driver. Old code assume that starting track is always 1. Notes: svn path=/head/; revision=13737
* Use 0 as starting track number for READTOCENTRYS,Andrey A. Chernov1996-01-301-2/+2
| | | | | | | | should be converted to real starting track into CD driver. Old variant assume that starting track is always 1. Notes: svn path=/head/; revision=13735
* Fix READTOCENTRYS partialy based on kientzle@netcom.com patch partialy onAndrey A. Chernov1996-01-301-15/+24
| | | | | | | my own ideas Notes: svn path=/head/; revision=13734
* Some patches to ppp which improve stability. I have been running aDoug Rabson1996-01-3012-72/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ppp based on these patches for about 3 weeks with no downtime. The original submitters comments: Two features iijppp has over kernel ppp that I like are predictor1 compression and demand dialing. Here are a few bug fixes. I expanded the priority queueing scheme and discovered it was broken due to the assignment at ip.c line 300. All packets were being queued at the same priority. Fixing priority queueing broke predictor1 compression. Packets were compressed before being queued and predictor1 worked as long as the packets were popped off the queue in the same order they were pushed onto the queue. There were a few byte order problems in IP header tests also. There is a recursion problem in SendLqrReport(). LcpClose() is called when "Too many echo packets are lost" which winds up in SendLqrReport() again. I believe the original intention was to just stop the LQR timer with the call to StopLqr() but the side effects hurt. Submitted by: John Capo <jc@irbs.com> Notes: svn path=/head/; revision=13733
* Fix audio part, especially READTOCENTRYS inspired by NetBSD driverAndrey A. Chernov1996-01-304-96/+116
| | | | | | | and my own ideas Notes: svn path=/head/; revision=13732
* Increase tmpstk size to 8K and make certain it is longword aligned.David Greenman1996-01-303-6/+9
| | | | Notes: svn path=/head/; revision=13729
* Restore my change to the watchdog params that Paul spammed in rev 1.18.David Greenman1996-01-302-12/+10
| | | | Notes: svn path=/head/; revision=13728
* Back out the thread_init code in order to allow -current to bootstrapNate Williams1996-01-301-8/+0
| | | | | | | | | from -stable, until a better solution is found. Submitted by: Consensus of mailing list and the almighty Jordan :) Notes: svn path=/head/; revision=13727
* Added 'install' to the inclde-tools target, as it has a new options "-C"Nate Williams1996-01-301-1/+3
| | | | | | | | | which is used when installing the include files. Submitted by: John Hay -- John.Hay@csir.co.za Notes: svn path=/head/; revision=13726
* Kludge alert!Nate Williams1996-01-301-4/+10
| | | | | | | | Add new 'include-tools' target, which the 'includes' target depends on. Currently, it consists of rpcgen. Notes: svn path=/head/; revision=13725
* Fix a typo in a comment.Mike Pritchard1996-01-301-2/+2
| | | | Notes: svn path=/head/; revision=13724
* Attempt to figure out the size of the device/file we are about toJoerg Wunsch1996-01-302-13/+90
| | | | | | | | format. A bit tricky, but i believe this to work for 98 % of the cases. Notes: svn path=/head/; revision=13723
* ccdcontrol -> ccdconfig.Satoshi Asami1996-01-301-3/+3
| | | | Notes: svn path=/head/; revision=13722
* Add heuristic to detect multi-function devices that don't announce thisStefan Eßer1996-01-302-68/+158
| | | | | | | | | feature in the header type register, though it is required by the PCI spec. This should correctly probe both functions of the Intel 82371FB chip, without the need for a special case based on the device ID. Notes: svn path=/head/; revision=13721
* Fix a bunch of spelling errors.Mike Pritchard1996-01-2914-32/+32
| | | | Notes: svn path=/head/; revision=13720
* Fix some spelling errors.Mike Pritchard1996-01-291-5/+5
| | | | Notes: svn path=/head/; revision=13719
* Add the -u flag to the cpio's used to install the initial files, justJoerg Wunsch1996-01-293-12/+12
| | | | | | | | to make sure they will be overwritten even in cases where the've bogusly got more recent timestamps. Notes: svn path=/head/; revision=13718
* Getpwent() and getservent() can wind up calling free() withMike Pritchard1996-01-292-2/+0
| | | | | | | | an invalid pointer if a call to yp_first() fails. Closes PR # 964, and possibly # 952. Notes: svn path=/head/; revision=13717
* Remove redundant declaration for worminit(). Dunno why my config(8)Joerg Wunsch1996-01-291-2/+1
| | | | | | | didn't generate it, but it's supposed to. Notes: svn path=/head/; revision=13716
* Minor tweak to allow the mbone mapper to work again on hosts which arePeter Wemm1996-01-291-2/+2
| | | | | | | | | themselves acting as multicast routers. Reviewed by: Bill Fenner (quite some time ago) Notes: svn path=/head/; revision=13715
* Don't install sendmail setgid kmem since it doesn't reallyMike Pritchard1996-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. Notes: svn path=/head/; revision=13713
* Add missing cat9Andrey A. Chernov1996-01-291-1/+5
| | | | Notes: svn path=/head/; revision=13709
* Added a check/panic for vm_map_find failing to find space for the pageDavid Greenman1996-01-291-5/+7
| | | | | | | tables/u-pages when forking. This is a "can't happen" case. :-) Notes: svn path=/head/; revision=13705
* Implement what I mentioned in rev 1.18: limit per-bucket allocations toDavid Greenman1996-01-291-3/+7
| | | | | | | 60% of physical memory or 60% of malloc area size, whichever is smaller. Notes: svn path=/head/; revision=13703
* Fixed two bugs in the calculation of the malloc area (kmem_map) size:David Greenman1996-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. Notes: svn path=/head/; revision=13702
* Add an option to start mrouted. Off by defaultGary Palmer1996-01-292-2/+11
| | | | Notes: svn path=/head/; revision=13701
* Add LIST_INSERT_BEFORE and TAILQ_INSERT_BEFORE.Justin T. Gibbs1996-01-291-10/+78
| | | | | | | | Change examples to actually free() the nodes removed from lists. Give examples of faster list deletion routines. Notes: svn path=/head/; revision=13698