Searched refs:busymap (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/cmd/fs.d/ |
H A D | preenlib.c | 46 uint_t *busymap; /* bitmask of active units */ member 235 drvp->mapsize, drvp->busymap); in get_runnable() 350 dp->busymap = NULL; in alloc_driver() 420 drvp->busymap = drvp->mapsize ? in makebusy() 421 (uint_t *)realloc(drvp->busymap, in makebusy() 424 if (drvp->busymap == NULL) { in makebusy() 428 (void) memset((char *)&drvp->busymap[drvp->mapsize], 0, in makebusy() 434 drvp->busymap[i] |= dev->unitmap[i]; in makebusy() 452 drvp->busymap[i] &= ~(devp->unitmap[i]); in notbusy()
|
/illumos-gate/usr/src/cmd/fs.d/udfs/fsck/ |
H A D | fsck.h | 168 extern char *busymap; /* ptr to primary blk busy map */ 198 #define setbusy(blkno) setbit(busymap, blkno) 199 #define testbusy(blkno) isset(busymap, blkno) 200 #define clrbusy(blkno) clrbit(busymap, blkno)
|
H A D | setup.c | 77 char *busymap; variable 533 busymap = calloc((unsigned)part_bmp_bytes, sizeof (char)); in readvolseq() 534 if (busymap == NULL) { in readvolseq()
|
H A D | pass1.c | 572 bp = busymap; in dofreemap() 573 for (i = 0, bp = busymap; i < part_bmp_bytes; i++, bp++) in dofreemap() 579 bp = busymap; in dofreemap()
|