Home
last modified time | relevance | path

Searched refs:jblocks (Results 1 – 4 of 4) sorted by relevance

/NextBSD/sbin/fsck_ffs/
HDsuj.c2405 struct jblocks { struct
2417 static struct jblocks *suj_jblocks; argument
2419 static struct jblocks *
2422 struct jblocks *jblocks; in jblocks_create() local
2425 jblocks = errmalloc(sizeof(*jblocks)); in jblocks_create()
2426 jblocks->jb_avail = 10; in jblocks_create()
2427 jblocks->jb_used = 0; in jblocks_create()
2428 jblocks->jb_head = 0; in jblocks_create()
2429 jblocks->jb_off = 0; in jblocks_create()
2430 size = sizeof(struct jextent) * jblocks->jb_avail; in jblocks_create()
[all …]
/NextBSD/sys/ufs/ffs/
HDffs_softdep.c833 static void free_jsegs(struct jblocks *);
835 static void free_jseg(struct jseg *, struct jblocks *);
953 static struct jblocks *jblocks_create(void);
954 static ufs2_daddr_t jblocks_alloc(struct jblocks *, int, int *);
955 static void jblocks_free(struct jblocks *, struct mount *, int);
956 static void jblocks_destroy(struct jblocks *);
957 static void jblocks_add(struct jblocks *, ufs2_daddr_t, int);
2374 struct jblocks *jblocks; local
2379 jblocks = ump->softdep_jblocks;
2380 jseg = TAILQ_LAST(&jblocks->jb_segs, jseglst);
[all …]
HDsoftdep.h962 struct jblocks *js_jblocks; /* Back pointer to block/seg list */
988 struct jblocks { struct
1033 struct jblocks *sd_jblocks; /* Journal block information */
/NextBSD/sys/ufs/ufs/
HDufsmount.h58 struct jblocks;