Lines Matching refs:hsfsp
103 static struct hs_volume *hsfsp; variable
406 if (hsfsp != NULL) in bhsfs_mountroot()
411 hsfsp = bkmem_alloc(sizeof (*hsfsp)); in bhsfs_mountroot()
412 bzero(hsfsp, sizeof (*hsfsp)); in bhsfs_mountroot()
439 hsfsp->vol_size = ISO_VOL_SIZE(bufp); in bhsfs_mountroot()
440 hsfsp->lbn_size = ISO_BLK_SIZE(bufp); in bhsfs_mountroot()
441 hsfsp->lbn_shift = ISO_SECTOR_SHIFT; in bhsfs_mountroot()
442 hsfsp->lbn_secshift = ISO_SECTOR_SHIFT; in bhsfs_mountroot()
443 hsfsp->vol_set_size = (ushort_t)ISO_SET_SIZE(bufp); in bhsfs_mountroot()
444 hsfsp->vol_set_seq = (ushort_t)ISO_SET_SEQ(bufp); in bhsfs_mountroot()
447 if (hsfsp->lbn_size & ~(1 << hsfsp->lbn_shift)) { in bhsfs_mountroot()
448 printf("%d invalid logical block size\n", hsfsp->lbn_size); in bhsfs_mountroot()
461 if (hsfsp == NULL) in bhsfs_unmountroot()
548 bkmem_free(hsfsp, sizeof (*hsfsp)); in bhsfs_closeall()
550 hsfsp = NULL; in bhsfs_closeall()