Searched refs:fs (Results 1 - 25 of 840) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/man/man7fs/
H A DMakefile20 MANSECT= 7fs
22 MANFILES= bootfs.7fs \
23 ctfs.7fs \
24 dcfs.7fs \
25 dev.7fs \
26 devfs.7fs \
27 fd.7fs \
28 hsfs.7fs \
29 lofs.7fs \
30 objfs.7fs \
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfs.h42 * @(#)fs.h 7.7 (Berkeley) 5/9/89
57 * For file system fs, the offsets of the various blocks of interest
59 * [fs->fs_sblkno] Super-block
60 * [fs->fs_cblkno] Cylinder group block
61 * [fs->fs_iblkno] Inode blocks
62 * [fs->fs_dblkno] Data blocks
63 * The beginning of cylinder group cg in fs, is given by
64 * the ``cgbase(fs, cg)'' macro.
89 * information in the inode, using the ``blksize(fs, ip, lbn)'' macro.
146 struct fs struct
[all...]
H A Dufs.h62 struct fs { struct
64 grub_uint32_t fs_rolled; /* logging only: fs fully rolled */
72 grub_int32_t fs_size; /* number of blocks in fs */
73 grub_int32_t fs_dsize; /* number of data blocks in fs */
75 grub_int32_t fs_bsize; /* size of basic blocks in fs */
76 grub_int32_t fs_fsize; /* size of frag blocks in fs */
77 grub_int32_t fs_frag; /* number of frags in a block in fs */
208 #define INOPB(fs) ((fs)->fs_inopb)
209 #define itoo(fs,
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_mount/
H A Dzfs_mount_010_neg.ksh49 if ! ismounted $fs; then
50 log_must zfs mount $fs
57 fs=$TESTPOOL/$TESTFS
58 if ! ismounted $fs; then
59 log_must zfs mount $fs
62 log_mustnot zfs mount $fs
64 mpt=$(get_prop mountpoint $fs)
65 log_must zfs umount $fs
68 log_mustnot zfs mount $fs
H A Dzfs_mount.kshlib45 # Create pool and ( fs | container | vol ) with the given parameters,
48 function setup_filesystem #disklist #pool #fs #mntpoint #type #vdev
52 typeset fs=${3##/}
57 if [[ -z $pool || -z $fs || -z $mntpoint ]]; then
58 log_note "Missing parameter: (\"$pool\", \"$fs\", \"$mntpoint\")"
78 datasetexists $pool/$fs && \
79 log_must cleanup_filesystem $pool $fs
87 'ctr') log_must zfs create $pool/$fs
88 log_must zfs set mountpoint=$mntpoint $pool/$fs
90 'vol') log_must zfs create -V $VOLSIZE $pool/$fs
[all...]
H A Dzfs_mount_007_pos.ksh75 typeset fs=$1
99 val=$(get_prop $prop $fs) || log_fail "get_prop $prop $fs"
109 fs=$TESTPOOL/$TESTFS
113 orig_val=$(get_prop $property $fs)
114 (($? != 0)) && log_fail "get_prop $property $fs"
117 reverse_opt=$(get_reverse_option $fs $property)
118 log_must zfs mount -o remount,$reverse_opt $fs
120 cur_val=$(get_prop $property $fs)
121 (($? != 0)) && log_fail "get_prop $property $fs"
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/mount/
H A Dumount_001.ksh46 for fs in 1 2 3; do
47 log_must mounted $TESTDIR.$fs
48 log_must zfs umount $TESTPOOL/$TESTFS.$fs
49 log_must unmounted $TESTDIR.$fs
50 log_must zfs mount $TESTPOOL/$TESTFS.$fs
51 log_must mounted $TESTDIR.$fs
H A Dumountall_001.ksh36 for fs in 1 2 3 ; do
37 log_must mounted $TESTPOOL/$TESTFS.$fs
46 for fs in $(mount -p | awk '{if ($4 == "zfs") print $3}'); do
47 zfs_list="$zfs_list $fs"
50 fs=''
51 for fs in $(umountall -n -F zfs 2>&1 | awk '{print $2}'); do
53 [[ $fs = $i ]] && continue 2
55 log_fail "umountall -n -F zfs tried to unmount $fs"
57 [[ -n $fs ]] || log_fail "umountall -n -F zfs produced no output"
H A Dsetup.ksh39 fs=$TESTPOOL/$TESTFS.$i
41 log_must zfs create $fs
43 log_must zfs set mountpoint=$dir $fs
45 log_must mounted $fs
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_set/
H A Dshare_mount_001_neg.ksh48 log_must zfs set mountpoint=$oldmpt $fs
54 fs=$TESTPOOL/$TESTFS
55 oldmpt=$(get_prop mountpoint $fs)
58 log_must zfs set mountpoint=$propval $fs
60 log_mustnot zfs mount $fs
61 log_mustnot zfs share $fs
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dinc.flg28 usr/src/uts/common/fs/ufs
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs/
H A Dzfs_002_pos.ksh54 for ds in $fs1 $fs $ctr; do
75 fs=$ctr/$TESTFS
77 snap=$fs@$TESTSNAP
81 typeset cmds=("create $fs" "list $fs" "snapshot $snap" "set snapdir=hidden $fs" \
82 "get snapdir $fs" "rollback $snap" "inherit snapdir $fs" \
83 "rename $fs $fs
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_share/
H A Dzfs_share_009_neg.ksh50 val=$(get_prop sharenfs $fs)
52 log_must zfs set sharenfs=off $fs
59 fs=$TESTPOOL/$TESTFS
60 sharenfs_val=$(get_prop sharenfs $fs)
61 mpt=$(get_prop mountpoint $fs)
63 log_must zfs set sharenfs=on $fs
68 log_must zfs share $fs
71 log_mustnot zfs share $fs
H A Dzfs_share_010_neg.ksh48 fs=$TESTPOOL/$TESTFS
52 log_mustnot eval "zfs share $arg $fs >/dev/null 2>&1"
56 for obj in "" "/$fs"; do
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_fs.h75 * For file system fs, the offsets of the various blocks of interest
77 * [fs->fs_sblkno] Super-block
78 * [fs->fs_cblkno] Cylinder group block
79 * [fs->fs_iblkno] Inode blocks
80 * [fs->fs_dblkno] Data blocks
81 * The beginning of cylinder group cg in fs, is given by
82 * the ``cgbase(fs, cg)'' macro.
107 * information in the inode, using the ``blksize(fs, ip, lbn)'' macro.
216 * These fields require the use of fs->fs_lock.
230 #define FSLOG ((char)0xfd) /* logging fs */
238 struct fs { struct
[all...]
/illumos-gate/usr/src/boot/sys/ufs/ffs/
H A Dfs.h29 * @(#)fs.h 8.13 (Berkeley) 3/21/95
51 * For filesystem fs, the offsets of the various blocks of interest
53 * [fs->fs_sblkno] Super-block
54 * [fs->fs_cblkno] Cylinder group block
55 * [fs->fs_iblkno] Inode blocks
56 * [fs->fs_dblkno] Data blocks
57 * The beginning of cylinder group cg in fs, is given by
58 * the ``cgbase(fs, cg)'' macro.
97 * information in the inode, using the ``blksize(fs, ip, lbn)'' macro.
260 struct fs { struct
651 lbn_offset(struct fs *fs, int level) argument
[all...]
/illumos-gate/usr/src/cmd/fs.d/
H A Dreq.flg25 echo_file usr/src/cmd/fs.d/Makefile.fstype
26 echo_file usr/src/cmd/fs.d/preenlib.c
/illumos-gate/usr/src/test/zfs-tests/tests/functional/userquota/
H A Duserquota_011_pos.ksh42 # 1. Create a pool, and create fs with preset user,group quota
51 for ds in $TESTPOOL/fs $TESTPOOL/fs-rename $TESTPOOL/fs-clone; do
66 -o groupquota@$QGROUP=$GQUOTA_SIZE $TESTPOOL/fs
68 log_must zfs snapshot $TESTPOOL/fs@snap
72 log_must check_quota "userquota@$QUSER1" $TESTPOOL/fs@snap "$UQUOTA_SIZE"
73 log_must check_quota "groupquota@$QGROUP" $TESTPOOL/fs@snap "$GQUOTA_SIZE"
76 log_note "clone fs gets its parent's userquota/groupquota initially"
79 $TESTPOOL/fs
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/zfs-retire/
H A Dzfs-retire.conf28 subscribe fault.fs.zfs.*
30 subscribe resource.fs.zfs.removed
31 subscribe resource.fs.zfs.statechange
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_user/zfs_list/
H A Dzfs_list_004_neg.ksh57 for fs in $paths ; do
58 log_mustnot zfs list $fs
59 log_mustnot zfs list -r $fs
/illumos-gate/usr/src/test/zfs-tests/tests/functional/history/
H A Dhistory_006_neg.ksh50 if datasetexists $fs ; then
51 log_must zfs destroy -rf $fs
53 log_must zfs create $fs
61 fs=$TESTPOOL/$TESTFS; snap1=$fs@snap1; snap2=$fs@snap2
62 log_must zfs set sharenfs=on $fs
70 log_must zfs list $fs > /dev/null
71 log_must zfs get mountpoint $fs > /dev/null
72 log_must zfs unmount $fs
[all...]
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_alloc.c54 #include <sys/fs/ufs_fs.h>
55 #include <sys/fs/ufs_inode.h>
56 #include <sys/fs/ufs_acl.h>
57 #include <sys/fs/ufs_bio.h>
58 #include <sys/fs/ufs_quota.h>
60 #include <sys/fs/ufs_trans.h>
61 #include <sys/fs/ufs_panic.h>
68 #include <fs/fs_subr.h>
71 #include <sys/fs/ufs_log.h>
107 struct fs *f local
186 struct fs *fs; local
298 struct fs *fs; local
478 struct fs *fs = dp->i_fs; local
537 struct fs *fs; local
625 struct fs *fs = ip->i_fs; local
773 struct fs *fs = ip->i_fs; local
847 struct fs *fs; local
897 struct fs *fs = ip->i_fs; local
978 struct fs *fs = ip->i_fs; local
1113 struct fs *fs; local
1294 struct fs *fs = ip->i_fs; local
1386 struct fs *fs = ufsvfsp->vfs_fs; local
1558 struct fs *fs; local
1955 struct fs *fs = ufsvfsp->vfs_fs; local
2048 findlogstartcg(struct fs *fs, daddr_t requested, daddr_t minblk) argument
[all...]
/illumos-gate/usr/src/cmd/fs.d/zfs/bootinstall/etc/
H A DSUNW,EC_zfs,ESC_ZFS_bootfs_vdev_attach,sysevent.conf24 EC_zfs ESC_ZFS_bootfs_vdev_attach SUNW - - - - /usr/lib/fs/zfs/bootinstall $pool_name $vdev_path
/illumos-gate/usr/src/stand/lib/fs/
H A Dreq.flg29 echo_file usr/src/stand/lib/fs/Makefile.com
/illumos-gate/usr/src/cmd/zdb/
H A Dinc.flg29 find_files "s.*" usr/src/uts/common/fs/zfs/sys
30 echo_file usr/src/uts/common/sys/fs/zfs.h

Completed in 144 milliseconds

1234567891011>>