summaryrefslogtreecommitdiff
path: root/lib/libufs/sblock.c
Commit message (Collapse)AuthorAgeFilesLines
* Use an error message closer to old dumpfs(8) in the case of truncated/noJuli Mallett2002-10-221-1/+1
| | | | | | | | | | | | superblock. Submitted by: kkenn Can't use it verbatim, at least I hate to, as the ", skipped" bit doesn't make much sense in a library, to me. Notes: svn path=/head/; revision=105740
* Add the concept of a per-disk error string, and a function which prints itJuli Mallett2002-10-221-0/+5
| | | | | | | along with the errno, if one is set. Notes: svn path=/head/; revision=105737
* In getino, have our DEBUG message in the unhandled case mention that itJuli Mallett2002-07-011-0/+2
| | | | | | | | | 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-011-0/+122
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