Symbol: ext2_gd
sbin/fsck_ext2fs/fsck.h
91
struct ext2_gd *b_cgd; /* cylinder group descriptor */
sbin/fsck_ext2fs/setup.c
237
sizeof(struct ext2_gd)],
sbin/fsck_ext2fs/setup.c
342
sblock.e2fs_bsize / sizeof(struct ext2_gd));
sbin/fsck_ext2fs/setup.c
536
fs->e2fs_bsize / sizeof(struct ext2_gd));
sbin/fsck_ext2fs/utilities.c
240
&sblock.e2fs_gd[i* sblock.e2fs_bsize / sizeof(struct ext2_gd)],
sbin/newfs_ext2fs/mke2fs.c
295
blocks_gd = howmany(sizeof(struct ext2_gd) * ncg, bsize);
sbin/newfs_ext2fs/mke2fs.c
329
blocks_gd = howmany(sizeof(struct ext2_gd) * ncg, bsize);
sbin/newfs_ext2fs/mke2fs.c
444
target_ngdb = howmany(sizeof(struct ext2_gd) * target_ncg,
sbin/newfs_ext2fs/mke2fs.c
679
e2fs_cgsave(gd, (struct ext2_gd *)(iobuf + sblock.e2fs_bsize),
sbin/newfs_ext2fs/mke2fs.c
680
sizeof(struct ext2_gd) * sblock.e2fs_ncg);
sbin/newfs_ext2fs/mke2fs.c
710
e2fs_cgsave(gd, (struct ext2_gd *)(iobuf +
sbin/newfs_ext2fs/mke2fs.c
712
sizeof(struct ext2_gd) * sblock.e2fs_ncg);
sys/lib/libsa/ext2fs.c
451
howmany(fs->e2fs_ncg, fs->e2fs_bsize / sizeof(struct ext2_gd));
sys/lib/libsa/ext2fs.c
466
gdpb = fs->e2fs_bsize / sizeof(struct ext2_gd);
sys/lib/libsa/ext2fs.c
478
e2fs_cgload((struct ext2_gd *)fp->f_buf,
sys/lib/libsa/ext2fs.c
481
(fs->e2fs_ncg - gdpb * i) * sizeof(struct ext2_gd):
sys/lib/libsa/ext2fs.c
533
fs->e2fs_gd = alloc(sizeof(struct ext2_gd) * fs->e2fs_ncg);
sys/lib/libsa/ext2fs.c
711
sizeof(struct ext2_gd) * fp->f_fs->e2fs_ncg);
sys/ufs/ext2fs/ext2fs.h
256
struct ext2_gd *e2fs_gd; /* group descriptors (data not byteswapped) */
sys/ufs/ext2fs/ext2fs.h
447
#define E2FS_REV0_GD_SIZE (sizeof(struct ext2_gd) / 2) /* 32 */
sys/ufs/ext2fs/ext2fs_alloc.c
665
ext2fs_cg_update(struct m_ext2fs *fs, int cg, struct ext2_gd *gd, int nbfree, int nifree, int ndirs, daddr_t ioff)
sys/ufs/ext2fs/ext2fs_alloc.c
797
ext2fs_cg_get_csum(struct m_ext2fs *fs, int cg, struct ext2_gd *gd)
sys/ufs/ext2fs/ext2fs_alloc.c
808
off = offsetof(struct ext2_gd, ext2bgd_checksum);
sys/ufs/ext2fs/ext2fs_alloc.c
823
off = offsetof(struct ext2_gd, ext2bgd_checksum);
sys/ufs/ext2fs/ext2fs_alloc.c
835
ext2fs_init_bb(struct m_ext2fs *fs, int cg, struct ext2_gd *gd, char *bbp)
sys/ufs/ext2fs/ext2fs_alloc.c
857
struct ext2_gd *gd;
sys/ufs/ext2fs/ext2fs_alloc.c
94
struct ext2_gd *, int, int, int, daddr_t);
sys/ufs/ext2fs/ext2fs_alloc.c
95
static uint16_t ext2fs_cg_get_csum(struct m_ext2fs *, int, struct ext2_gd *);
sys/ufs/ext2fs/ext2fs_alloc.c
96
static void ext2fs_init_bb(struct m_ext2fs *, int, struct ext2_gd *,
sys/ufs/ext2fs/ext2fs_vfsops.c
163
e2fs_cgload(const char *ondisk, struct ext2_gd *inmemory, int cg_size,
sys/ufs/ext2fs/ext2fs_vfsops.c
173
struct ext2_gd *optr = inmemory;
sys/ufs/ext2fs/ext2fs_vfsops.c
190
e2fs_cgsave(const struct ext2_gd *inmemory, char *ondisk, int cg_size,
sys/ufs/ext2fs/ext2fs_vfsops.c
199
const struct ext2_gd *iptr = inmemory;
sys/ufs/ext2fs/ext2fs_vfsops.c
762
* sizeof(struct ext2_gd), KM_SLEEP);
sys/ufs/ext2fs/ext2fs_vfsops.c
805
kmem_free(m_fs->e2fs_gd, m_fs->e2fs_ngdb * sh * sizeof(struct ext2_gd));
sys/ufs/ext2fs/ext2fs_vfsops.c
847
kmem_free(fs->e2fs_gd, fs->e2fs_ngdb * sh * sizeof(struct ext2_gd));
usr.sbin/installboot/ext2fs.c
155
howmany(fs->e2fs_ncg, fs->e2fs_bsize / sizeof(struct ext2_gd));
usr.sbin/installboot/ext2fs.c
169
gdpb = fs->e2fs_bsize / sizeof(struct ext2_gd);
usr.sbin/installboot/ext2fs.c
177
e2fs_cgload((struct ext2_gd *)gdbuf, &fs->e2fs_gd[gdpb * i],
usr.sbin/installboot/ext2fs.c
179
(fs->e2fs_ncg - gdpb * i) * sizeof(struct ext2_gd):
usr.sbin/installboot/ext2fs.c
220
fs->e2fs_gd = malloc(sizeof(struct ext2_gd) * fs->e2fs_ncg);