summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Don't try to include opt_ipfw.h in LKMsGary Palmer1996-06-131-1/+3
| | | | | | | Submitted by: Ollivier Robert <roberto@keltia.freenix.fr> Notes: svn path=/head/; revision=16349
* Uh, this is what I was really thinking when I made the device registrationJordan K. Hubbard1996-06-138-109/+157
| | | | | | | changes - honest! :-) Notes: svn path=/head/; revision=16348
* Correct some embarassing 3am english.Jordan K. Hubbard1996-06-132-20/+20
| | | | Notes: svn path=/head/; revision=16347
* Ok, NOW the install.sh scripts are installed correctly!Jordan K. Hubbard1996-06-131-2/+4
| | | | Notes: svn path=/head/; revision=16346
* Change Mr. Aburaya's name per his request. ;)Satoshi Asami1996-06-131-2/+2
| | | | Notes: svn path=/head/; revision=16345
* A fast memory copy for Pentiums using floating point registers.Satoshi Asami1996-06-136-6/+600
| | | | | | | | | | | | | | | | | | | | | It is called from copyin and copyout. The new routine is conditioned on I586_CPU and I586_FAST_BCOPY, so you need options "I586_FAST_BCOPY" (quotes essenstial) in your kernel config file. Also, if you have other kernel types configured in your kernel, an additional check to make sure it is running on a Pentium is inserted. (It is not clear why it doesn't help on P6s, it may be just that the Orion chipset doesn't prefetch as efficiently as Tritons and friends.) Bruce can now hack this away. :) Notes: svn path=/head/; revision=16344
* Add "MASTER_SITES?=" (no this is not a typo) right before theSatoshi Asami1996-06-131-1/+2
| | | | | | | | | "MASTER_SITES:= ..." of defined(MASTER_SITE_OVERRIDE) case, otherwise it would cause a recursive variable definition error when MASTER_SITE_OVERRIDE is set and MASTER_SITES is not set. Notes: svn path=/head/; revision=16342
* Keep ether_type in network order for BPF to be consistent with otherDavid Greenman1996-06-132-12/+11
| | | | | | | | | | systems. Submitted by: Ted Lemon, Matt Thomas, and others. Retrofitted for -current by me. Notes: svn path=/head/; revision=16341
* Correct a small typo in the Makefile.Jordan K. Hubbard1996-06-131-2/+2
| | | | Notes: svn path=/head/; revision=16340
* Indicate that assert exits with abort(3) instead of _exit(2). ClosesAlexander Langer1996-06-121-1/+1
| | | | | | | | | | PR 1317. Reviewed by: alex Submitted by: Cove Schneider <cove@brazil.nbn.com> Notes: svn path=/head/; revision=16339
* Code cleanup:-James Raynard1996-06-122-2/+3
| | | | | | | | The usual stuff, adding missing function prototypes, argument types, return values, etc. Notes: svn path=/head/; revision=16338
* Code cleanup:-James Raynard1996-06-126-13/+13
| | | | | | | | | | The usual stuff, adding missing function prototypes, argument types, return values, etc. This directory now compiles with no warnings with -Wall on gcc2.6.3! Notes: svn path=/head/; revision=16337
* Code cleanup:-James Raynard1996-06-127-12/+11
| | | | | | | | | The usual stuff, adding missing function prototypes, argument types, return values, etc. In mktemp.c, convert pid from u_int to pid_t, and get rid of "extern int errno". Notes: svn path=/head/; revision=16336
* Code cleanup:-James Raynard1996-06-125-5/+5
| | | | | | | | The usual stuff, adding missing function prototypes, argument types, return values, etc. Notes: svn path=/head/; revision=16335
* Only print out the new masks if bootverbose is set.Nate Williams1996-06-121-2/+4
| | | | Notes: svn path=/head/; revision=16334
* Convert ipfw to use opt_ipfw.hGary Palmer1996-06-123-4/+11
| | | | Notes: svn path=/head/; revision=16333
* Since the updates to ifnet.if_lastchange are so rare (relativelyGary Palmer1996-06-125-17/+17
| | | | | | | | | | speaking), go for the extra accuracy and call microtime() to get the current time. Pointed Out By: bde Notes: svn path=/head/; revision=16332
* Fix broken sysinstall check.Jordan K. Hubbard1996-06-121-2/+7
| | | | Notes: svn path=/head/; revision=16331
* Dispense with the special case handling of cuaa* devices by synthesizingJordan K. Hubbard1996-06-1210-171/+195
| | | | | | | separate entries for sl0 and ppp0 on each device. Notes: svn path=/head/; revision=16330
* Automatically add install.sh scripts to dists.Jordan K. Hubbard1996-06-122-1/+10
| | | | Notes: svn path=/head/; revision=16329
* Externalize the declaration of dc_list. This is required in order toJoerg Wunsch1996-06-123-5/+6
| | | | | | | get a ``generic'' kernel (``config kernel swap generic'') to compile. Notes: svn path=/head/; revision=16328
* Some stuff I left out of the last commit - make toggle options toggleJordan K. Hubbard1996-06-129-66/+162
| | | | | | | again instead of simply letting you set them and staying that way forever. Notes: svn path=/head/; revision=16327
* Fix a truly stupid bug which broke the package installation menuJordan K. Hubbard1996-06-1216-33/+183
| | | | | | | | for everything _but_ the multi-user case now (it was the opposite before :-). That means adding packages with the 2.2-960511-SNAP boot floppy is busted. Feh. Notes: svn path=/head/; revision=16326
* handle a message box which can potentially go past 80 cols.Jordan K. Hubbard1996-06-122-4/+4
| | | | Notes: svn path=/head/; revision=16325
* Fix a very significant cnt.v_wire_count leak in vm_page.c, and someJohn Dyson1996-06-123-9/+14
| | | | | | | minor leaks in pmap.c. Bruce Evans made me aware of this problem. Notes: svn path=/head/; revision=16324
* Add -Wunused to try and catch any future offendersGary Palmer1996-06-123-6/+6
| | | | | | | Reviewed by: bde Notes: svn path=/head/; revision=16323
* Clean up -Wunused warnings.Gary Palmer1996-06-12103-412/+299
| | | | | | | Reviewed by: bde Notes: svn path=/head/; revision=16322
* Clean up -Wunused warnings. Julian asked me to just ifdefGary Palmer1996-06-123-47/+29
| | | | | | | | | out unused code as this is still work in progress. Reviewed by: bde Notes: svn path=/head/; revision=16321
* Clean up -Wunused warnings. Also clean up a -Winline warning while here.Gary Palmer1996-06-121-40/+41
| | | | | | | Reviewed by: bde Notes: svn path=/head/; revision=16320
* Clean up -Wunused warnings.Gary Palmer1996-06-122-18/+14
| | | | | | | Reviewed by: Greg Ungerer <gerg@stallion.oz.au> Notes: svn path=/head/; revision=16319
* Fix some serious errors in vm_map_simplify_entries.John Dyson1996-06-121-6/+7
| | | | Notes: svn path=/head/; revision=16318
* Add ccd.Satoshi Asami1996-06-122-4/+4
| | | | Notes: svn path=/head/; revision=16317
* A Makefile for a ccd lkm. You need to explicitly /sbin/modload it forSatoshi Asami1996-06-122-0/+34
| | | | | | | now. Someday I'll add a hook to ccdconfig to do it automatically. Notes: svn path=/cvs2svn/branches/ERICH/; revision=16314
* Moved the fsnode MALLOC to before the call to getnewvnode() so that theDavid Greenman1996-06-1220-80/+223
| | | | | | | | | | | process won't possibly block before filling in the fsnode pointer (v_data) which might be dereferenced during a sync since the vnode is put on the mnt_vnodelist by getnewvnode. Pointed out by Matt Day <mday@artisoft.com> Notes: svn path=/head/; revision=16312
* Moved the fsnode MALLOC to before the call to getnewvnode() so that theDavid Greenman1996-06-122-8/+22
| | | | | | | | | process won't possibly block before filling in the fsnode pointer (v_data) which might be dereferenced during a sync since the vnode is put on the mnt_vnodelist by getnewvnode. Notes: svn path=/head/; revision=16311
* Fixed GET/SETIPDOMAIN ioctl on /dev/socksys, which is used by variousNate Williams1996-06-121-2/+90
| | | | | | | | | other socket functions (gethostname() for one). Reviewed by: sef Notes: svn path=/head/; revision=16310
* Properly lock the vm space when accessing the memory in a process. ThisJohn Dyson1996-06-112-4/+28
| | | | | | | | fix could solve some "interesting" problems that could happen during process rundown. Notes: svn path=/head/; revision=16308
* Change the symbol name used in the last commit from USRSTACK toJohn Dyson1996-06-111-1/+1
| | | | | | | | VM_MAXUSER_ADDRESS. Even though they are the same, the new name is more descriptive. Notes: svn path=/head/; revision=16307
* Fix a couple of minor typos. Closes PR 1309.Alexander Langer1996-06-111-3/+3
| | | | | | | | Reviewed by: alex Submitted by: jraynard Notes: svn path=/head/; revision=16306
* Get rid of the unneeded upper address space.John Dyson1996-06-111-2/+2
| | | | Notes: svn path=/head/; revision=16305
* Submitted by: richRich Murphey1996-06-111-1/+21
| | | | | | | Added my PGP key to the handbook. Notes: svn path=/head/; revision=16303
* Code cleanup:James Raynard1996-06-113-9/+9
| | | | | | | | | | | Fixed a couple of nitpick warnings, plus one that slipped through the net earlier. This directory now compiles without any warnings with -Wall! (Until the next gcc upgrade...) Notes: svn path=/head/; revision=16302
* Cosmetic fixes for drive names which are 4 chars long.Jordan K. Hubbard1996-06-114-11/+13
| | | | | | | Submitted-By: Joe Greco <jgreco@ns.sol.net> Notes: svn path=/head/; revision=16301
* Move warning messages under bootverbosePaul Traina1996-06-115-20/+40
| | | | Notes: svn path=/head/; revision=16300
* Put clock calibration #defines in opt_clock.h to ease reconfigurationPaul Traina1996-06-117-7/+20
| | | | Notes: svn path=/head/; revision=16299
* Update for the next SNAP.Jordan K. Hubbard1996-06-112-10/+21
| | | | Notes: svn path=/head/; revision=16298
* Put in a strategic dialog_clear() to prevent screen corruption reportedJordan K. Hubbard1996-06-113-3/+6
| | | | | | | by Joerg. Notes: svn path=/head/; revision=16297
* Change some verbiage slightly.Jordan K. Hubbard1996-06-113-6/+9
| | | | Notes: svn path=/head/; revision=16296
* A slight error in my logic had me using color text attributes on HerculesJordan K. Hubbard1996-06-113-6/+6
| | | | | | | monochrome displays. Whoops! Fix. Notes: svn path=/head/; revision=16294
* Misc doc cleanup.Jordan K. Hubbard1996-06-115-33/+40
| | | | Notes: svn path=/head/; revision=16293