summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make everything work with new bsd.doc.mk and without symlinks in thewollman1995-01-1117-34/+484
| | | | | source tree. Eliminate papers which require -me macros, 'cos they currently don't work with groff.
* Changes to make /usr/share/doc work somewhat right. (SMM commitswollman1995-01-111-3/+38
| | | | to follow soon.)
* Add better argument handlingache1995-01-101-3/+41
| | | | Submitted by: jmz
* send-pr/doc addedache1995-01-101-2/+2
|
* Add info installationache1995-01-107-0/+1874
|
* Speed kvm_mkdb up by a factor 5 or thereabout. Rewrote all the fseek/freadphk1995-01-102-77/+48
| | | | | | nonsense to use a mmap'ed file instead and told the DB/hash what we are up to. dev_mkdb could maybe benefit from the same treatment.
* Updates from jmz and meache1995-01-103-7/+109
|
* From our favorite Perl script writer: a new makewhatis, aboutjoerg1995-01-102-16/+3
| | | | | | 15 times faster than the existing sh script. Submitted by: Wolfram Schneider <wosch@cs.tu-berlin.de>
* Fix conversion to/from nfs v2 time in handling microseconds.dg1995-01-101-3/+9
| | | | Submitted by: rick@snowhite.cis.uoguelph.ca
* Added two missing brelse() calls.dg1995-01-102-2/+10
| | | | Submitted by: rick@snowhite.cis.uoguelph.ca
* As long as I can't figure out why this doesn't work, I might as welljkh1995-01-102-2/+14
| | | | add some error checking to it and clean this up a bit.
* Catch case where extraction fails. Thanks!jkh1995-01-101-3/+7
|
* Latest changes from vak.jkh1995-01-101-2/+0
| | | | Submitted by: vak
* Latest update from Serge Vakulenko <vak@cronyx.ru>jkh1995-01-101-670/+635
| | | | Submitted by: vak
* PG_FAKE is no longer used - so don't bother to clear it.dg1995-01-101-2/+1
|
* Kill VM_PAGE_INIT macro as it is only used once and makes the code moredg1995-01-102-22/+15
| | | | difficult to understand. Got rid of unused vm_page flags.
* Fixed some formatting weirdness that I overlooked in the previous commit.dg1995-01-1014-77/+77
|
* Added 'pages in VM cache' statistic.dg1995-01-101-0/+1
|
* Place the cursor better on buttons.paul1995-01-101-1/+1
| | | | Stop field display attributes getting clobbered.
* New forms library. This provides some basic functions for writingpaul1995-01-106-369/+622
| | | | | | | | | | | | | | | | | | | | | input forms. It has the following simple fields: Text fields: Just titles, labels etc. Input fields: An editable text field that may or may not have an initial default value. Labelled input field: This is an input field that has an initial informative entry in it but it vanishes when you start editing the field. Toggle fields: These are fields with a pre-defined list of options which you cycle through using the space bar. Action fields: These are button type fields that call functions when they are selected. A simple demo is included in examples.
* Always build libkern_p.a. `NOPROFILE' should only control user libraries.bde1995-01-101-1/+3
|
* Remove excessive argc checking. It was impossible to set `dtrwait' andbde1995-01-102-2/+4
| | | | and `drainwait' in a single command.
* Fix a bug with handling backslash escapes inside some quotes.paul1995-01-091-2/+2
| | | | Should solve our problems with edit-pr.
* fix for: kern/97: wt DELAY patchjoerg1995-01-091-1/+2
| | | | | | | | | | | Wangtek PC-02 QIC-02 controller with Cipher 150MB tape drive Any attemp to open /dev/rwt0 hangs. The following patch to /sys/i386/isa/wt.c is derived from Mikael Hybsch's wt driver. Submitted by: Terry Lee <terry@uivlsi.csl.uiuc.edu>
* I think someone has already talk about it but I just got bitten again :joerg1995-01-091-4/+4
| | | | | | | | | | | | perl setuid scripts don't work in 2.1-current for the same reason they were not working in 1.1.5.1. Perl 5 has the same "problem" of course. We have almost POSIX saved uids but we must undefine the following symbols in order to get setuid perl scripts : Submitted by: roberto@blaise.ibp.fr (Ollivier Robert)
* These changes embody the support of the fully coherent merged VM buffer cache,dg1995-01-0990-6367/+7296
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | much higher filesystem I/O performance, and much better paging performance. It represents the culmination of over 6 months of R&D. The majority of the merged VM/cache work is by John Dyson. The following highlights the most significant changes. Additionally, there are (mostly minor) changes to the various filesystem modules (nfs, msdosfs, etc) to support the new VM/buffer scheme. vfs_bio.c: Significant rewrite of most of vfs_bio to support the merged VM buffer cache scheme. The scheme is almost fully compatible with the old filesystem interface. Significant improvement in the number of opportunities for write clustering. vfs_cluster.c, vfs_subr.c Upgrade and performance enhancements in vfs layer code to support merged VM/buffer cache. Fixup of vfs_cluster to eliminate the bogus pagemove stuff. vm_object.c: Yet more improvements in the collapse code. Elimination of some windows that can cause list corruption. vm_pageout.c: Fixed it, it really works better now. Somehow in 2.0, some "enhancements" broke the code. This code has been reworked from the ground-up. vm_fault.c, vm_page.c, pmap.c, vm_object.c Support for small-block filesystems with merged VM/buffer cache scheme. pmap.c vm_map.c Dynamic kernel VM size, now we dont have to pre-allocate excessive numbers of kernel PTs. vm_glue.c Much simpler and more effective swapping code. No more gratuitous swapping. proc.h Fixed the problem that the p_lock flag was not being cleared on a fork. swap_pager.c, vnode_pager.c Removal of old vfs_bio cruft to support the past pseudo-coherency. Now the code doesn't need it anymore. machdep.c Changes to better support the parameter values for the merged VM/buffer cache scheme. machdep.c, kern_exec.c, vm_glue.c Implemented a seperate submap for temporary exec string space and another one to contain process upages. This eliminates all map fragmentation problems that previously existed. ffs_inode.c, ufs_inode.c, ufs_readwrite.c Changes for merged VM/buffer cache. Add "bypass" support for sneaking in on busy buffers. Submitted by: John Dyson and David Greenman
* Fix botched URL for Thailand.jkh1995-01-091-2/+2
|
* Fix a messed-up URL.jkh1995-01-091-2/+2
|
* Add a MIN macro.jkh1995-01-091-0/+2
|
* Correct some of the english.jkh1995-01-091-12/+12
|
* Wolfram Schneider <wosch@cs.tu-berlin.de>:jkh1995-01-092-123/+680
| | | | | | | o manpage o save configuration in /etc/adduser.conf o send message file (/etc/adduser.message) Submitted by: woschcs.tu-berlin.de
* cdev #50 -> pcmciaphk1995-01-091-1/+5
|
* Fixed two bugs: some malloced space wasn't freed after it was no longerdg1995-01-092-2/+8
| | | | | | | needed and the file wasn't closed when the -t option was used. Originally by thomas@mathematik.uni-Bremen.de, but were incomplete. Submitted by: thomas@mathematik.uni-Bremen.de and myself
* Old fix from Robert Crowe <bob@speakez.com> that has been sitting indg1995-01-091-1/+3
| | | | | | | | my mailbox since early last year. Fixes a problem with running out of fds (by hitting the limit or whatever) when ar is given a long list of objects. The fix was to add a missing close(). Submitted by: Robert Crowe <bob@speakez.com>
* Added a ports category to the list.paul1995-01-081-0/+1
|
* Use the "-F" option to /bin/pr now that we have it (thanks to Posix).joerg1995-01-082-4/+6
| | | | | | This helps for printers that tend to get out of sync. (For the cautious folks: we used to have it in 1.1.5, too. But GNU pr used "-f" for it.)
* Ensured all files have copyright and RCS ID variable.dufault1995-01-082-0/+41
|
* Submitted by: Gerd Truschinskiats1995-01-081-2/+2
| | | | | Removed one semicolon, two are one to much :-). Found by the hc860 compiler and Gerd Truschinski 8-).
* Added ssc devicedufault1995-01-081-0/+1
|
* Added residual length for 1542C onlydufault1995-01-081-8/+61
|
* added ssc devicedufault1995-01-081-7/+39
|
* Added "change address" ioctl for ssc device.dufault1995-01-081-1/+2
|
* Reviewed by: gibbs@estienne.CS.Berkeley.EDUdufault1995-01-0813-197/+921
| | | | | | | Reenabled "SCIOCOMAND" ioctl. Restructured so low level drivers can easily request retries. Added preliminary fixed SCSI devices (should be revisited before 2.1) Added "ssc" device that can have its' (HBA, ID, LUN) set via ioctl.
* Add ftp.dataplex.net to USA mirrors.jkh1995-01-081-1/+4
|
* Restored Herb's current copyright. The one in the file appeared to havedg1995-01-082-488/+56
| | | | | been run through indent and additionally doesn't contain clauses 3 and 4 that were apparantly added sometime after the driver was put into FreeBSD.
* Submitted by: Steve Gerakinesats1995-01-071-8/+3
| | | | | Delete some parts of the ultra 24F tests for the controller, so that it now accepts a broader range.
* Fix indenting of gsc entry, reserve 48 for cyclades.jkh1995-01-071-3/+7
|
* Add Korea mirrorjkh1995-01-071-1/+3
|
* Add Korean site to mirror lists.jkh1995-01-071-1/+4
|
* Work around a compiler bug in gcc2.6.3 in handling (long long) variables andats1995-01-075-15/+120
| | | | | | | shifting. Also correct the original code as Garrett noticed it in mail. Leave the mishandled code in to use it later if future versions of gcc are correct. The code was part of the calibrate_cyclecounter routine to get the speed of the pentium chip.
OpenPOWER on IntegriCloud