Deleted Added
full compact
fsck.h (302408) fsck.h (307535)
1/*
2 * Copyright (c) 2002 Networks Associates Technology, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project by Marshall
6 * Kirk McKusick and Network Associates Laboratories, the Security
7 * Research Division of Network Associates, Inc. under DARPA/SPAWAR
8 * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS

--- 43 unchanged lines hidden (view full) ---

52 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
57 * SUCH DAMAGE.
58 *
59 * @(#)fsck.h 8.4 (Berkeley) 5/9/95
1/*
2 * Copyright (c) 2002 Networks Associates Technology, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project by Marshall
6 * Kirk McKusick and Network Associates Laboratories, the Security
7 * Research Division of Network Associates, Inc. under DARPA/SPAWAR
8 * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS

--- 43 unchanged lines hidden (view full) ---

52 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
57 * SUCH DAMAGE.
58 *
59 * @(#)fsck.h 8.4 (Berkeley) 5/9/95
60 * $FreeBSD: stable/11/sbin/fsck_ffs/fsck.h 289677 2015-10-21 05:37:09Z eadler $
60 * $FreeBSD: stable/11/sbin/fsck_ffs/fsck.h 307535 2016-10-17 22:33:29Z mckusick $
61 */
62
63#ifndef _FSCK_H_
64#define _FSCK_H_
65
66#include <unistd.h>
67#include <stdlib.h>
68#include <stdio.h>

--- 231 unchanged lines hidden (view full) ---

300extern char snapname[BUFSIZ]; /* when doing snapshots, the name of the file */
301extern char *cdevname; /* name of device being checked */
302extern long dev_bsize; /* computed value of DEV_BSIZE */
303extern long secsize; /* actual disk sector size */
304extern u_int real_dev_bsize; /* actual disk sector size, not overridden */
305extern char nflag; /* assume a no response */
306extern char yflag; /* assume a yes response */
307extern int bkgrdflag; /* use a snapshot to run on an active system */
61 */
62
63#ifndef _FSCK_H_
64#define _FSCK_H_
65
66#include <unistd.h>
67#include <stdlib.h>
68#include <stdio.h>

--- 231 unchanged lines hidden (view full) ---

300extern char snapname[BUFSIZ]; /* when doing snapshots, the name of the file */
301extern char *cdevname; /* name of device being checked */
302extern long dev_bsize; /* computed value of DEV_BSIZE */
303extern long secsize; /* actual disk sector size */
304extern u_int real_dev_bsize; /* actual disk sector size, not overridden */
305extern char nflag; /* assume a no response */
306extern char yflag; /* assume a yes response */
307extern int bkgrdflag; /* use a snapshot to run on an active system */
308extern int bflag; /* location of alternate super block */
308extern ufs2_daddr_t bflag; /* location of alternate super block */
309extern int debug; /* output debugging info */
310extern int Eflag; /* delete empty data blocks */
311extern int Zflag; /* zero empty data blocks */
312extern int inoopt; /* trim out unused inodes */
313extern char ckclean; /* only do work if not cleanly unmounted */
314extern int cvtlevel; /* convert to newer file system format */
315extern int bkgrdcheck; /* determine if background check is possible */
316extern int bkgrdsumadj; /* whether the kernel have ability to adjust superblock summary */

--- 158 unchanged lines hidden ---
309extern int debug; /* output debugging info */
310extern int Eflag; /* delete empty data blocks */
311extern int Zflag; /* zero empty data blocks */
312extern int inoopt; /* trim out unused inodes */
313extern char ckclean; /* only do work if not cleanly unmounted */
314extern int cvtlevel; /* convert to newer file system format */
315extern int bkgrdcheck; /* determine if background check is possible */
316extern int bkgrdsumadj; /* whether the kernel have ability to adjust superblock summary */

--- 158 unchanged lines hidden ---