Symbol: wapbl
sys/kern/vfs_wapbl.c
1025
wapbl_buffered_flush(struct wapbl *wl, bool full)
sys/kern/vfs_wapbl.c
1075
wapbl_buffered_write(void *data, size_t len, struct wapbl *wl, daddr_t pbn,
sys/kern/vfs_wapbl.c
1157
wapbl_circ_write(struct wapbl *wl, void *data, size_t len, off_t *offp)
sys/kern/vfs_wapbl.c
1204
wapbl_begin(struct wapbl *wl, const char *file, int line)
sys/kern/vfs_wapbl.c
1260
wapbl_end(struct wapbl *wl)
sys/kern/vfs_wapbl.c
1289
wapbl_add_buf(struct wapbl *wl, struct buf * bp)
sys/kern/vfs_wapbl.c
1334
wapbl_remove_buf_locked(struct wapbl * wl, struct buf *bp)
sys/kern/vfs_wapbl.c
1373
wapbl_remove_buf(struct wapbl * wl, struct buf *bp)
sys/kern/vfs_wapbl.c
1382
wapbl_resize_buf(struct wapbl *wl, struct buf *bp, long oldsz, long oldcnt)
sys/kern/vfs_wapbl.c
1533
wapbl_truncate(struct wapbl *wl, size_t minfree)
sys/kern/vfs_wapbl.c
1622
struct wapbl *wl;
sys/kern/vfs_wapbl.c
1761
wapbl_flush(struct wapbl *wl, int waitfor)
sys/kern/vfs_wapbl.c
2034
wapbl_jlock_assert(struct wapbl *wl)
sys/kern/vfs_wapbl.c
2041
wapbl_junlock_assert(struct wapbl *wl)
sys/kern/vfs_wapbl.c
2051
wapbl_print(struct wapbl *wl, int full, void (*pr)(const char *, ...))
sys/kern/vfs_wapbl.c
2171
wapbl_dump(struct wapbl *wl)
sys/kern/vfs_wapbl.c
2186
wapbl_register_deallocation(struct wapbl *wl, daddr_t blk, int len, bool force,
sys/kern/vfs_wapbl.c
2241
wapbl_deallocation_free(struct wapbl *wl, struct wapbl_dealloc *wd,
sys/kern/vfs_wapbl.c
2261
wapbl_unregister_deallocation(struct wapbl *wl, void *cookie)
sys/kern/vfs_wapbl.c
2271
wapbl_inodetrk_init(struct wapbl *wl, u_int size)
sys/kern/vfs_wapbl.c
2282
wapbl_inodetrk_free(struct wapbl *wl)
sys/kern/vfs_wapbl.c
2296
wapbl_inodetrk_get(struct wapbl *wl, ino_t ino)
sys/kern/vfs_wapbl.c
2312
wapbl_register_inode(struct wapbl *wl, ino_t ino, mode_t mode)
sys/kern/vfs_wapbl.c
2336
wapbl_unregister_inode(struct wapbl *wl, ino_t ino, mode_t mode)
sys/kern/vfs_wapbl.c
2365
wapbl_transaction_inodes_len(struct wapbl *wl)
sys/kern/vfs_wapbl.c
2386
wapbl_transaction_len(struct wapbl *wl)
sys/kern/vfs_wapbl.c
2409
wapbl_cache_sync(struct wapbl *wl, const char *msg)
sys/kern/vfs_wapbl.c
2466
wapbl_write_commit(struct wapbl *wl, off_t head, off_t tail)
sys/kern/vfs_wapbl.c
2556
wapbl_write_blocks(struct wapbl *wl, off_t *offp)
sys/kern/vfs_wapbl.c
259
struct wapbl *wapbl_debug_wl;
sys/kern/vfs_wapbl.c
262
static int wapbl_write_commit(struct wapbl *, off_t, off_t);
sys/kern/vfs_wapbl.c
263
static int wapbl_write_blocks(struct wapbl *, off_t *);
sys/kern/vfs_wapbl.c
264
static int wapbl_write_revocations(struct wapbl *, off_t *);
sys/kern/vfs_wapbl.c
265
static int wapbl_write_inodes(struct wapbl *, off_t *);
sys/kern/vfs_wapbl.c
2651
wapbl_write_revocations(struct wapbl *wl, off_t *offp)
sys/kern/vfs_wapbl.c
2707
wapbl_write_inodes(struct wapbl *wl, off_t *offp)
sys/kern/vfs_wapbl.c
286
static void wapbl_inodetrk_init(struct wapbl *wl, u_int size);
sys/kern/vfs_wapbl.c
287
static void wapbl_inodetrk_free(struct wapbl *wl);
sys/kern/vfs_wapbl.c
288
static struct wapbl_ino *wapbl_inodetrk_get(struct wapbl *wl, ino_t ino);
sys/kern/vfs_wapbl.c
290
static size_t wapbl_transaction_len(struct wapbl *wl);
sys/kern/vfs_wapbl.c
291
static inline size_t wapbl_transaction_inodes_len(struct wapbl *wl);
sys/kern/vfs_wapbl.c
293
static void wapbl_deallocation_free(struct wapbl *, struct wapbl_dealloc *,
sys/kern/vfs_wapbl.c
296
static void wapbl_evcnt_init(struct wapbl *);
sys/kern/vfs_wapbl.c
297
static void wapbl_evcnt_free(struct wapbl *);
sys/kern/vfs_wapbl.c
299
static void wapbl_dkcache_init(struct wapbl *);
sys/kern/vfs_wapbl.c
3463
MODULE(MODULE_CLASS_VFS, wapbl, NULL);
sys/kern/vfs_wapbl.c
400
wapbl_evcnt_init(struct wapbl *wl)
sys/kern/vfs_wapbl.c
421
wapbl_evcnt_free(struct wapbl *wl)
sys/kern/vfs_wapbl.c
432
wapbl_dkcache_init(struct wapbl *wl)
sys/kern/vfs_wapbl.c
454
wapbl_start_flush_inodes(struct wapbl *wl, struct wapbl_replay *wr)
sys/kern/vfs_wapbl.c
501
wapbl_start(struct wapbl ** wlp, struct mount *mp, struct vnode *vp,
sys/kern/vfs_wapbl.c
505
struct wapbl *wl;
sys/kern/vfs_wapbl.c
705
wapbl_discard(struct wapbl *wl)
sys/kern/vfs_wapbl.c
844
wapbl_stop(struct wapbl *wl, int force)
sys/kern/vfs_wapbl.c
998
wapbl_buffered_write_async(struct wapbl *wl, struct buf *bp)
sys/sys/mount.h
155
struct wapbl *mnt_wapbl; /* log info */
sys/sys/mount.h
286
void (*wo_wapbl_discard)(struct wapbl *);
sys/sys/mount.h
290
void (*wo_wapbl_add_buf)(struct wapbl *, struct buf *);
sys/sys/mount.h
291
void (*wo_wapbl_remove_buf)(struct wapbl *, struct buf *);
sys/sys/mount.h
292
void (*wo_wapbl_resize_buf)(struct wapbl *, struct buf *, long, long);
sys/sys/mount.h
293
int (*wo_wapbl_begin)(struct wapbl *, const char *, int);
sys/sys/mount.h
294
void (*wo_wapbl_end)(struct wapbl *);
sys/sys/mount.h
295
void (*wo_wapbl_junlock_assert)(struct wapbl *);
sys/sys/mount.h
296
void (*wo_wapbl_jlock_assert)(struct wapbl *);
sys/sys/wapbl.h
109
struct wapbl *we_wapbl;
sys/sys/wapbl.h
121
int wapbl_start(struct wapbl **, struct mount *, struct vnode *, daddr_t,
sys/sys/wapbl.h
126
void wapbl_discard(struct wapbl *);
sys/sys/wapbl.h
129
int wapbl_stop(struct wapbl *, int);
sys/sys/wapbl.h
136
int wapbl_begin(struct wapbl *, const char *, int);
sys/sys/wapbl.h
140
void wapbl_end(struct wapbl *);
sys/sys/wapbl.h
148
void wapbl_add_buf(struct wapbl *, struct buf *);
sys/sys/wapbl.h
151
void wapbl_remove_buf(struct wapbl *, struct buf *);
sys/sys/wapbl.h
153
void wapbl_resize_buf(struct wapbl *, struct buf *, long, long);
sys/sys/wapbl.h
159
int wapbl_flush(struct wapbl *, int);
sys/sys/wapbl.h
167
void wapbl_register_inode(struct wapbl *, ino_t, mode_t);
sys/sys/wapbl.h
168
void wapbl_unregister_inode(struct wapbl *, ino_t, mode_t);
sys/sys/wapbl.h
176
int wapbl_register_deallocation(struct wapbl *, daddr_t, int, bool,
sys/sys/wapbl.h
178
void wapbl_unregister_deallocation(struct wapbl *, void *);
sys/sys/wapbl.h
180
void wapbl_jlock_assert(struct wapbl *wl);
sys/sys/wapbl.h
181
void wapbl_junlock_assert(struct wapbl *wl);
sys/sys/wapbl.h
183
void wapbl_print(struct wapbl *wl, int full, void (*pr)(const char *, ...)
sys/sys/wapbl.h
187
void wapbl_dump(struct wapbl *);
sys/sys/wapbl.h
95
struct wapbl;
sys/ufs/ffs/ffs_inode.c
225
bool wapbl = omp->mnt_wapbl != NULL;
sys/ufs/ffs/ffs_inode.c
276
if (wapbl) {
sys/ufs/ffs/ffs_inode.c
641
const int wapbl = (ip->i_ump->um_mountp->mnt_wapbl != NULL);
sys/ufs/ffs/ffs_inode.c
712
if (lastbn >= 0 && !wapbl) {
sys/ufs/ffs/ffs_inode.c
792
} else if (wapbl) {