Home
last modified time | relevance | path

Searched refs:fs_metackhash (Results 1 – 12 of 12) sorted by relevance

/freebsd/sbin/fsck_ffs/
H A Dmain.c380 sblock.fs_metackhash = 0; in checkfilesys()
390 if ((sblock.fs_metackhash & CK_CYLGRP) == 0 && in checkfilesys()
393 sblock.fs_metackhash |= CK_CYLGRP; in checkfilesys()
395 if ((sblock.fs_metackhash & CK_SUPERBLOCK) == 0 && in checkfilesys()
399 sblock.fs_metackhash |= CK_SUPERBLOCK; in checkfilesys()
401 if ((sblock.fs_metackhash & CK_INODE) == 0 && in checkfilesys()
405 sblock.fs_metackhash |= CK_INODE; in checkfilesys()
408 if ((sblock.fs_metackhash & CK_INDIR) == 0 && in checkfilesys()
412 sblock.fs_metackhash |= CK_INDIR; in checkfilesys()
414 if ((sblock.fs_metackhash & CK_DIR) == 0 && in checkfilesys()
[all …]
H A Dfsutil.c270 if ((sblock.fs_metackhash & CK_CYLGRP) != 0) { in cgdirty()
1006 if ((sblock.fs_metackhash & CK_CYLGRP) != 0 && in check_cgmagic()
H A Dpass5.c170 if ((fs->fs_metackhash & CK_CYLGRP) != 0 && in pass5()
/freebsd/tools/test/stress2/tools/
H A Dzapsb.c63 if ((sbp->fs_metackhash & CK_SUPERBLOCK) == 0) { in main()
/freebsd/lib/libufs/
H A Dcgroup.c241 if ((fs->fs_metackhash & CK_CYLGRP) != 0) { in cgget()
302 if ((fs->fs_metackhash & CK_CYLGRP) != 0) { in cgput()
/freebsd/sys/ufs/ffs/
H A Dffs_subr.c89 if (dip->di_mode == 0 || (fs->fs_metackhash & CK_INODE) == 0) in ffs_verify_dinode_ckhash()
111 if (dip->di_mode == 0 || (fs->fs_metackhash & CK_INODE) == 0) in ffs_update_dinode_ckhash()
282 fs->fs_metackhash = 0; in readsuper()
287 fs->fs_metackhash &= CK_SUPPORTED; in readsuper()
1026 if ((fs->fs_metackhash & CK_SUPERBLOCK) == 0) in ffs_calc_sbhash()
H A Dfs.h433 uint32_t fs_metackhash; /* metadata check-hash, see CK_ below */
487 * is stored in the fs_metackhash field. Kernels that do not support
533 * The fs_metackhash field indicates the types of metadata check-hash
432 uint32_t fs_metackhash; /* metadata check-hash, see CK_ below */ global() member
H A Dffs_alloc.c3036 if ((fs->fs_metackhash & CK_CYLGRP) != 0) in ffs_getcg()
3050 if ((fs->fs_metackhash & CK_CYLGRP) != 0 && in ffs_getcg()
3097 if ((fs->fs_metackhash & CK_CYLGRP) != 0) in ffs_getcg()
H A Dffs_snapshot.c1019 if ((fs->fs_metackhash & CK_CYLGRP) != 0) { in cgaccount()
/freebsd/sbin/newfs/
H A Dmkfs.c512 sblock.fs_metackhash |= CK_CYLGRP; in mkfs()
514 sblock.fs_metackhash |= CK_SUPERBLOCK; in mkfs()
516 sblock.fs_metackhash |= CK_INODE; in mkfs()
/freebsd/sbin/dumpfs/
H A Ddumpfs.c280 fsflags = afs.fs_metackhash; in dumpfs()
/freebsd/sbin/growfs/
H A Dgrowfs.c1667 if ((sblock.fs_metackhash & CK_CYLGRP) == 0) in cgckhash()