summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* XOpen says the void setpwent(void) is correct. Also call setpassent(0)Steve Price1998-02-012-8/+3
| | | | | | | | | instead of duplicating code, albeit trivial (inspired by NetBSD). PR: 5524 Notes: svn path=/head/; revision=32962
* Typo: PAT -> FAT.Steve Price1998-02-013-6/+6
| | | | | | | PR: 5593 Notes: svn path=/head/; revision=32958
* Revert previous commit. Remove all ifp->if_* = 0 initializations,Steve Price1998-02-011-7/+0
| | | | | | | | | | since pkh made tunctl static in revision 1.17 these are already guaranteed to be zero'd and tunattach will only be called once. Pointed out by: Bruce Evans and Bill Fenner Notes: svn path=/head/; revision=32957
* Make RAWBOOT functional again; don't read `boot.config' and `boot.help'Kazutaka YOKOTA1998-02-011-1/+3
| | | | | | | | | if RAWBOOT is defined. Reviewed by: bde Submitted by: Takeshi Amaike <amaike@iri.co.jp> Notes: svn path=/head/; revision=32955
* Add a new ioctl, SCSIOCGETDEVINFO, which takes a device ID and uses itGarrett Wollman1998-02-012-3/+25
| | | | | | | | | | to look up information about that device. Right now, all it does is give back the dev_t for the device, if known, since that's all I needed, but hopefully the SCSI mavens will come up with a more generally useful structure. Notes: svn path=/head/; revision=32953
* Fix a performance problem caused by an earlier commit.John Dyson1998-02-011-2/+3
| | | | Notes: svn path=/head/; revision=32952
* Support more intelligent sync operations for MNT_NOATIME.John Dyson1998-02-013-8/+31
| | | | | | | | PR: kern/5577 Submitted by: Craig Leres <leres@ee.lbl.gov> Notes: svn path=/head/; revision=32951
* Add an additional `named_program' variable so that we can easily chooseGarrett Wollman1998-02-018-15/+16
| | | | | | | between 4.9.6 and the port of 8.x. Notes: svn path=/head/; revision=32949
* Allow package building in current directory again.David E. O'Brien1998-01-311-2/+6
| | | | Notes: svn path=/head/; revision=32947
* contigalloc doesn't place the allocated page(s) into an object, andJohn Dyson1998-01-311-3/+5
| | | | | | | | | now this breaks vm_page_wire (due to wired page accounting per object.) This should fix a problem as described by Donald Maddox. Notes: svn path=/head/; revision=32946
* add the SUIDDIR option and tell people what it is for. (And when NOT to use it)Julian Elischer1998-01-313-3/+48
| | | | Notes: svn path=/head/; revision=32945
* Serves me right for not puting SUIDDIR in LINT. it got bitrot.Julian Elischer1998-01-311-9/+9
| | | | | | | This should stop complaints about it not working for people. Notes: svn path=/head/; revision=32944
* Sync with sys/i386/i386/trap.c revision 1.120.KATO Takenori1998-01-311-1/+2
| | | | Notes: svn path=/head/; revision=32941
* Sync with sys/i386/isa/isa.c revision 1.109.KATO Takenori1998-01-311-1/+13
| | | | Notes: svn path=/head/; revision=32940
* Sync with sys/i386/conf/options.i386 revision 1.70.KATO Takenori1998-01-312-6/+8
| | | | Notes: svn path=/head/; revision=32939
* Sync with sys/i386/conf/Makefile.i386 revision 1.107.KATO Takenori1998-01-312-12/+22
| | | | Notes: svn path=/head/; revision=32938
* Change the busy page mgmt, so that when pages are freed, theyJohn Dyson1998-01-3116-125/+253
| | | | | | | | | | | | | | | | | MUST be PG_BUSY. It is bogus to free a page that isn't busy, because it is in a state of being "unavailable" when being freed. The additional advantage is that the page_remove code has a better cross-check that the page should be busy and unavailable for other use. There were some minor problems with the collapse code, and this plugs those subtile "holes." Also, the vfs_bio code wasn't checking correctly for PG_BUSY pages. I am going to develop a more consistant scheme for grabbing pages, busy or otherwise. For now, we are stuck with the current morass. Notes: svn path=/head/; revision=32937
* Deleted unused file.KATO Takenori1998-01-311-42/+0
| | | | | | | Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp> Notes: svn path=/head/; revision=32935
* Delte unused files.KATO Takenori1998-01-312-839/+0
| | | | | | | Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp> Notes: svn path=/head/; revision=32930
* Make the debug options new-style.Eivind Eklund1998-01-3122-37/+69
| | | | | | | | This also zaps a DPT option from lint; it wasn't referenced from anywhere. Notes: svn path=/head/; revision=32929
* kill ufs/lfs so that make installworld completes successfully.Warner Losh1998-01-311-2/+2
| | | | Notes: svn path=/head/; revision=32928
* Kill lfs files that were causing make world to fail.Warner Losh1998-01-311-3/+2
| | | | Notes: svn path=/head/; revision=32927
* Attempt at making this use DEVFS properly. (Now it should at least work.)Eivind Eklund1998-01-314-6/+12
| | | | Notes: svn path=/head/; revision=32926
* Make POWERFAIL_NMI, PPS_SYNC and NATM new style options.Eivind Eklund1998-01-3111-12/+26
| | | | | | | This also fixes a couple of defunct options; submitted by bde. Notes: svn path=/head/; revision=32925
* Add support for cleandepend, ${DESTDIR}, and there not being a file namedEivind Eklund1998-01-313-18/+33
| | | | | | | ${DESTDIR}/kernel. Notes: svn path=/head/; revision=32924
* Add various options people have ignored.Eivind Eklund1998-01-313-6/+69
| | | | | | | Submitted by: bde Notes: svn path=/head/; revision=32923
* Skip probing devices which have already probed true.Eivind Eklund1998-01-312-2/+26
| | | | Notes: svn path=/head/; revision=32922
* Remove unused devfs include. (Julian or Satoshi might want to add properEivind Eklund1998-01-312-8/+2
| | | | | | | | DEVFS support here; just including the header file doesn't do any good, and would make this depend on opt_devfs.h) Notes: svn path=/head/; revision=32921
* Add #include "opt_devfs.h".Eivind Eklund1998-01-311-0/+1
| | | | Notes: svn path=/head/; revision=32920
* Fill-in and fill-out a little.Tim Vanderhoek1998-01-311-88/+201
| | | | | | | Correct a small misfact. :) Notes: svn path=/head/; revision=32918
* Include "opt_nfs.h"Eivind Eklund1998-01-313-3/+6
| | | | | | | Pointed out by: Eric L. Hernes <erich@lodgenet.com> Notes: svn path=/head/; revision=32917
* Include "opt_devfs.h".Eivind Eklund1998-01-311-0/+2
| | | | Notes: svn path=/head/; revision=32916
* Cosmetic cleanups for the local tag support. Since rcs isn't calledPeter Wemm1998-01-312-17/+7
| | | | | | | anymore, don't do all the putenv's for it's benefit. Notes: svn path=/head/; revision=32914
* Release the buffer when an error occurs while reading directory entries.Tor Egge1998-01-312-6/+12
| | | | Notes: svn path=/head/; revision=32912
* Synchronize with ../biosboot/Makefile.Kazutaka YOKOTA1998-01-311-16/+4
| | | | | | | | | - Remove reference to the obsolete options: BOOT_PROBE_KEYBOARD, BOOT_PROBE_KEYBOARD_LOCK and BOOT_FORCE_COMCONSOLE. - Add reference to BOOT_COMCONSOLE_SPEED. Notes: svn path=/head/; revision=32911
* Update freevnodes when adding a vnode to the head of the free list.Tor Egge1998-01-312-4/+8
| | | | Notes: svn path=/head/; revision=32910
* Don't clobber pp_flags when PP_KEEPALIVE must be set.John Hay1998-01-303-9/+12
| | | | Notes: svn path=/head/; revision=32904
* Merge vendor changes to files that we've touched onto mainline.Peter Wemm1998-01-303-8/+47
| | | | | | | (If only all import/merges were this trivial :-) Notes: svn path=/head/; revision=32899
* This commit was generated by cvs2svn to compensate for changes in r32896,Peter Wemm1998-01-3011-11/+391
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=32897
| * Import cvs-1.9.24 since it came quite soon after the snapshot that wasPeter Wemm1998-01-3014-19/+438
| | | | | | | | | | | | | | | | imported a few days ago. There is very little difference, except that the remote protocol apparently supports wrappers and -k options better. Notes: svn path=/vendor/cvs/dist/; revision=32896
* | Update import instructions from last time.Peter Wemm1998-01-301-1/+2
| | | | | | | | Notes: svn path=/head/; revision=32895
* | Retire dumplfs, mount_lfs and newlfsPoul-Henning Kamp1998-01-3016-2674/+0
| | | | | | | | Notes: svn path=/head/; revision=32894
* | Retire dumplfs mount_lfs newlfsPoul-Henning Kamp1998-01-301-3/+3
| | | | | | | | Notes: svn path=/head/; revision=32893
* | Remove lfs_cleanerdPoul-Henning Kamp1998-01-307-1831/+0
| | | | | | | | Notes: svn path=/head/; revision=32892
* | Disable lfs_cleanerdPoul-Henning Kamp1998-01-301-2/+2
| | | | | | | | Notes: svn path=/head/; revision=32891
* | Sync with sys/i386/i386/machdep.c revision 1.285.KATO Takenori1998-01-302-32/+30
| | | | | | | | Notes: svn path=/head/; revision=32890
* | Retire LFS.Poul-Henning Kamp1998-01-3036-5232/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you want to play with it, you can find the final version of the code in the repository the tag LFS_RETIREMENT. If somebody makes LFS work again, adding it back is certainly desireable, but as it is now nobody seems to care much about it, and it has suffered considerable bitrot since its somewhat haphazard integration. R.I.P Notes: svn path=/head/; revision=32889
* | Make the bounce buffer code a little more robust when space isn'tJohn Dyson1998-01-304-38/+50
| | | | | | | | | | | | | | | | | | available. If there isn't bounce space available, the bounce code is disabled. This will allow most large systems to run properly when the bounce space is mistakenly allocated above 16MB. Notes: svn path=/head/; revision=32884
* | MF22: Add tx.4 to build list.Jordan K. Hubbard1998-01-301-2/+3
| | | | | | | | Notes: svn path=/head/; revision=32880
* | Remove obsolete strategy code that was replaced by the disk slice mapping code.Paul Traina1998-01-292-18/+6
| | | | | | | | | | | | | | | | FreeBSD filesystems could be dammaged by repeatedly mounting and unmounting several partitions. Notes: svn path=/head/; revision=32874