/titanic_41/usr/src/psm/stand/bootblks/hsfs/ |
H A D | Makefile.hsfs | 33 HSFS_DIR = $(BASEDIR)/hsfs/common 35 FS_FCODE = boot-hsfs.fcode 36 FS_BB = hsfs.bb 38 HSFSBOOT_FTH = $(HSFS_DIR)/boot-hsfs.fth 39 HSFS_FTH = $(HSFS_DIR)/hsfs.fth 51 BOOTBLK_LINK = $(BOOTBLK_LINK_PREFIX)/hsfs/$(PROG)
|
/titanic_41/usr/src/uts/common/fs/hsfs/ |
H A D | hsfs_vfsops.c | 209 struct hsfs *hs_mounttab = NULL; 216 extern void hsched_init(struct hsfs *fsp, int fsid, 219 extern void hsfs_init_kstats(struct hsfs *fsp, int fsid); 220 extern void hsfs_fini_kstats(struct hsfs *fsp); 232 static int hs_getrootvp(struct vfs *vfsp, struct hsfs *fsp, size_t pathsize); 233 static int hs_findhsvol(struct hsfs *fsp, struct vnode *vp, 235 static int hs_parsehsvol(struct hsfs *fsp, uchar_t *volp, 237 static int hs_findisovol(struct hsfs *fsp, struct vnode *vp, 242 static int hs_parseisovol(struct hsfs *fsp, uchar_t *volp, 370 struct hsfs **tspp; in hsfs_unmount() [all …]
|
H A D | hsfs_node.c | 110 static void hs_addfreeb(struct hsfs *fsp, struct hsnode *hp); 112 uint_t last_offset, char *nm, int nmlen, struct hsfs *fsp, 115 static int strip_trailing(struct hsfs *fsp, char *nm, int len); 116 static int hs_namelen(struct hsfs *fsp, char *nm, int len); 211 struct hsfs *fsp; in hs_hsnode_cache_reclaim() 255 hs_addfreeb(struct hsfs *fsp, struct hsnode *hp) in hs_addfreeb() 278 hs_getfree(struct hsfs *fsp) in hs_getfree() 351 hs_remfree(struct hsfs *fsp, struct hsnode *hp) in hs_remfree() 382 struct hsfs *fsp; in hs_findhash() 427 hs_addhash(struct hsfs *fsp, struct hsnode *hp) in hs_addhash() [all …]
|
H A D | hsfs_subr.c | 310 struct hsfs *fsp; in hs_log_bogus_disk_warning() 350 struct hsfs *fsp; in hsfs_kstats_update() 394 hsfs_setup_named_kstats(struct hsfs *fsp, int fsid, char *name, in hsfs_setup_named_kstats() 428 hsfs_init_kstats(struct hsfs *fsp, int fsid) in hsfs_init_kstats() 435 hsfs_fini_kstats(struct hsfs *fsp) in hsfs_fini_kstats()
|
H A D | hsfs_susp_subr.c | 68 static int get_cont_area(struct hsfs *, uchar_t **, cont_info_t *); 89 struct hsfs *fsp, /* filesystem pointer */ in parse_sua() 369 struct hsfs *fsp; in hs_check_root_dirent() 473 get_cont_area(struct hsfs *fsp, uchar_t **buf_pp, cont_info_t *cont_info_p) in get_cont_area()
|
H A D | hsfs_vnops.c | 155 static void hsched_enqueue_io(struct hsfs *fsp, struct hio *hsio, int ra); 156 int hsched_invoke_strategy(struct hsfs *fsp); 313 struct hsfs *fsp; in hsfs_getattr() 379 struct hsfs *fsp; in hsfs_inactive() 482 struct hsfs *fsp; in hsfs_readdir() 803 struct hsfs *fsp, in hsfs_getpage_ra() 1098 struct hsfs *fsp; in hsfs_getapage() 1580 struct hsfs *fsp; in hsfs_getpage() 1992 hsched_init(struct hsfs *fsp, int fsid, struct modlinkage *modlinkage) in hsched_init() 2118 hsched_invoke_strategy(struct hsfs *fsp) in hsched_invoke_strategy() [all …]
|
/titanic_41/usr/src/uts/common/sys/fs/ |
H A D | hsfs_node.h | 208 struct hsfs *fsp; /* The filesystem structure */ 251 struct hsfs { struct 252 struct hsfs *hsfs_next; /* ptr to next entry in linked list */ argument 326 #define VFS_TO_HSFS(VFSP) ((struct hsfs *)(VFSP)->vfs_data) 335 #define LBN_TO_SEC(lbn, vfsp) ((lbn)>>((struct hsfs *)((vfsp)->vfs_data))-> \ 338 #define SEC_TO_LBN(sec, vfsp) ((sec)<<((struct hsfs *)((vfsp)->vfs_data))-> \ 341 #define LBN_TO_BYTE(lbn, vfsp) ((lbn)<<((struct hsfs *)((vfsp)->vfs_data))-> \ 343 #define BYTE_TO_LBN(boff, vfsp) ((boff)>>((struct hsfs *)((vfsp)->vfs_data))-> \
|
H A D | hsfs_impl.h | 59 extern void hs_freenode(vnode_t *vp, struct hsfs *fsp, int nopage); 61 extern int hs_parsedir(struct hsfs *fsp, uchar_t *dirp, 78 extern void hs_log_bogus_disk_warning(struct hsfs *fsp, int errtype, 90 extern struct hsfs *hs_mounttab;
|
H A D | hsfs_susp.h | 232 struct hsfs *fsp; /* file system */ 252 struct hs_direntry *, struct hsfs *, uchar_t *, int search_num);
|
/titanic_41/usr/src/psm/stand/bootblks/hsfs/sparc/sun4u/ |
H A D | Makefile | 36 include $(BASEDIR)/hsfs/Makefile.hsfs
|
/titanic_41/usr/src/psm/stand/bootblks/hsfs/sparc/sun4v/ |
H A D | Makefile | 36 include $(BASEDIR)/hsfs/Makefile.hsfs
|
/titanic_41/usr/src/psm/stand/bootblks/hsfs/i386/ |
H A D | Makefile | 32 include $(BASEDIR)/hsfs/Makefile.hsfs
|
/titanic_41/usr/src/psm/stand/bootblks/hsfs/sparc/ |
H A D | Makefile | 31 include $(BASEDIR)/hsfs/Makefile.hsfs
|
/titanic_41/usr/src/psm/stand/bootblks/hsfs/common/ |
H A D | boot-hsfs.fth | 30 : fs-pkg$ " hsfs-file-system" ; 31 : fs-type$ " hsfs" ; 37 fload ../../common/hsfs.fth
|
/titanic_41/usr/src/cmd/svc/milestone/ |
H A D | fs-root | 90 *backfstype=hsfs*) 91 cfsbacktype=hsfs
|
/titanic_41/usr/src/cmd/fs.d/hsfs/labelit/ |
H A D | Makefile | 26 FSTYPE= hsfs
|
/titanic_41/usr/src/psm/stand/bootblks/ |
H A D | Makefile | 31 SUBDIRS = ufs hsfs zfs
|
/titanic_41/usr/src/cmd/fs.d/hsfs/mount/ |
H A D | Makefile | 27 FSTYPE= hsfs
|
/titanic_41/usr/src/cmd/fs.d/hsfs/ |
H A D | Makefile | 44 POFILE= hsfs.po
|
/titanic_41/usr/src/stand/lib/ |
H A D | Makefile | 31 SUBDIRS = fakeboot fs/hsfs fs/nfs fs/ufs inet sa sock tcpstubs xdr \
|
/titanic_41/usr/src/man/man7fs/ |
H A D | Makefile | 26 hsfs.7fs \
|
/titanic_41/usr/src/cmd/fs.d/hsfs/fstyp/ |
H A D | Makefile | 27 FSTYPE= hsfs
|
/titanic_41/usr/src/uts/intel/hsfs/ |
H A D | Makefile | 42 MODULE = hsfs
|
/titanic_41/usr/src/uts/sparc/hsfs/ |
H A D | Makefile | 41 MODULE = hsfs
|
/titanic_41/usr/src/cmd/stmsboot/ |
H A D | mpxio-upgrade | 182 *backfstype=hsfs*) 183 cfsbacktype=hsfs
|