aboutsummaryrefslogtreecommitdiff
path: root/sys/gnu
Commit message (Expand)AuthorAgeFilesLines
* Fixed printing of a dev_t in a panic message. Fixed the function nameBruce Evans1999-05-132-4/+4
* Divorce "dev_t" from the "major|minor" bitmap, which is now calledPoul-Henning Kamp1999-05-111-2/+2
* Fix some of the places where too much inside knowledge about major/minorPoul-Henning Kamp1999-05-082-8/+6
* I got tired of seeing all the cdevsw[major(foo)] all over the place.Poul-Henning Kamp1999-05-084-22/+22
* Continue where Julian left off in July 1998:Poul-Henning Kamp1999-05-074-22/+22
* Add an additional probe, hopefully allowing me to distinguishBrian Somers1999-05-031-6/+10
* The VFS/BIO subsystem contained a number of hacks in order to optimizeAlan Cox1999-05-022-2/+4
* s/size == 0;/size = 0;/Peter Wemm1999-05-022-6/+6
* This Implements the mumbled about "Jail" feature.Poul-Henning Kamp1999-04-282-2/+2
* s/static foo_devsw_installed = 0;/static int foo_devsw_installed;/.Dmitrij Tejblum1999-04-282-4/+4
* Suser() simplification:Poul-Henning Kamp1999-04-274-10/+10
* Fix so that this driver works again when compiled with EGCS (whichDavid Nugent1999-04-221-31/+31
* Remove unused function int fi() {return 0;}Eivind Eklund1999-04-111-4/+1
* Staticize.Eivind Eklund1999-04-111-2/+2
* Make NDGBPORTS an official option.Joerg Wunsch1999-03-131-1/+2
* Don't depend on <ufs/ufs/quota.h> or another (old) prerequisite includingBruce Evans1999-03-062-2/+4
* Merge patch to ufs_vnops.c's ufs_rename to the copy of ufs_rename thatWarner Losh1999-03-022-0/+10
* Added a used #include (don't depend on "vnode_if.h" including <sys/buf.h>).Bruce Evans1999-02-252-0/+2
* Use suser() to check for super user rather than examining cr_uid directly.Poul-Henning Kamp1999-01-302-4/+6
* Fixed parenthesization botch in previous commit. Async update of inodesBruce Evans1999-01-292-2/+2
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-282-4/+4
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-272-4/+4
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-2718-124/+124
* Remove LKM support, src/lkm that built it is gone and it never worked as anPeter Wemm1999-01-171-35/+1
* Avoid warning for unused variable.Eivind Eklund1999-01-112-4/+4
* Don't pass unused unused timestamp args to UFS_UPDATE() or wasteBruce Evans1999-01-0712-82/+42
* UFS_UPDATE() takes a boolean `waitfor' arg, so don't pass it the valueBruce Evans1999-01-062-2/+2
* Ifdefed conditionally used simplock variables.Bruce Evans1999-01-021-1/+3
* PR: kern/8819Matthew Dillon1998-12-131-55/+55
* The "easy" fixes for compiling the kernel -Wunused: remove unreferenced staticArchie Cobbs1998-12-076-30/+16
* Examine all occurrences of sprintf(), strcat(), and str[n]cpy()Archie Cobbs1998-12-041-1/+1
* Fixed a misspelling of boolean true as MNT_WAIT.Bruce Evans1998-11-152-2/+2
* Finished updating module event handlers to be compatible withBruce Evans1998-11-151-2/+2
* add #include <sys/kernel.h> where it's needed by MALLOC_DEFINE()Peter Wemm1998-11-101-1/+2
* Use TAILQ macros for clean/dirty block list processing. Set b_xflagsPeter Wemm1998-10-316-14/+12
* error return assignment was less than ideal. Fix the part that causedPeter Wemm1998-10-292-4/+4
* Use vtruncbuf() to clean out cached blocks on a file shorten rather thanPeter Wemm1998-10-292-6/+8
* Oops, the redundant tests for major numbers weren't redundant here.Bruce Evans1998-10-272-4/+6
* Removed redundant bitrotted checks for major numbers instead of updatingBruce Evans1998-10-262-8/+4
* Don't follow null bdevsw pointers. The `major(dev) < nblkdev' test rottedBruce Evans1998-10-252-2/+4
* Initialize earlier (ie: before npx) in case it makes any difference.Peter Wemm1998-10-181-4/+8
* OOPS!Peter Wemm1998-10-181-2/+2
* *gulp*. Jordan specifically OK'ed this..Peter Wemm1998-10-161-9/+29
* Fixed bloatage of `struct inode'. We used 5 "spare" fields for ext2fs,Bruce Evans1998-10-138-16/+16
* Quick fix for not being able to sync all the buffers in boot() ifBruce Evans1998-10-034-16/+20
* Fixed initialization of new inodes. ext2fs doesn't clear inodes whenBruce Evans1998-09-292-2/+6
* Updated ext2_reload() and ext2_sync(). Locking was broken, and MNT_LAZYBruce Evans1998-09-262-84/+126
* Fixed missing newlines in messages in ext2_check_descriptors().Bruce Evans1998-09-262-16/+24
* Fixed clean flag handling:Bruce Evans1998-09-264-20/+72
* Fixed the usual missing permissions checks in mount(). As for cd9660,Bruce Evans1998-09-092-2/+70