summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ffs/setup.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* With filesystem having many cylinder groups and many inodes per cg theotto2020-06-201-4/+5
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-281-5/+5
* Use unveil(2). These programs fit together in various strange ways,deraadt2018-09-241-2/+6
* the value of bflag is a blockno, so use the proper type, avoidsotto2018-01-051-2/+2
* Tighten pledge for fsdb and eliminate a strcmp("fsdb", getprogname())tb2016-09-091-11/+9
* better computation of location of alternate superblocks, based on infootto2016-09-011-33/+24
* fsdb(8) sucks in and is pledged by fsck(8). Since it uses editline(3),tb2016-08-201-4/+10
* hotroot is calculated late in fsck_ffs, so defer the pledge.deraadt2015-11-241-1/+5
* corrects pledge code for fsck_ffs and fsck_ext2fssemarie2015-10-151-1/+6
* Since the fsck_* programs now only handle one filesystem, this createsderaadt2015-10-141-8/+14
* Adjust <sys/param.h> comments regarding use of use of MAXFRAG, orderaadt2015-01-201-2/+2
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-4/+7
* inodesc.id_entryno holds a file size, so upgrade it from int to u_int64_t;guenther2014-09-061-7/+7
* fsck should use the same values in checking as newfs does in creatingkrw2014-05-291-6/+9
* Modernize spelling. 'Mimick' -> 'Mimic' in comment.krw2014-05-091-2/+2
* Fix '-b' option to work with the superblock locations output by newfskrw2014-05-091-14/+4
* Kirk was being waaaay too chummy with the compiler when he trustedguenther2013-11-221-5/+6
* Replace direct references to p_size, p_offset and d_secperunit withkrw2013-11-051-4/+4
* final removal of daddr64_t. daddr_t has been 64 bit for a long enoughderaadt2013-06-111-2/+2
* remove support for (very) old ffs on-disk formats; ok krw@ and nootto2011-04-241-85/+46
* Blend in some code from netbsd and freebsd that reduces memory consumptionotto2011-04-161-17/+6
* Print the real device name followed by the disklabel UID in parenthesisjsing2010-08-121-4/+11
* When fsck_ffs is used with disklabel UIDs the hot root test fails injsing2010-06-151-1/+3
* add missing headers needed for opendev() and close()chl2010-06-091-1/+3
* Switch fsck_ffs(8) and fsdb(8) to opendev(3) so that they will soon be ablejsing2010-06-051-12/+16
* dont let sys/ioctl.h imply that you get the ioctls in dkio.h. thisdlg2010-05-181-1/+2
* rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andderaadt2009-10-271-9/+1
* reduce mem usage by about 20% by packing state and type of an inode in a singleotto2008-06-101-12/+6
* print sizeofs using %zu; ok joris@otto2008-06-101-7/+12
* The new newfs(8) code causes alternate superblocks to end up inotto2008-06-091-3/+14
* ufs1_daddr_t cleanup, okay otto@pedro2007-06-011-4/+4
* convert ufs2_daddr_t -> daddr64_t for greater clarity; ok pedro otto thibderaadt2007-06-011-4/+4
* Updated disklabel format to support larger disks and partitions. Weotto2007-05-291-4/+4
* When trying to read the primary superblock, do not accidentially readotto2007-04-181-2/+11
* Add support for checking ffs2 filesystems. From pedro@ based onmillert2007-04-101-40/+94
* be a tiny little bit more verbose when encoutering bad block or fragmentotto2007-03-191-4/+4
* Add FFS2 fields to the superblock, change file system tools to keeppedro2007-03-191-8/+8
* there's no way we're going to be able to handle illegal block orotto2007-03-181-4/+8
* Fix a row of bugs in the code that computes the alternate superblockotto2007-02-161-6/+20
* Do some extra validation of the superblock, otherwise a corruptotto2007-02-131-3/+62
* max partition letter is 'a' + MAXPARTITIONS - 1, not 'h'. ok (andotto2007-02-121-3/+4
* fix a fd leak that happens whe checking multiple file systems and someotto2007-02-091-3/+3
* Plug some mem leaks that occur when checking multiple file systems in aotto2007-02-081-3/+2
* prettier code; ok pedroderaadt2006-04-171-32/+42
* Remove option -n from newfs as well as all references to fs_postbl()pedro2006-03-091-3/+3
* Add and use a few more constants and macros needed by UFS2pedro2005-12-191-5/+5
* whack commons as wanted by hoderaadt2003-09-251-2/+4
* const the rcsid, and make it say OpenBSDtedu2003-06-261-2/+2
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-7/+3
* only compare suberblock fields that are interesting, instead of trying totedu2003-04-301-46/+43