HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 1 - 25 of 876) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
fs.h 42 * @(#)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...]
ufs.h 62 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, x) ((x) % (grub_uint32_t)INOPB(fs)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/ext2/
ext2_resize.c 27 static int ext2_add_group(struct ext2_fs *fs, blk_t groupsize)
35 if (fs->opt_verbose)
38 if (!ped_realloc ((void*) &fs->gd,
39 (fs->numgroups+1) * sizeof(struct ext2_group_desc)
40 + fs->blocksize))
43 if (fs->opt_debug)
45 if (EXT2_SUPER_BLOCKS_COUNT(fs->sb) !=
46 EXT2_SUPER_FIRST_DATA_BLOCK(fs->sb)
47 + fs->numgroups * EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb)
    [all...]
ext2_meta.c 27 int ext2_metadata_push(struct ext2_fs *fs, blk_t newsize)
34 - EXT2_SUPER_FIRST_DATA_BLOCK(fs->sb),
35 EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb));
38 fs->blocksize);
41 if (newitoffset <= fs->itoffset)
44 for (i=0;i<fs->numgroups;i++)
51 start = (i * EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb))
52 + EXT2_SUPER_FIRST_DATA_BLOCK(fs->sb);
54 if (EXT2_GROUP_INODE_TABLE(fs->gd[i]) >= start + newitoffset
55 && EXT2_GROUP_BLOCK_BITMAP(fs->gd[i]) >= start + newitoffset -
    [all...]
ext2_inode_relocator.c 98 static int addref(struct ext2_fs *fs, struct ext2_inode_relocator_state *state, ino_t inode, blk_t block, off_t offset)
127 static int doblock(struct ext2_fs *fs, struct ext2_inode_relocator_state *state, blk_t blockno)
132 bh = ext2_bread(fs, blockno);
144 if (!addref(fs, state, EXT2_DIRENT_INODE(*ptr), blockno,
150 } while (offset < fs->blocksize);
156 static int doindblock(struct ext2_fs *fs, struct ext2_inode_relocator_state *state, blk_t blockno)
162 bh = ext2_bread(fs, blockno);
164 for (i=0;i<(fs->blocksize>>2);i++)
166 if (!doblock(fs, state, blk))
173 static int dodindblock(struct ext2_fs *fs, struct ext2_inode_relocator_state *state, blk_t blockno
    [all...]
ext2.c 34 int ext2_copy_block(struct ext2_fs *fs, blk_t from, blk_t to)
36 unsigned char* buf = ped_malloc (fs->blocksize);
38 if (!ext2_bcache_flush(fs, from)) return 0;
39 if (!ext2_bcache_flush(fs, to)) return 0;
41 if (!ext2_read_blocks(fs, buf, from, 1)) return 0;
42 if (!ext2_write_blocks(fs, buf, to, 1)) return 0;
47 int ext2_get_block_state(struct ext2_fs *fs, blk_t block)
54 block -= EXT2_SUPER_FIRST_DATA_BLOCK(fs->sb);
55 group = block / EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb);
56 offset = block % EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb)
673 struct ext2_fs *fs; local
    [all...]
ext2.h 70 struct ext2_fs *fs; member in struct:ext2_buffer_cache
159 int ext2_copy_block (struct ext2_fs *fs, blk_t from, blk_t to);
160 void ext2_close (struct ext2_fs *fs);
161 int ext2_commit_metadata (struct ext2_fs *fs, int copies);
162 off_t ext2_get_inode_offset (struct ext2_fs *fs, ino_t inode, blk_t *block);
163 blk_t ext2_find_free_block (struct ext2_fs *fs);
164 ino_t ext2_find_free_inode (struct ext2_fs *fs);
165 int ext2_get_inode_state (struct ext2_fs *fs, ino_t inode);
166 int ext2_is_group_sparse (struct ext2_fs *fs, int group);
167 int ext2_move_blocks (struct ext2_fs *fs, blk_t src, blk_t num, blk_t dest)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/dicts/
ZFS.dict 31 ereport.fs.zfs.pool.corrupt_cache=1
32 ereport.fs.zfs.device.missing_r=2
33 ereport.fs.zfs.device.missing_nr=3
34 ereport.fs.zfs.device.corrupt_label_r=4
35 ereport.fs.zfs.device.corrupt_label_nr=5
36 ereport.fs.zfs.pool.bad_guid_sum=6
37 ereport.fs.zfs.pool.corrupt_pool=7
38 ereport.fs.zfs.object.corrupt_data=8
39 ereport.fs.zfs.device.failing=9
40 ereport.fs.zfs.device.version_mismatch=1
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/ufs/fsck/
inc.flg 28 usr/src/uts/common/fs/ufs
  /onnv/onnv-gate/usr/src/uts/common/sys/fs/
ufs_fs.h 75 * 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...]
  /onnv/onnv-gate/usr/src/lib/libparted/i386/
