summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ffs
Commit message (Collapse)AuthorAgeFilesLines
* patch up some "int *" vs. "time_t *" (long) mismatches. They could bepeter1997-03-181-2/+4
| | | | nasty if sizeof(int) != sizeof(long).
* Restore check for ridiculous directory sizes.peter1997-03-181-2/+2
|
* Kill the Lite2 early "filesystem clean abort" check and go back topeter1997-03-132-8/+6
| | | | | | | | something closer to how we used to do it. The Lite2 way is to check the "fsclean" flag in the superblock and stop there if so (during preen). We now do the various superblock sanity checks that we used to do before since it's cheap. We now get the filesystem state summary again instead of "FILESYSTEM CLEAN; CHECKING SKIPPED" (or whatever).
* Finished (?) merging with Lite2: cleaned up #include mess.bde1997-03-124-10/+4
|
* Finished (?) merging with Lite2: cleaned up #include mess.bde1997-03-122-14/+11
| | | | Fixed style bugs in FreeBSD changes.
* Finished (?) merging with Lite2: cleaned up #include mess and fixed abde1997-03-121-3/+1
| | | | | | style bug. Removed a redundant declaration.
* Finished (?) merging with Lite2: cleaned up #include mess.bde1997-03-121-3/+2
| | | | Fixed misformatting in a comment.
* Finished (?) merging with Lite2: cleaned up #include mess.bde1997-03-121-7/+1
| | | | Updated getopt() usage.
* Restored lost reference to fsdb(8).bde1997-03-121-1/+2
| | | | Fixed weird quoting of $Id$.
* Merge from Lite2. Note that Lite2 has it's own filesystem clean checkpeter1997-03-1115-464/+613
| | | | | skipping code that overrides ours sooner. One should be eliminated, but for now it works.
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Sort cross references.wosch1997-01-131-1/+2
|
* Submitted by: Archie@whistle.comjulian1996-11-131-1/+9
| | | | clear the fmod flag if it's set.
* Don't give up just because we cant find the blkdev that correspondsphk1996-10-271-2/+3
| | | | to the name given as a chardev.
* Allow the specification of a mountpoint, and resolve it s disk devicejoerg1996-10-251-1/+16
| | | | | | | | using the fstab. Closes PR bin/129. Submitted by: jmg@nike.efn.org (John-Mark Gurney)
* Fix the case where fsck would not see sparse directories and the kernel wouldguido1996-10-086-2/+78
| | | | | | | panic. If such a thing is fixed fsck needs a rerun (and bugs the user to do so). Reviewed by: Kirk McKusick
* ts_sec -> tv_secnate1996-09-201-2/+2
| | | | ts_nsec -> tv_nsec
* Don't use __dead or __pure in user code. They were obfuscationsbde1996-09-142-4/+4
| | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong.
* From: Terry Lambert <terry@lambert.org>nate1996-05-091-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | Subject: Fix for annoying fsck bug Date: Wed, 24 Jan 1996 13:33:29 -0700 (MST) The following small diff fixes the annoying fsck bug that causes it to need to be run twice to end up with correct reference counts for inodes for directories that had subdirectories relocated into the lost+found directory. I found the need to rerun *extremely* annoying. This fix causes the count to be correctly adjusted later in pass 4 by correctly stating the parent reference count. Note that the parent reference count is incremented when the directory entry is made (for ".."), but is not really there in the case of a directory that does not make an entry in its parent dir. This can be tested by waiting for the inode sync after cd'ing from a shell into a test fs. Then you "mkdir xxx yyy zzz", wait a second, and hit the machine reset button. Reviewed by: nate (Tested lots of crashes :) Submitted by: Terry Lambert <terry@lambert.org>
* Correct some man page cross references and some filempp1996-02-051-1/+0
| | | | locations.
* Remove unneeded ctype.hache1995-10-232-2/+0
|
* Remove trailing whitespace.rgrimes1995-05-309-16/+16
|
* Update declaration to match the change made to dir.c a few hours ago.bde1995-04-021-1/+1
|
* Submitted by: Philippe Charnier <charnier@lirmm.fr>, distilled by bdebde1995-04-022-2/+3
| | | | Fix a couple more bogus types that aren't reported by `gcc -Wall'.
* Submitted by: phk, added to by bdebde1995-04-0213-71/+257
| | | | Fix all the warnings from `gcc -Wall'.
* Remove reference to fsdb(8). We don't have it.phk1995-03-171-1/+0
|
* Slight change of wording on clean flag not set message to appease somedg1995-02-151-1/+1
| | | | complaints.
* >The fix for the missing ".." in the root directory is enclosed below.dg1995-02-151-2/+5
| | | | Submitted by: Kirk McKusick
* Don't allow the alternate superblock block number for one file systembde1995-02-091-0/+2
| | | | to apply to others (except when it is given on the command line).
* Woops, last patch was by Wolfgang Solfrank.dg1994-09-091-1/+1
|
* Two fixes from the NetBSD group (Charles Hannum):dg1994-09-092-7/+15
| | | | | | | 1) dir.c: get byte order right in mkentry() 2) pass1.c: When doing -c2 conversion, do secsize reads for a symlink - not doing so was causing the conversion to fail because the device driver can't deal with short reads.
* Better support for clean bit: prompt the user to fix it if it's wrongdg1994-08-212-2/+10
| | | | when not preening, and indicate if it was fixed when preening.
* Added filesystem clean bit support. This only affects fsck during adg1994-08-203-2/+28
| | | | | | | preen (-p), and in that case the filesystem is skipped if it is clean. A new flag "-f" for 'force' has been added which basically gives back the old behavior of checking all the filesystems all the time. This very closely models the behavior of SunOS and Ultrix.
* Convert to our man installation style. Also fixed long-standing bugwollman1994-08-051-1/+1
| | | | | in `fastboot'/`fasthalt' in which the interpreter would hang around after `reboot' or `halt' is run, causing an irritating ``Killed'' message.
* Fixed so that it can grok old style "fastlinks".dg1994-08-022-2/+2
|
* BSD 4.4 Lite sbin Sourcesrgrimes1994-05-2621-0/+7177
Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
OpenPOWER on IntegriCloud