aboutsummaryrefslogtreecommitdiff
path: root/lib/libufs
Commit message (Collapse)AuthorAgeFilesLines
...
* Initialise disk->d_ufs so that in sblock.c it's always initialisedJuli Mallett2002-08-111-0/+1
| | | | | | | | | | (unless someone tries to use libufs support functions without using _fillout or _ctor to construct a uufsd.) Obtained from: jmallett_libufs Perforce branch. Notes: svn path=/head/; revision=101687
* Fill out (zero) and fill in (when doing getino()) the minimum and maximumJuli Mallett2002-07-112-2/+4
| | | | | | | inodes in our inoblock (disk->d_ino{min,max}) appropriately. Notes: svn path=/head/; revision=99823
* No need to explicitly set NOMAN here.Ruslan Ermilov2002-07-031-1/+0
| | | | | | | Reviewed by: jmallett Notes: svn path=/head/; revision=99330
* DEBUG is a knob that means something else in FreeBSD, use LIBUFS_DEBUG toJuli Mallett2002-07-011-1/+1
| | | | | | | turn on tracing. Notes: svn path=/head/; revision=99223
* In getino, have our DEBUG message in the unhandled case mention that itJuli Mallett2002-07-013-1/+5
| | | | | | | | | does not know what sort of UFS filesystem this is. Add some DEBUG(NULL)'s to function entry points. Notes: svn path=/head/; revision=99222
* Add libufs, a library for dealing with UFS filesystems from userland toJuli Mallett2002-07-016-0/+534
the build. It is here to compartmentalise functionality currently duplicated in many notable programs in the base system. It currently handles block reads and writes, as well as reading and writing of the filesystem superblock, and the reading/lookup of inode data. It supports both UFS and UFS2. I will be maintaining it, and porting programs to use it, however for now, it is simply being built as part of world. Notes: svn path=/head/; revision=99193