Makefile 32 pics/libparted/fs/amiga \
33 pics/libparted/fs/ext2 \
34 pics/libparted/fs/fat \
35 pics/libparted/fs/hfs \
36 pics/libparted/fs/jfs \
37 pics/libparted/fs/linux_swap \
38 pics/libparted/fs/ntfs \
39 pics/libparted/fs/reiserfs \
40 pics/libparted/fs/solaris_x86 \
41 pics/libparted/fs/ufs
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/cachefslog/
cachefslog.c 38 #include <sys/fs/cachefs_log.h>
56 stats_cookie_t *fs = NULL; local
102 fs = stats_create_mountpath(argv[optind], prog);
103 if (fs == NULL) {
109 if (! stats_good(fs)) {
110 pr_err(stats_errorstr(fs));
111 rc = stats_errno(fs);
115 if ((logfile = stats_log_kernel_getname(fs)) == NULL) {
116 pr_err(stats_errorstr(fs));
117 rc = stats_errno(fs);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/
req.flg 25 echo_file usr/src/cmd/fs.d/Makefile.fstype
26 echo_file usr/src/cmd/fs.d/preenlib.c
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/fat/
fatio.c 34 fat_read_fragments (PedFileSystem* fs, char* buf, FatFragment frag,
37 FatSpecific* fs_info = FAT_SPECIFIC (fs);
38 PedSector sector = fat_frag_to_sector (fs, frag);
43 return ped_geometry_read (fs->geom, buf, sector, sector_count);
47 fat_read_fragment (PedFileSystem* fs, char* buf, FatFragment frag)
49 return fat_read_fragments (fs, buf, frag, 1);
53 fat_write_fragments (PedFileSystem* fs, char* buf, FatFragment frag,
56 FatSpecific* fs_info = FAT_SPECIFIC (fs);
57 PedSector sector = fat_frag_to_sector (fs, frag);
62 return ped_geometry_write (fs->geom, buf, sector, sector_count)
    [all...]
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWudfr/
prototype_i386 52 f none kernel/fs/udfs 755 root sys
53 d none kernel/fs/amd64 755 root sys
54 f none kernel/fs/amd64/udfs 755 root sys
prototype_sparc 50 d none kernel/fs/sparcv9 755 root sys
51 f none kernel/fs/sparcv9/udfs 755 root sys
  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/zfs-retire/
zfs-retire.conf 28 subscribe fault.fs.zfs.*
30 subscribe resource.fs.zfs.removed
31 subscribe resource.fs.zfs.statechange
  /onnv/onnv-gate/usr/src/uts/common/fs/ufs/
ufs_alloc.c 54 #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 *fs 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
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/linux_swap/
linux_swap.c 35 #define SWAP_SPECIFIC(fs) ((SwapSpecific*) (fs->type_specific))
74 static int swap_close (PedFileSystem* fs);
79 PedFileSystem* fs; local
84 fs = swap_open (geom);
85 if (!fs)
87 fs_info = SWAP_SPECIFIC (fs);
96 swap_close (fs);
100 swap_close (fs);
109 PedFileSystem* fs; local
151 PedFileSystem* fs; local
207 PedFileSystem* fs; local
404 PedFileSystem* fs; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/shadow/java/awt/
JAShadowAccess.java 89 public static int incrCursor(FrameShadow fs) {
90 return fs.incrCursor();
93 public static int decrCursor(FrameShadow fs) {
94 return fs.decrCursor();
97 public static void setPrevCursor(FrameShadow fs, int cursor) {
98 fs.setPrevCursor(cursor);
101 public static int getPrevCursor(FrameShadow fs) {
102 return fs.getPrevCursor();
  /onnv/onnv-gate/usr/src/stand/lib/fs/
req.flg 29 echo_file usr/src/stand/lib/fs/Makefile.com
  /onnv/onnv-gate/usr/src/cmd/fs.d/zfs/zfsdle/etc/
SUNW,EC_dev_status,ESC_dev_dle,sysevent.conf 27 EC_dev_status ESC_dev_dle SUNW - - - - /usr/lib/fs/zfs/zfsdle $phys_path
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/zfs/
inc.flg 29 find_files "s.*" usr/src/uts/common/fs/zfs/sys
30 echo_file usr/src/uts/common/sys/fs/zfs.h
  /onnv/onnv-gate/usr/src/cmd/zdb/
inc.flg 29 find_files "s.*" usr/src/uts/common/fs/zfs/sys
30 echo_file usr/src/uts/common/sys/fs/zfs.h
  /onnv/onnv-gate/usr/src/cmd/ztest/
inc.flg 29 find_files "s.*" usr/src/uts/common/fs/zfs/sys
30 echo_file usr/src/uts/common/sys/fs/zfs.h

Completed in 6790 milliseconds

1 2 3 4 5 6 7 8 91011>>