Home | History | Annotate | Line # | Download | only in kern
vfs_wapbl.c revision 1.39.4.2
      1  1.39.4.2    bouyer /*	$NetBSD: vfs_wapbl.c,v 1.39.4.2 2011/03/05 15:10:41 bouyer Exp $	*/
      2       1.2    simonb 
      3       1.2    simonb /*-
      4      1.23        ad  * Copyright (c) 2003, 2008, 2009 The NetBSD Foundation, Inc.
      5       1.2    simonb  * All rights reserved.
      6       1.2    simonb  *
      7       1.2    simonb  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2    simonb  * by Wasabi Systems, Inc.
      9       1.2    simonb  *
     10       1.2    simonb  * Redistribution and use in source and binary forms, with or without
     11       1.2    simonb  * modification, are permitted provided that the following conditions
     12       1.2    simonb  * are met:
     13       1.2    simonb  * 1. Redistributions of source code must retain the above copyright
     14       1.2    simonb  *    notice, this list of conditions and the following disclaimer.
     15       1.2    simonb  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2    simonb  *    notice, this list of conditions and the following disclaimer in the
     17       1.2    simonb  *    documentation and/or other materials provided with the distribution.
     18       1.2    simonb  *
     19       1.2    simonb  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.2    simonb  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.2    simonb  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.2    simonb  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.2    simonb  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.2    simonb  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.2    simonb  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.2    simonb  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.2    simonb  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.2    simonb  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.2    simonb  * POSSIBILITY OF SUCH DAMAGE.
     30       1.2    simonb  */
     31       1.2    simonb 
     32       1.2    simonb /*
     33       1.2    simonb  * This implements file system independent write ahead filesystem logging.
     34       1.2    simonb  */
     35       1.4     joerg 
     36       1.4     joerg #define WAPBL_INTERNAL
     37       1.4     joerg 
     38       1.2    simonb #include <sys/cdefs.h>
     39  1.39.4.2    bouyer __KERNEL_RCSID(0, "$NetBSD: vfs_wapbl.c,v 1.39.4.2 2011/03/05 15:10:41 bouyer Exp $");
     40       1.2    simonb 
     41       1.2    simonb #include <sys/param.h>
     42      1.31   mlelstv #include <sys/bitops.h>
     43       1.2    simonb 
     44       1.2    simonb #ifdef _KERNEL
     45       1.2    simonb #include <sys/param.h>
     46       1.2    simonb #include <sys/namei.h>
     47       1.2    simonb #include <sys/proc.h>
     48      1.39  christos #include <sys/sysctl.h>
     49       1.2    simonb #include <sys/uio.h>
     50       1.2    simonb #include <sys/vnode.h>
     51       1.2    simonb #include <sys/file.h>
     52      1.19      yamt #include <sys/malloc.h>
     53      1.35     pooka #include <sys/module.h>
     54       1.2    simonb #include <sys/resourcevar.h>
     55       1.2    simonb #include <sys/conf.h>
     56       1.2    simonb #include <sys/mount.h>
     57       1.2    simonb #include <sys/kernel.h>
     58       1.2    simonb #include <sys/kauth.h>
     59       1.2    simonb #include <sys/mutex.h>
     60       1.2    simonb #include <sys/atomic.h>
     61       1.2    simonb #include <sys/wapbl.h>
     62      1.16     joerg #include <sys/wapbl_replay.h>
     63       1.2    simonb 
     64       1.2    simonb #include <miscfs/specfs/specdev.h>
     65       1.2    simonb 
     66      1.19      yamt #if 0 /* notyet */
     67      1.18      yamt #define	wapbl_malloc(s) kmem_alloc((s), KM_SLEEP)
     68      1.18      yamt #define	wapbl_free(a, s) kmem_free((a), (s))
     69      1.18      yamt #define	wapbl_calloc(n, s) kmem_zalloc((n)*(s), KM_SLEEP)
     70      1.19      yamt #else
     71      1.19      yamt MALLOC_JUSTDEFINE(M_WAPBL, "wapbl", "write-ahead physical block logging");
     72      1.19      yamt #define	wapbl_malloc(s) malloc((s), M_WAPBL, M_WAITOK)
     73      1.19      yamt #define	wapbl_free(a, s) free((a), M_WAPBL)
     74      1.19      yamt #define	wapbl_calloc(n, s) malloc((n)*(s), M_WAPBL, M_WAITOK | M_ZERO)
     75      1.19      yamt #endif
     76       1.2    simonb 
     77      1.39  christos static struct sysctllog *wapbl_sysctl;
     78      1.39  christos static int wapbl_flush_disk_cache = 1;
     79      1.39  christos static int wapbl_verbose_commit = 0;
     80      1.39  christos 
     81       1.2    simonb #else /* !_KERNEL */
     82       1.2    simonb #include <assert.h>
     83       1.2    simonb #include <errno.h>
     84       1.2    simonb #include <stdio.h>
     85       1.2    simonb #include <stdbool.h>
     86       1.2    simonb #include <stdlib.h>
     87       1.2    simonb #include <string.h>
     88       1.2    simonb 
     89       1.2    simonb #include <sys/time.h>
     90       1.2    simonb #include <sys/wapbl.h>
     91      1.16     joerg #include <sys/wapbl_replay.h>
     92       1.2    simonb 
     93       1.2    simonb #define	KDASSERT(x) assert(x)
     94       1.2    simonb #define	KASSERT(x) assert(x)
     95       1.2    simonb #define	wapbl_malloc(s) malloc(s)
     96      1.18      yamt #define	wapbl_free(a, s) free(a)
     97       1.2    simonb #define	wapbl_calloc(n, s) calloc((n), (s))
     98       1.2    simonb 
     99       1.2    simonb #endif /* !_KERNEL */
    100       1.2    simonb 
    101       1.2    simonb /*
    102       1.2    simonb  * INTERNAL DATA STRUCTURES
    103       1.2    simonb  */
    104       1.2    simonb 
    105       1.2    simonb /*
    106       1.2    simonb  * This structure holds per-mount log information.
    107       1.2    simonb  *
    108       1.2    simonb  * Legend:	a = atomic access only
    109       1.2    simonb  *		r = read-only after init
    110       1.2    simonb  *		l = rwlock held
    111       1.2    simonb  *		m = mutex held
    112      1.38   hannken  *		lm = rwlock held writing or mutex held
    113       1.2    simonb  *		u = unlocked access ok
    114       1.2    simonb  *		b = bufcache_lock held
    115       1.2    simonb  */
    116       1.2    simonb struct wapbl {
    117       1.2    simonb 	struct vnode *wl_logvp;	/* r:	log here */
    118       1.2    simonb 	struct vnode *wl_devvp;	/* r:	log on this device */
    119       1.2    simonb 	struct mount *wl_mount;	/* r:	mountpoint wl is associated with */
    120       1.2    simonb 	daddr_t wl_logpbn;	/* r:	Physical block number of start of log */
    121       1.2    simonb 	int wl_log_dev_bshift;	/* r:	logarithm of device block size of log
    122       1.2    simonb 					device */
    123       1.2    simonb 	int wl_fs_dev_bshift;	/* r:	logarithm of device block size of
    124       1.2    simonb 					filesystem device */
    125       1.2    simonb 
    126       1.3      yamt 	unsigned wl_lock_count;	/* m:	Count of transactions in progress */
    127       1.2    simonb 
    128       1.2    simonb 	size_t wl_circ_size; 	/* r:	Number of bytes in buffer of log */
    129       1.2    simonb 	size_t wl_circ_off;	/* r:	Number of bytes reserved at start */
    130       1.2    simonb 
    131       1.2    simonb 	size_t wl_bufcount_max;	/* r:	Number of buffers reserved for log */
    132       1.2    simonb 	size_t wl_bufbytes_max;	/* r:	Number of buf bytes reserved for log */
    133       1.2    simonb 
    134       1.2    simonb 	off_t wl_head;		/* l:	Byte offset of log head */
    135       1.2    simonb 	off_t wl_tail;		/* l:	Byte offset of log tail */
    136       1.2    simonb 	/*
    137       1.2    simonb 	 * head == tail == 0 means log is empty
    138       1.2    simonb 	 * head == tail != 0 means log is full
    139       1.2    simonb 	 * see assertions in wapbl_advance() for other boundary conditions.
    140       1.2    simonb 	 * only truncate moves the tail, except when flush sets it to
    141       1.2    simonb 	 * wl_header_size only flush moves the head, except when truncate
    142       1.2    simonb 	 * sets it to 0.
    143       1.2    simonb 	 */
    144       1.2    simonb 
    145       1.2    simonb 	struct wapbl_wc_header *wl_wc_header;	/* l	*/
    146       1.2    simonb 	void *wl_wc_scratch;	/* l:	scratch space (XXX: por que?!?) */
    147       1.2    simonb 
    148       1.2    simonb 	kmutex_t wl_mtx;	/* u:	short-term lock */
    149       1.2    simonb 	krwlock_t wl_rwlock;	/* u:	File system transaction lock */
    150       1.2    simonb 
    151       1.2    simonb 	/*
    152       1.2    simonb 	 * Must be held while accessing
    153       1.2    simonb 	 * wl_count or wl_bufs or head or tail
    154       1.2    simonb 	 */
    155       1.2    simonb 
    156       1.2    simonb 	/*
    157       1.2    simonb 	 * Callback called from within the flush routine to flush any extra
    158       1.2    simonb 	 * bits.  Note that flush may be skipped without calling this if
    159       1.2    simonb 	 * there are no outstanding buffers in the transaction.
    160       1.2    simonb 	 */
    161       1.5     joerg #if _KERNEL
    162       1.2    simonb 	wapbl_flush_fn_t wl_flush;	/* r	*/
    163       1.2    simonb 	wapbl_flush_fn_t wl_flush_abort;/* r	*/
    164       1.5     joerg #endif
    165       1.2    simonb 
    166       1.2    simonb 	size_t wl_bufbytes;	/* m:	Byte count of pages in wl_bufs */
    167       1.2    simonb 	size_t wl_bufcount;	/* m:	Count of buffers in wl_bufs */
    168       1.2    simonb 	size_t wl_bcount;	/* m:	Total bcount of wl_bufs */
    169       1.2    simonb 
    170       1.2    simonb 	LIST_HEAD(, buf) wl_bufs; /* m:	Buffers in current transaction */
    171       1.2    simonb 
    172       1.2    simonb 	kcondvar_t wl_reclaimable_cv;	/* m (obviously) */
    173       1.2    simonb 	size_t wl_reclaimable_bytes; /* m:	Amount of space available for
    174       1.2    simonb 						reclamation by truncate */
    175       1.2    simonb 	int wl_error_count;	/* m:	# of wl_entries with errors */
    176       1.2    simonb 	size_t wl_reserved_bytes; /* never truncate log smaller than this */
    177       1.2    simonb 
    178       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
    179       1.2    simonb 	size_t wl_unsynced_bufbytes; /* Byte count of unsynced buffers */
    180       1.2    simonb #endif
    181       1.2    simonb 
    182      1.38   hannken 	daddr_t *wl_deallocblks;/* lm:	address of block */
    183      1.38   hannken 	int *wl_dealloclens;	/* lm:	size of block */
    184      1.38   hannken 	int wl_dealloccnt;	/* lm:	total count */
    185       1.2    simonb 	int wl_dealloclim;	/* l:	max count */
    186       1.2    simonb 
    187       1.2    simonb 	/* hashtable of inode numbers for allocated but unlinked inodes */
    188       1.2    simonb 	/* synch ??? */
    189       1.2    simonb 	LIST_HEAD(wapbl_ino_head, wapbl_ino) *wl_inohash;
    190       1.2    simonb 	u_long wl_inohashmask;
    191       1.2    simonb 	int wl_inohashcnt;
    192       1.2    simonb 
    193       1.2    simonb 	SIMPLEQ_HEAD(, wapbl_entry) wl_entries; /* On disk transaction
    194       1.2    simonb 						   accounting */
    195       1.2    simonb };
    196       1.2    simonb 
    197       1.2    simonb #ifdef WAPBL_DEBUG_PRINT
    198       1.2    simonb int wapbl_debug_print = WAPBL_DEBUG_PRINT;
    199       1.2    simonb #endif
    200       1.2    simonb 
    201       1.2    simonb /****************************************************************/
    202       1.2    simonb #ifdef _KERNEL
    203       1.2    simonb 
    204       1.2    simonb #ifdef WAPBL_DEBUG
    205       1.2    simonb struct wapbl *wapbl_debug_wl;
    206       1.2    simonb #endif
    207       1.2    simonb 
    208       1.2    simonb static int wapbl_write_commit(struct wapbl *wl, off_t head, off_t tail);
    209       1.2    simonb static int wapbl_write_blocks(struct wapbl *wl, off_t *offp);
    210       1.2    simonb static int wapbl_write_revocations(struct wapbl *wl, off_t *offp);
    211       1.2    simonb static int wapbl_write_inodes(struct wapbl *wl, off_t *offp);
    212       1.2    simonb #endif /* _KERNEL */
    213       1.2    simonb 
    214      1.14     joerg static int wapbl_replay_process(struct wapbl_replay *wr, off_t, off_t);
    215       1.2    simonb 
    216      1.30  uebayasi static inline size_t wapbl_space_free(size_t avail, off_t head,
    217       1.2    simonb 	off_t tail);
    218      1.30  uebayasi static inline size_t wapbl_space_used(size_t avail, off_t head,
    219       1.2    simonb 	off_t tail);
    220       1.2    simonb 
    221       1.2    simonb #ifdef _KERNEL
    222       1.2    simonb 
    223       1.2    simonb #define	WAPBL_INODETRK_SIZE 83
    224       1.2    simonb static int wapbl_ino_pool_refcount;
    225       1.2    simonb static struct pool wapbl_ino_pool;
    226       1.2    simonb struct wapbl_ino {
    227       1.2    simonb 	LIST_ENTRY(wapbl_ino) wi_hash;
    228       1.2    simonb 	ino_t wi_ino;
    229       1.2    simonb 	mode_t wi_mode;
    230       1.2    simonb };
    231       1.2    simonb 
    232       1.2    simonb static void wapbl_inodetrk_init(struct wapbl *wl, u_int size);
    233       1.2    simonb static void wapbl_inodetrk_free(struct wapbl *wl);
    234       1.2    simonb static struct wapbl_ino *wapbl_inodetrk_get(struct wapbl *wl, ino_t ino);
    235       1.2    simonb 
    236       1.2    simonb static size_t wapbl_transaction_len(struct wapbl *wl);
    237      1.30  uebayasi static inline size_t wapbl_transaction_inodes_len(struct wapbl *wl);
    238       1.2    simonb 
    239      1.13     joerg #if 0
    240       1.4     joerg int wapbl_replay_verify(struct wapbl_replay *, struct vnode *);
    241       1.4     joerg #endif
    242       1.4     joerg 
    243       1.4     joerg static int wapbl_replay_isopen1(struct wapbl_replay *);
    244       1.4     joerg 
    245       1.2    simonb /*
    246       1.2    simonb  * This is useful for debugging.  If set, the log will
    247       1.2    simonb  * only be truncated when necessary.
    248       1.2    simonb  */
    249       1.2    simonb int wapbl_lazy_truncate = 0;
    250       1.2    simonb 
    251       1.2    simonb struct wapbl_ops wapbl_ops = {
    252       1.2    simonb 	.wo_wapbl_discard	= wapbl_discard,
    253       1.2    simonb 	.wo_wapbl_replay_isopen	= wapbl_replay_isopen1,
    254       1.6     joerg 	.wo_wapbl_replay_can_read = wapbl_replay_can_read,
    255       1.2    simonb 	.wo_wapbl_replay_read	= wapbl_replay_read,
    256       1.2    simonb 	.wo_wapbl_add_buf	= wapbl_add_buf,
    257       1.2    simonb 	.wo_wapbl_remove_buf	= wapbl_remove_buf,
    258       1.2    simonb 	.wo_wapbl_resize_buf	= wapbl_resize_buf,
    259       1.2    simonb 	.wo_wapbl_begin		= wapbl_begin,
    260       1.2    simonb 	.wo_wapbl_end		= wapbl_end,
    261       1.2    simonb 	.wo_wapbl_junlock_assert= wapbl_junlock_assert,
    262       1.2    simonb 
    263       1.2    simonb 	/* XXX: the following is only used to say "this is a wapbl buf" */
    264       1.2    simonb 	.wo_wapbl_biodone	= wapbl_biodone,
    265       1.2    simonb };
    266       1.2    simonb 
    267      1.21      yamt static int
    268      1.39  christos wapbl_sysctl_init(void)
    269      1.39  christos {
    270      1.39  christos 	int rv;
    271      1.39  christos 	const struct sysctlnode *rnode, *cnode;
    272      1.39  christos 
    273      1.39  christos 	wapbl_sysctl = NULL;
    274      1.39  christos 
    275      1.39  christos 	rv = sysctl_createv(&wapbl_sysctl, 0, NULL, &rnode,
    276      1.39  christos 		       CTLFLAG_PERMANENT,
    277      1.39  christos 		       CTLTYPE_NODE, "vfs", NULL,
    278      1.39  christos 		       NULL, 0, NULL, 0,
    279      1.39  christos 		       CTL_VFS, CTL_EOL);
    280      1.39  christos 	if (rv)
    281      1.39  christos 		return rv;
    282      1.39  christos 
    283      1.39  christos 	rv = sysctl_createv(&wapbl_sysctl, 0, &rnode, &rnode,
    284      1.39  christos 		       CTLFLAG_PERMANENT,
    285      1.39  christos 		       CTLTYPE_NODE, "wapbl",
    286      1.39  christos 		       SYSCTL_DESCR("WAPBL journaling options"),
    287      1.39  christos 		       NULL, 0, NULL, 0,
    288      1.39  christos 		       CTL_CREATE, CTL_EOL);
    289      1.39  christos 	if (rv)
    290      1.39  christos 		return rv;
    291      1.39  christos 
    292      1.39  christos 	rv = sysctl_createv(&wapbl_sysctl, 0, &rnode, &cnode,
    293      1.39  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    294      1.39  christos 		       CTLTYPE_INT, "flush_disk_cache",
    295      1.39  christos 		       SYSCTL_DESCR("flush disk cache"),
    296      1.39  christos 		       NULL, 0, &wapbl_flush_disk_cache, 0,
    297      1.39  christos 		       CTL_CREATE, CTL_EOL);
    298      1.39  christos 	if (rv)
    299      1.39  christos 		return rv;
    300      1.39  christos 
    301      1.39  christos 	rv = sysctl_createv(&wapbl_sysctl, 0, &rnode, &cnode,
    302      1.39  christos 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    303      1.39  christos 		       CTLTYPE_INT, "verbose_commit",
    304      1.39  christos 		       SYSCTL_DESCR("show time and size of wapbl log commits"),
    305      1.39  christos 		       NULL, 0, &wapbl_verbose_commit, 0,
    306      1.39  christos 		       CTL_CREATE, CTL_EOL);
    307      1.39  christos 	return rv;
    308      1.39  christos }
    309      1.39  christos 
    310      1.39  christos static void
    311      1.39  christos wapbl_init(void)
    312      1.39  christos {
    313      1.39  christos 	malloc_type_attach(M_WAPBL);
    314      1.39  christos 	wapbl_sysctl_init();
    315      1.39  christos }
    316      1.39  christos 
    317      1.39  christos #ifdef notyet
    318      1.39  christos static int
    319      1.39  christos wapbl_fini(bool interface)
    320      1.39  christos {
    321      1.39  christos 	if (aio_sysctl != NULL)
    322      1.39  christos 		 sysctl_teardown(&aio_sysctl);
    323      1.39  christos 	return 0;
    324      1.39  christos }
    325      1.39  christos #endif
    326      1.39  christos 
    327      1.39  christos static int
    328      1.15     joerg wapbl_start_flush_inodes(struct wapbl *wl, struct wapbl_replay *wr)
    329      1.15     joerg {
    330      1.15     joerg 	int error, i;
    331      1.15     joerg 
    332      1.15     joerg 	WAPBL_PRINTF(WAPBL_PRINT_REPLAY,
    333      1.15     joerg 	    ("wapbl_start: reusing log with %d inodes\n", wr->wr_inodescnt));
    334      1.15     joerg 
    335      1.15     joerg 	/*
    336      1.15     joerg 	 * Its only valid to reuse the replay log if its
    337      1.15     joerg 	 * the same as the new log we just opened.
    338      1.15     joerg 	 */
    339      1.15     joerg 	KDASSERT(!wapbl_replay_isopen(wr));
    340      1.15     joerg 	KASSERT(wl->wl_devvp->v_rdev == wr->wr_devvp->v_rdev);
    341      1.15     joerg 	KASSERT(wl->wl_logpbn == wr->wr_logpbn);
    342      1.15     joerg 	KASSERT(wl->wl_circ_size == wr->wr_circ_size);
    343      1.15     joerg 	KASSERT(wl->wl_circ_off == wr->wr_circ_off);
    344      1.15     joerg 	KASSERT(wl->wl_log_dev_bshift == wr->wr_log_dev_bshift);
    345      1.15     joerg 	KASSERT(wl->wl_fs_dev_bshift == wr->wr_fs_dev_bshift);
    346      1.15     joerg 
    347      1.15     joerg 	wl->wl_wc_header->wc_generation = wr->wr_generation + 1;
    348      1.15     joerg 
    349      1.15     joerg 	for (i = 0; i < wr->wr_inodescnt; i++)
    350      1.15     joerg 		wapbl_register_inode(wl, wr->wr_inodes[i].wr_inumber,
    351      1.15     joerg 		    wr->wr_inodes[i].wr_imode);
    352      1.15     joerg 
    353      1.15     joerg 	/* Make sure new transaction won't overwrite old inodes list */
    354      1.15     joerg 	KDASSERT(wapbl_transaction_len(wl) <=
    355      1.15     joerg 	    wapbl_space_free(wl->wl_circ_size, wr->wr_inodeshead,
    356      1.15     joerg 	    wr->wr_inodestail));
    357      1.15     joerg 
    358      1.15     joerg 	wl->wl_head = wl->wl_tail = wr->wr_inodeshead;
    359      1.15     joerg 	wl->wl_reclaimable_bytes = wl->wl_reserved_bytes =
    360      1.15     joerg 	    wapbl_transaction_len(wl);
    361      1.15     joerg 
    362      1.15     joerg 	error = wapbl_write_inodes(wl, &wl->wl_head);
    363      1.15     joerg 	if (error)
    364      1.15     joerg 		return error;
    365      1.15     joerg 
    366      1.15     joerg 	KASSERT(wl->wl_head != wl->wl_tail);
    367      1.15     joerg 	KASSERT(wl->wl_head != 0);
    368      1.15     joerg 
    369      1.15     joerg 	return 0;
    370      1.15     joerg }
    371      1.15     joerg 
    372       1.2    simonb int
    373       1.2    simonb wapbl_start(struct wapbl ** wlp, struct mount *mp, struct vnode *vp,
    374       1.2    simonb 	daddr_t off, size_t count, size_t blksize, struct wapbl_replay *wr,
    375       1.2    simonb 	wapbl_flush_fn_t flushfn, wapbl_flush_fn_t flushabortfn)
    376       1.2    simonb {
    377       1.2    simonb 	struct wapbl *wl;
    378       1.2    simonb 	struct vnode *devvp;
    379       1.2    simonb 	daddr_t logpbn;
    380       1.2    simonb 	int error;
    381      1.31   mlelstv 	int log_dev_bshift = ilog2(blksize);
    382      1.32   mlelstv 	int fs_dev_bshift = log_dev_bshift;
    383       1.2    simonb 	int run;
    384       1.2    simonb 
    385       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_OPEN, ("wapbl_start: vp=%p off=%" PRId64
    386       1.2    simonb 	    " count=%zu blksize=%zu\n", vp, off, count, blksize));
    387       1.2    simonb 
    388       1.2    simonb 	if (log_dev_bshift > fs_dev_bshift) {
    389       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_OPEN,
    390       1.2    simonb 			("wapbl: log device's block size cannot be larger "
    391       1.2    simonb 			 "than filesystem's\n"));
    392       1.2    simonb 		/*
    393       1.2    simonb 		 * Not currently implemented, although it could be if
    394       1.2    simonb 		 * needed someday.
    395       1.2    simonb 		 */
    396       1.2    simonb 		return ENOSYS;
    397       1.2    simonb 	}
    398       1.2    simonb 
    399       1.2    simonb 	if (off < 0)
    400       1.2    simonb 		return EINVAL;
    401       1.2    simonb 
    402       1.2    simonb 	if (blksize < DEV_BSIZE)
    403       1.2    simonb 		return EINVAL;
    404       1.2    simonb 	if (blksize % DEV_BSIZE)
    405       1.2    simonb 		return EINVAL;
    406       1.2    simonb 
    407       1.2    simonb 	/* XXXTODO: verify that the full load is writable */
    408       1.2    simonb 
    409       1.2    simonb 	/*
    410       1.2    simonb 	 * XXX check for minimum log size
    411       1.2    simonb 	 * minimum is governed by minimum amount of space
    412       1.2    simonb 	 * to complete a transaction. (probably truncate)
    413       1.2    simonb 	 */
    414       1.2    simonb 	/* XXX for now pick something minimal */
    415       1.2    simonb 	if ((count * blksize) < MAXPHYS) {
    416       1.2    simonb 		return ENOSPC;
    417       1.2    simonb 	}
    418       1.2    simonb 
    419       1.2    simonb 	if ((error = VOP_BMAP(vp, off, &devvp, &logpbn, &run)) != 0) {
    420       1.2    simonb 		return error;
    421       1.2    simonb 	}
    422       1.2    simonb 
    423       1.2    simonb 	wl = wapbl_calloc(1, sizeof(*wl));
    424       1.2    simonb 	rw_init(&wl->wl_rwlock);
    425       1.2    simonb 	mutex_init(&wl->wl_mtx, MUTEX_DEFAULT, IPL_NONE);
    426       1.2    simonb 	cv_init(&wl->wl_reclaimable_cv, "wapblrec");
    427       1.2    simonb 	LIST_INIT(&wl->wl_bufs);
    428       1.2    simonb 	SIMPLEQ_INIT(&wl->wl_entries);
    429       1.2    simonb 
    430       1.2    simonb 	wl->wl_logvp = vp;
    431       1.2    simonb 	wl->wl_devvp = devvp;
    432       1.2    simonb 	wl->wl_mount = mp;
    433       1.2    simonb 	wl->wl_logpbn = logpbn;
    434       1.2    simonb 	wl->wl_log_dev_bshift = log_dev_bshift;
    435       1.2    simonb 	wl->wl_fs_dev_bshift = fs_dev_bshift;
    436       1.2    simonb 
    437       1.2    simonb 	wl->wl_flush = flushfn;
    438       1.2    simonb 	wl->wl_flush_abort = flushabortfn;
    439       1.2    simonb 
    440       1.2    simonb 	/* Reserve two log device blocks for the commit headers */
    441       1.2    simonb 	wl->wl_circ_off = 2<<wl->wl_log_dev_bshift;
    442      1.34   mlelstv 	wl->wl_circ_size = ((count * blksize) - wl->wl_circ_off);
    443       1.2    simonb 	/* truncate the log usage to a multiple of log_dev_bshift */
    444       1.2    simonb 	wl->wl_circ_size >>= wl->wl_log_dev_bshift;
    445       1.2    simonb 	wl->wl_circ_size <<= wl->wl_log_dev_bshift;
    446       1.2    simonb 
    447       1.2    simonb 	/*
    448       1.2    simonb 	 * wl_bufbytes_max limits the size of the in memory transaction space.
    449       1.2    simonb 	 * - Since buffers are allocated and accounted for in units of
    450       1.2    simonb 	 *   PAGE_SIZE it is required to be a multiple of PAGE_SIZE
    451       1.2    simonb 	 *   (i.e. 1<<PAGE_SHIFT)
    452       1.2    simonb 	 * - Since the log device has to be written in units of
    453       1.2    simonb 	 *   1<<wl_log_dev_bshift it is required to be a mulitple of
    454       1.2    simonb 	 *   1<<wl_log_dev_bshift.
    455       1.2    simonb 	 * - Since filesystem will provide data in units of 1<<wl_fs_dev_bshift,
    456       1.2    simonb 	 *   it is convenient to be a multiple of 1<<wl_fs_dev_bshift.
    457       1.2    simonb 	 * Therefore it must be multiple of the least common multiple of those
    458       1.2    simonb 	 * three quantities.  Fortunately, all of those quantities are
    459       1.2    simonb 	 * guaranteed to be a power of two, and the least common multiple of
    460       1.2    simonb 	 * a set of numbers which are all powers of two is simply the maximum
    461       1.2    simonb 	 * of those numbers.  Finally, the maximum logarithm of a power of two
    462       1.2    simonb 	 * is the same as the log of the maximum power of two.  So we can do
    463       1.2    simonb 	 * the following operations to size wl_bufbytes_max:
    464       1.2    simonb 	 */
    465       1.2    simonb 
    466       1.2    simonb 	/* XXX fix actual number of pages reserved per filesystem. */
    467       1.2    simonb 	wl->wl_bufbytes_max = MIN(wl->wl_circ_size, buf_memcalc() / 2);
    468       1.2    simonb 
    469       1.2    simonb 	/* Round wl_bufbytes_max to the largest power of two constraint */
    470       1.2    simonb 	wl->wl_bufbytes_max >>= PAGE_SHIFT;
    471       1.2    simonb 	wl->wl_bufbytes_max <<= PAGE_SHIFT;
    472       1.2    simonb 	wl->wl_bufbytes_max >>= wl->wl_log_dev_bshift;
    473       1.2    simonb 	wl->wl_bufbytes_max <<= wl->wl_log_dev_bshift;
    474       1.2    simonb 	wl->wl_bufbytes_max >>= wl->wl_fs_dev_bshift;
    475       1.2    simonb 	wl->wl_bufbytes_max <<= wl->wl_fs_dev_bshift;
    476       1.2    simonb 
    477       1.2    simonb 	/* XXX maybe use filesystem fragment size instead of 1024 */
    478       1.2    simonb 	/* XXX fix actual number of buffers reserved per filesystem. */
    479       1.2    simonb 	wl->wl_bufcount_max = (nbuf / 2) * 1024;
    480       1.2    simonb 
    481       1.2    simonb 	/* XXX tie this into resource estimation */
    482  1.39.4.1    bouyer 	wl->wl_dealloclim = wl->wl_bufbytes_max / mp->mnt_stat.f_bsize / 2;
    483       1.2    simonb 
    484       1.2    simonb 	wl->wl_deallocblks = wapbl_malloc(sizeof(*wl->wl_deallocblks) *
    485       1.2    simonb 	    wl->wl_dealloclim);
    486       1.2    simonb 	wl->wl_dealloclens = wapbl_malloc(sizeof(*wl->wl_dealloclens) *
    487       1.2    simonb 	    wl->wl_dealloclim);
    488       1.2    simonb 
    489       1.2    simonb 	wapbl_inodetrk_init(wl, WAPBL_INODETRK_SIZE);
    490       1.2    simonb 
    491       1.2    simonb 	/* Initialize the commit header */
    492       1.2    simonb 	{
    493       1.2    simonb 		struct wapbl_wc_header *wc;
    494      1.14     joerg 		size_t len = 1 << wl->wl_log_dev_bshift;
    495       1.2    simonb 		wc = wapbl_calloc(1, len);
    496       1.2    simonb 		wc->wc_type = WAPBL_WC_HEADER;
    497       1.2    simonb 		wc->wc_len = len;
    498       1.2    simonb 		wc->wc_circ_off = wl->wl_circ_off;
    499       1.2    simonb 		wc->wc_circ_size = wl->wl_circ_size;
    500       1.2    simonb 		/* XXX wc->wc_fsid */
    501       1.2    simonb 		wc->wc_log_dev_bshift = wl->wl_log_dev_bshift;
    502       1.2    simonb 		wc->wc_fs_dev_bshift = wl->wl_fs_dev_bshift;
    503       1.2    simonb 		wl->wl_wc_header = wc;
    504       1.2    simonb 		wl->wl_wc_scratch = wapbl_malloc(len);
    505       1.2    simonb 	}
    506       1.2    simonb 
    507       1.2    simonb 	/*
    508       1.2    simonb 	 * if there was an existing set of unlinked but
    509       1.2    simonb 	 * allocated inodes, preserve it in the new
    510       1.2    simonb 	 * log.
    511       1.2    simonb 	 */
    512       1.2    simonb 	if (wr && wr->wr_inodescnt) {
    513      1.15     joerg 		error = wapbl_start_flush_inodes(wl, wr);
    514       1.2    simonb 		if (error)
    515       1.2    simonb 			goto errout;
    516       1.2    simonb 	}
    517       1.2    simonb 
    518       1.2    simonb 	error = wapbl_write_commit(wl, wl->wl_head, wl->wl_tail);
    519       1.2    simonb 	if (error) {
    520       1.2    simonb 		goto errout;
    521       1.2    simonb 	}
    522       1.2    simonb 
    523       1.2    simonb 	*wlp = wl;
    524       1.2    simonb #if defined(WAPBL_DEBUG)
    525       1.2    simonb 	wapbl_debug_wl = wl;
    526       1.2    simonb #endif
    527       1.2    simonb 
    528       1.2    simonb 	return 0;
    529       1.2    simonb  errout:
    530       1.2    simonb 	wapbl_discard(wl);
    531      1.18      yamt 	wapbl_free(wl->wl_wc_scratch, wl->wl_wc_header->wc_len);
    532      1.18      yamt 	wapbl_free(wl->wl_wc_header, wl->wl_wc_header->wc_len);
    533      1.18      yamt 	wapbl_free(wl->wl_deallocblks,
    534      1.18      yamt 	    sizeof(*wl->wl_deallocblks) * wl->wl_dealloclim);
    535      1.18      yamt 	wapbl_free(wl->wl_dealloclens,
    536      1.18      yamt 	    sizeof(*wl->wl_dealloclens) * wl->wl_dealloclim);
    537       1.2    simonb 	wapbl_inodetrk_free(wl);
    538      1.18      yamt 	wapbl_free(wl, sizeof(*wl));
    539       1.2    simonb 
    540       1.2    simonb 	return error;
    541       1.2    simonb }
    542       1.2    simonb 
    543       1.2    simonb /*
    544       1.2    simonb  * Like wapbl_flush, only discards the transaction
    545       1.2    simonb  * completely
    546       1.2    simonb  */
    547       1.2    simonb 
    548       1.2    simonb void
    549       1.2    simonb wapbl_discard(struct wapbl *wl)
    550       1.2    simonb {
    551       1.2    simonb 	struct wapbl_entry *we;
    552       1.2    simonb 	struct buf *bp;
    553       1.2    simonb 	int i;
    554       1.2    simonb 
    555       1.2    simonb 	/*
    556       1.2    simonb 	 * XXX we may consider using upgrade here
    557       1.2    simonb 	 * if we want to call flush from inside a transaction
    558       1.2    simonb 	 */
    559       1.2    simonb 	rw_enter(&wl->wl_rwlock, RW_WRITER);
    560       1.2    simonb 	wl->wl_flush(wl->wl_mount, wl->wl_deallocblks, wl->wl_dealloclens,
    561       1.2    simonb 	    wl->wl_dealloccnt);
    562       1.2    simonb 
    563       1.2    simonb #ifdef WAPBL_DEBUG_PRINT
    564       1.2    simonb 	{
    565       1.2    simonb 		pid_t pid = -1;
    566       1.2    simonb 		lwpid_t lid = -1;
    567       1.2    simonb 		if (curproc)
    568       1.2    simonb 			pid = curproc->p_pid;
    569       1.2    simonb 		if (curlwp)
    570       1.2    simonb 			lid = curlwp->l_lid;
    571       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
    572       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_DISCARD,
    573       1.2    simonb 		    ("wapbl_discard: thread %d.%d discarding "
    574       1.2    simonb 		    "transaction\n"
    575       1.2    simonb 		    "\tbufcount=%zu bufbytes=%zu bcount=%zu "
    576       1.2    simonb 		    "deallocs=%d inodes=%d\n"
    577       1.2    simonb 		    "\terrcnt = %u, reclaimable=%zu reserved=%zu "
    578       1.2    simonb 		    "unsynced=%zu\n",
    579       1.2    simonb 		    pid, lid, wl->wl_bufcount, wl->wl_bufbytes,
    580       1.2    simonb 		    wl->wl_bcount, wl->wl_dealloccnt,
    581       1.2    simonb 		    wl->wl_inohashcnt, wl->wl_error_count,
    582       1.2    simonb 		    wl->wl_reclaimable_bytes, wl->wl_reserved_bytes,
    583       1.2    simonb 		    wl->wl_unsynced_bufbytes));
    584       1.2    simonb 		SIMPLEQ_FOREACH(we, &wl->wl_entries, we_entries) {
    585       1.2    simonb 			WAPBL_PRINTF(WAPBL_PRINT_DISCARD,
    586       1.2    simonb 			    ("\tentry: bufcount = %zu, reclaimable = %zu, "
    587       1.2    simonb 			     "error = %d, unsynced = %zu\n",
    588       1.2    simonb 			     we->we_bufcount, we->we_reclaimable_bytes,
    589       1.2    simonb 			     we->we_error, we->we_unsynced_bufbytes));
    590       1.2    simonb 		}
    591       1.2    simonb #else /* !WAPBL_DEBUG_BUFBYTES */
    592       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_DISCARD,
    593       1.2    simonb 		    ("wapbl_discard: thread %d.%d discarding transaction\n"
    594       1.2    simonb 		    "\tbufcount=%zu bufbytes=%zu bcount=%zu "
    595       1.2    simonb 		    "deallocs=%d inodes=%d\n"
    596       1.2    simonb 		    "\terrcnt = %u, reclaimable=%zu reserved=%zu\n",
    597       1.2    simonb 		    pid, lid, wl->wl_bufcount, wl->wl_bufbytes,
    598       1.2    simonb 		    wl->wl_bcount, wl->wl_dealloccnt,
    599       1.2    simonb 		    wl->wl_inohashcnt, wl->wl_error_count,
    600       1.2    simonb 		    wl->wl_reclaimable_bytes, wl->wl_reserved_bytes));
    601       1.2    simonb 		SIMPLEQ_FOREACH(we, &wl->wl_entries, we_entries) {
    602       1.2    simonb 			WAPBL_PRINTF(WAPBL_PRINT_DISCARD,
    603       1.2    simonb 			    ("\tentry: bufcount = %zu, reclaimable = %zu, "
    604       1.2    simonb 			     "error = %d\n",
    605       1.2    simonb 			     we->we_bufcount, we->we_reclaimable_bytes,
    606       1.2    simonb 			     we->we_error));
    607       1.2    simonb 		}
    608       1.2    simonb #endif /* !WAPBL_DEBUG_BUFBYTES */
    609       1.2    simonb 	}
    610       1.2    simonb #endif /* WAPBL_DEBUG_PRINT */
    611       1.2    simonb 
    612       1.2    simonb 	for (i = 0; i <= wl->wl_inohashmask; i++) {
    613       1.2    simonb 		struct wapbl_ino_head *wih;
    614       1.2    simonb 		struct wapbl_ino *wi;
    615       1.2    simonb 
    616       1.2    simonb 		wih = &wl->wl_inohash[i];
    617       1.2    simonb 		while ((wi = LIST_FIRST(wih)) != NULL) {
    618       1.2    simonb 			LIST_REMOVE(wi, wi_hash);
    619       1.2    simonb 			pool_put(&wapbl_ino_pool, wi);
    620       1.2    simonb 			KASSERT(wl->wl_inohashcnt > 0);
    621       1.2    simonb 			wl->wl_inohashcnt--;
    622       1.2    simonb 		}
    623       1.2    simonb 	}
    624       1.2    simonb 
    625       1.2    simonb 	/*
    626       1.2    simonb 	 * clean buffer list
    627       1.2    simonb 	 */
    628       1.2    simonb 	mutex_enter(&bufcache_lock);
    629       1.2    simonb 	mutex_enter(&wl->wl_mtx);
    630       1.2    simonb 	while ((bp = LIST_FIRST(&wl->wl_bufs)) != NULL) {
    631       1.2    simonb 		if (bbusy(bp, 0, 0, &wl->wl_mtx) == 0) {
    632       1.2    simonb 			/*
    633       1.2    simonb 			 * The buffer will be unlocked and
    634       1.2    simonb 			 * removed from the transaction in brelse
    635       1.2    simonb 			 */
    636       1.2    simonb 			mutex_exit(&wl->wl_mtx);
    637       1.2    simonb 			brelsel(bp, 0);
    638       1.2    simonb 			mutex_enter(&wl->wl_mtx);
    639       1.2    simonb 		}
    640       1.2    simonb 	}
    641       1.2    simonb 	mutex_exit(&wl->wl_mtx);
    642       1.2    simonb 	mutex_exit(&bufcache_lock);
    643       1.2    simonb 
    644       1.2    simonb 	/*
    645       1.2    simonb 	 * Remove references to this wl from wl_entries, free any which
    646       1.2    simonb 	 * no longer have buffers, others will be freed in wapbl_biodone
    647       1.2    simonb 	 * when they no longer have any buffers.
    648       1.2    simonb 	 */
    649       1.2    simonb 	while ((we = SIMPLEQ_FIRST(&wl->wl_entries)) != NULL) {
    650       1.2    simonb 		SIMPLEQ_REMOVE_HEAD(&wl->wl_entries, we_entries);
    651       1.2    simonb 		/* XXX should we be accumulating wl_error_count
    652       1.2    simonb 		 * and increasing reclaimable bytes ? */
    653       1.2    simonb 		we->we_wapbl = NULL;
    654       1.2    simonb 		if (we->we_bufcount == 0) {
    655       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
    656       1.2    simonb 			KASSERT(we->we_unsynced_bufbytes == 0);
    657       1.2    simonb #endif
    658      1.18      yamt 			wapbl_free(we, sizeof(*we));
    659       1.2    simonb 		}
    660       1.2    simonb 	}
    661       1.2    simonb 
    662       1.2    simonb 	/* Discard list of deallocs */
    663       1.2    simonb 	wl->wl_dealloccnt = 0;
    664       1.2    simonb 	/* XXX should we clear wl_reserved_bytes? */
    665       1.2    simonb 
    666       1.2    simonb 	KASSERT(wl->wl_bufbytes == 0);
    667       1.2    simonb 	KASSERT(wl->wl_bcount == 0);
    668       1.2    simonb 	KASSERT(wl->wl_bufcount == 0);
    669       1.2    simonb 	KASSERT(LIST_EMPTY(&wl->wl_bufs));
    670       1.2    simonb 	KASSERT(SIMPLEQ_EMPTY(&wl->wl_entries));
    671       1.2    simonb 	KASSERT(wl->wl_inohashcnt == 0);
    672       1.2    simonb 
    673       1.2    simonb 	rw_exit(&wl->wl_rwlock);
    674       1.2    simonb }
    675       1.2    simonb 
    676       1.2    simonb int
    677       1.2    simonb wapbl_stop(struct wapbl *wl, int force)
    678       1.2    simonb {
    679       1.2    simonb 	struct vnode *vp;
    680       1.2    simonb 	int error;
    681       1.2    simonb 
    682       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_OPEN, ("wapbl_stop called\n"));
    683       1.2    simonb 	error = wapbl_flush(wl, 1);
    684       1.2    simonb 	if (error) {
    685       1.2    simonb 		if (force)
    686       1.2    simonb 			wapbl_discard(wl);
    687       1.2    simonb 		else
    688       1.2    simonb 			return error;
    689       1.2    simonb 	}
    690       1.2    simonb 
    691       1.2    simonb 	/* Unlinked inodes persist after a flush */
    692       1.2    simonb 	if (wl->wl_inohashcnt) {
    693       1.2    simonb 		if (force) {
    694       1.2    simonb 			wapbl_discard(wl);
    695       1.2    simonb 		} else {
    696       1.2    simonb 			return EBUSY;
    697       1.2    simonb 		}
    698       1.2    simonb 	}
    699       1.2    simonb 
    700       1.2    simonb 	KASSERT(wl->wl_bufbytes == 0);
    701       1.2    simonb 	KASSERT(wl->wl_bcount == 0);
    702       1.2    simonb 	KASSERT(wl->wl_bufcount == 0);
    703       1.2    simonb 	KASSERT(LIST_EMPTY(&wl->wl_bufs));
    704       1.2    simonb 	KASSERT(wl->wl_dealloccnt == 0);
    705       1.2    simonb 	KASSERT(SIMPLEQ_EMPTY(&wl->wl_entries));
    706       1.2    simonb 	KASSERT(wl->wl_inohashcnt == 0);
    707       1.2    simonb 
    708       1.2    simonb 	vp = wl->wl_logvp;
    709       1.2    simonb 
    710      1.18      yamt 	wapbl_free(wl->wl_wc_scratch, wl->wl_wc_header->wc_len);
    711      1.18      yamt 	wapbl_free(wl->wl_wc_header, wl->wl_wc_header->wc_len);
    712      1.18      yamt 	wapbl_free(wl->wl_deallocblks,
    713      1.18      yamt 	    sizeof(*wl->wl_deallocblks) * wl->wl_dealloclim);
    714      1.18      yamt 	wapbl_free(wl->wl_dealloclens,
    715      1.18      yamt 	    sizeof(*wl->wl_dealloclens) * wl->wl_dealloclim);
    716       1.2    simonb 	wapbl_inodetrk_free(wl);
    717       1.2    simonb 
    718       1.2    simonb 	cv_destroy(&wl->wl_reclaimable_cv);
    719       1.2    simonb 	mutex_destroy(&wl->wl_mtx);
    720       1.2    simonb 	rw_destroy(&wl->wl_rwlock);
    721      1.18      yamt 	wapbl_free(wl, sizeof(*wl));
    722       1.2    simonb 
    723       1.2    simonb 	return 0;
    724       1.2    simonb }
    725       1.2    simonb 
    726       1.2    simonb static int
    727       1.2    simonb wapbl_doio(void *data, size_t len, struct vnode *devvp, daddr_t pbn, int flags)
    728       1.2    simonb {
    729       1.2    simonb 	struct pstats *pstats = curlwp->l_proc->p_stats;
    730       1.2    simonb 	struct buf *bp;
    731       1.2    simonb 	int error;
    732       1.2    simonb 
    733       1.2    simonb 	KASSERT((flags & ~(B_WRITE | B_READ)) == 0);
    734       1.2    simonb 	KASSERT(devvp->v_type == VBLK);
    735       1.2    simonb 
    736       1.2    simonb 	if ((flags & (B_WRITE | B_READ)) == B_WRITE) {
    737       1.2    simonb 		mutex_enter(&devvp->v_interlock);
    738       1.2    simonb 		devvp->v_numoutput++;
    739       1.2    simonb 		mutex_exit(&devvp->v_interlock);
    740       1.2    simonb 		pstats->p_ru.ru_oublock++;
    741       1.2    simonb 	} else {
    742       1.2    simonb 		pstats->p_ru.ru_inblock++;
    743       1.2    simonb 	}
    744       1.2    simonb 
    745       1.2    simonb 	bp = getiobuf(devvp, true);
    746       1.2    simonb 	bp->b_flags = flags;
    747       1.2    simonb 	bp->b_cflags = BC_BUSY; /* silly & dubious */
    748       1.2    simonb 	bp->b_dev = devvp->v_rdev;
    749       1.2    simonb 	bp->b_data = data;
    750       1.2    simonb 	bp->b_bufsize = bp->b_resid = bp->b_bcount = len;
    751       1.2    simonb 	bp->b_blkno = pbn;
    752       1.2    simonb 
    753       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_IO,
    754      1.29     pooka 	    ("wapbl_doio: %s %d bytes at block %"PRId64" on dev 0x%"PRIx64"\n",
    755       1.2    simonb 	    BUF_ISWRITE(bp) ? "write" : "read", bp->b_bcount,
    756       1.2    simonb 	    bp->b_blkno, bp->b_dev));
    757       1.2    simonb 
    758       1.2    simonb 	VOP_STRATEGY(devvp, bp);
    759       1.2    simonb 
    760       1.2    simonb 	error = biowait(bp);
    761       1.2    simonb 	putiobuf(bp);
    762       1.2    simonb 
    763       1.2    simonb 	if (error) {
    764       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_ERROR,
    765       1.2    simonb 		    ("wapbl_doio: %s %zu bytes at block %" PRId64
    766      1.29     pooka 		    " on dev 0x%"PRIx64" failed with error %d\n",
    767       1.2    simonb 		    (((flags & (B_WRITE | B_READ)) == B_WRITE) ?
    768       1.2    simonb 		     "write" : "read"),
    769       1.2    simonb 		    len, pbn, devvp->v_rdev, error));
    770       1.2    simonb 	}
    771       1.2    simonb 
    772       1.2    simonb 	return error;
    773       1.2    simonb }
    774       1.2    simonb 
    775       1.2    simonb int
    776       1.2    simonb wapbl_write(void *data, size_t len, struct vnode *devvp, daddr_t pbn)
    777       1.2    simonb {
    778       1.2    simonb 
    779       1.2    simonb 	return wapbl_doio(data, len, devvp, pbn, B_WRITE);
    780       1.2    simonb }
    781       1.2    simonb 
    782       1.2    simonb int
    783       1.2    simonb wapbl_read(void *data, size_t len, struct vnode *devvp, daddr_t pbn)
    784       1.2    simonb {
    785       1.2    simonb 
    786       1.2    simonb 	return wapbl_doio(data, len, devvp, pbn, B_READ);
    787       1.2    simonb }
    788       1.2    simonb 
    789       1.2    simonb /*
    790       1.2    simonb  * Off is byte offset returns new offset for next write
    791       1.2    simonb  * handles log wraparound
    792       1.2    simonb  */
    793       1.2    simonb static int
    794       1.2    simonb wapbl_circ_write(struct wapbl *wl, void *data, size_t len, off_t *offp)
    795       1.2    simonb {
    796       1.2    simonb 	size_t slen;
    797       1.2    simonb 	off_t off = *offp;
    798       1.2    simonb 	int error;
    799      1.34   mlelstv 	daddr_t pbn;
    800       1.2    simonb 
    801       1.2    simonb 	KDASSERT(((len >> wl->wl_log_dev_bshift) <<
    802       1.2    simonb 	    wl->wl_log_dev_bshift) == len);
    803       1.2    simonb 
    804       1.2    simonb 	if (off < wl->wl_circ_off)
    805       1.2    simonb 		off = wl->wl_circ_off;
    806       1.2    simonb 	slen = wl->wl_circ_off + wl->wl_circ_size - off;
    807       1.2    simonb 	if (slen < len) {
    808      1.34   mlelstv 		pbn = wl->wl_logpbn + (off >> wl->wl_log_dev_bshift);
    809      1.34   mlelstv #ifdef _KERNEL
    810      1.34   mlelstv 		pbn = btodb(pbn << wl->wl_log_dev_bshift);
    811      1.34   mlelstv #endif
    812      1.34   mlelstv 		error = wapbl_write(data, slen, wl->wl_devvp, pbn);
    813       1.2    simonb 		if (error)
    814       1.2    simonb 			return error;
    815       1.2    simonb 		data = (uint8_t *)data + slen;
    816       1.2    simonb 		len -= slen;
    817       1.2    simonb 		off = wl->wl_circ_off;
    818       1.2    simonb 	}
    819      1.34   mlelstv 	pbn = wl->wl_logpbn + (off >> wl->wl_log_dev_bshift);
    820      1.34   mlelstv #ifdef _KERNEL
    821      1.34   mlelstv 	pbn = btodb(pbn << wl->wl_log_dev_bshift);
    822      1.34   mlelstv #endif
    823      1.34   mlelstv 	error = wapbl_write(data, len, wl->wl_devvp, pbn);
    824       1.2    simonb 	if (error)
    825       1.2    simonb 		return error;
    826       1.2    simonb 	off += len;
    827       1.2    simonb 	if (off >= wl->wl_circ_off + wl->wl_circ_size)
    828       1.2    simonb 		off = wl->wl_circ_off;
    829       1.2    simonb 	*offp = off;
    830       1.2    simonb 	return 0;
    831       1.2    simonb }
    832       1.2    simonb 
    833       1.2    simonb /****************************************************************/
    834       1.2    simonb 
    835       1.2    simonb int
    836       1.2    simonb wapbl_begin(struct wapbl *wl, const char *file, int line)
    837       1.2    simonb {
    838       1.2    simonb 	int doflush;
    839       1.2    simonb 	unsigned lockcount;
    840       1.2    simonb 
    841       1.2    simonb 	KDASSERT(wl);
    842       1.2    simonb 
    843       1.2    simonb 	/*
    844       1.2    simonb 	 * XXX this needs to be made much more sophisticated.
    845       1.2    simonb 	 * perhaps each wapbl_begin could reserve a specified
    846       1.2    simonb 	 * number of buffers and bytes.
    847       1.2    simonb 	 */
    848       1.2    simonb 	mutex_enter(&wl->wl_mtx);
    849       1.2    simonb 	lockcount = wl->wl_lock_count;
    850       1.2    simonb 	doflush = ((wl->wl_bufbytes + (lockcount * MAXPHYS)) >
    851       1.2    simonb 		   wl->wl_bufbytes_max / 2) ||
    852       1.2    simonb 		  ((wl->wl_bufcount + (lockcount * 10)) >
    853       1.2    simonb 		   wl->wl_bufcount_max / 2) ||
    854      1.28     pooka 		  (wapbl_transaction_len(wl) > wl->wl_circ_size / 2) ||
    855  1.39.4.2    bouyer 		  (wl->wl_dealloccnt >= (wl->wl_dealloclim / 2));
    856       1.2    simonb 	mutex_exit(&wl->wl_mtx);
    857       1.2    simonb 
    858       1.2    simonb 	if (doflush) {
    859       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_FLUSH,
    860       1.2    simonb 		    ("force flush lockcnt=%d bufbytes=%zu "
    861      1.28     pooka 		    "(max=%zu) bufcount=%zu (max=%zu) "
    862      1.28     pooka 		    "dealloccnt %d (lim=%d)\n",
    863       1.2    simonb 		    lockcount, wl->wl_bufbytes,
    864       1.2    simonb 		    wl->wl_bufbytes_max, wl->wl_bufcount,
    865      1.28     pooka 		    wl->wl_bufcount_max,
    866      1.28     pooka 		    wl->wl_dealloccnt, wl->wl_dealloclim));
    867       1.2    simonb 	}
    868       1.2    simonb 
    869       1.2    simonb 	if (doflush) {
    870       1.2    simonb 		int error = wapbl_flush(wl, 0);
    871       1.2    simonb 		if (error)
    872       1.2    simonb 			return error;
    873       1.2    simonb 	}
    874       1.2    simonb 
    875      1.23        ad 	rw_enter(&wl->wl_rwlock, RW_READER);
    876       1.2    simonb 	mutex_enter(&wl->wl_mtx);
    877       1.2    simonb 	wl->wl_lock_count++;
    878       1.2    simonb 	mutex_exit(&wl->wl_mtx);
    879       1.2    simonb 
    880      1.23        ad #if defined(WAPBL_DEBUG_PRINT)
    881       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_TRANSACTION,
    882       1.2    simonb 	    ("wapbl_begin thread %d.%d with bufcount=%zu "
    883       1.2    simonb 	    "bufbytes=%zu bcount=%zu at %s:%d\n",
    884       1.2    simonb 	    curproc->p_pid, curlwp->l_lid, wl->wl_bufcount,
    885       1.2    simonb 	    wl->wl_bufbytes, wl->wl_bcount, file, line));
    886       1.2    simonb #endif
    887       1.2    simonb 
    888       1.2    simonb 	return 0;
    889       1.2    simonb }
    890       1.2    simonb 
    891       1.2    simonb void
    892       1.2    simonb wapbl_end(struct wapbl *wl)
    893       1.2    simonb {
    894       1.2    simonb 
    895      1.23        ad #if defined(WAPBL_DEBUG_PRINT)
    896       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_TRANSACTION,
    897       1.2    simonb 	     ("wapbl_end thread %d.%d with bufcount=%zu "
    898       1.2    simonb 	      "bufbytes=%zu bcount=%zu\n",
    899       1.2    simonb 	      curproc->p_pid, curlwp->l_lid, wl->wl_bufcount,
    900       1.2    simonb 	      wl->wl_bufbytes, wl->wl_bcount));
    901       1.2    simonb #endif
    902       1.2    simonb 
    903  1.39.4.1    bouyer #ifdef DIAGNOSTIC
    904  1.39.4.1    bouyer 	size_t flushsize = wapbl_transaction_len(wl);
    905  1.39.4.1    bouyer 	if (flushsize > (wl->wl_circ_size - wl->wl_reserved_bytes)) {
    906  1.39.4.1    bouyer 		/*
    907  1.39.4.1    bouyer 		 * XXX this could be handled more gracefully, perhaps place
    908  1.39.4.1    bouyer 		 * only a partial transaction in the log and allow the
    909  1.39.4.1    bouyer 		 * remaining to flush without the protection of the journal.
    910  1.39.4.1    bouyer 		 */
    911  1.39.4.1    bouyer 		panic("wapbl_end: current transaction too big to flush\n");
    912  1.39.4.1    bouyer 	}
    913  1.39.4.1    bouyer #endif
    914  1.39.4.1    bouyer 
    915       1.2    simonb 	mutex_enter(&wl->wl_mtx);
    916       1.2    simonb 	KASSERT(wl->wl_lock_count > 0);
    917       1.2    simonb 	wl->wl_lock_count--;
    918       1.2    simonb 	mutex_exit(&wl->wl_mtx);
    919       1.2    simonb 
    920       1.2    simonb 	rw_exit(&wl->wl_rwlock);
    921       1.2    simonb }
    922       1.2    simonb 
    923       1.2    simonb void
    924       1.2    simonb wapbl_add_buf(struct wapbl *wl, struct buf * bp)
    925       1.2    simonb {
    926       1.2    simonb 
    927       1.2    simonb 	KASSERT(bp->b_cflags & BC_BUSY);
    928       1.2    simonb 	KASSERT(bp->b_vp);
    929       1.2    simonb 
    930       1.2    simonb 	wapbl_jlock_assert(wl);
    931       1.2    simonb 
    932       1.2    simonb #if 0
    933       1.2    simonb 	/*
    934       1.2    simonb 	 * XXX this might be an issue for swapfiles.
    935       1.2    simonb 	 * see uvm_swap.c:1702
    936       1.2    simonb 	 *
    937       1.2    simonb 	 * XXX2 why require it then?  leap of semantics?
    938       1.2    simonb 	 */
    939       1.2    simonb 	KASSERT((bp->b_cflags & BC_NOCACHE) == 0);
    940       1.2    simonb #endif
    941       1.2    simonb 
    942       1.2    simonb 	mutex_enter(&wl->wl_mtx);
    943       1.2    simonb 	if (bp->b_flags & B_LOCKED) {
    944       1.2    simonb 		LIST_REMOVE(bp, b_wapbllist);
    945       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_BUFFER2,
    946       1.2    simonb 		   ("wapbl_add_buf thread %d.%d re-adding buf %p "
    947       1.2    simonb 		    "with %d bytes %d bcount\n",
    948       1.2    simonb 		    curproc->p_pid, curlwp->l_lid, bp, bp->b_bufsize,
    949       1.2    simonb 		    bp->b_bcount));
    950       1.2    simonb 	} else {
    951       1.2    simonb 		/* unlocked by dirty buffers shouldn't exist */
    952       1.2    simonb 		KASSERT(!(bp->b_oflags & BO_DELWRI));
    953       1.2    simonb 		wl->wl_bufbytes += bp->b_bufsize;
    954       1.2    simonb 		wl->wl_bcount += bp->b_bcount;
    955       1.2    simonb 		wl->wl_bufcount++;
    956       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_BUFFER,
    957       1.2    simonb 		   ("wapbl_add_buf thread %d.%d adding buf %p "
    958       1.2    simonb 		    "with %d bytes %d bcount\n",
    959       1.2    simonb 		    curproc->p_pid, curlwp->l_lid, bp, bp->b_bufsize,
    960       1.2    simonb 		    bp->b_bcount));
    961       1.2    simonb 	}
    962       1.2    simonb 	LIST_INSERT_HEAD(&wl->wl_bufs, bp, b_wapbllist);
    963       1.2    simonb 	mutex_exit(&wl->wl_mtx);
    964       1.2    simonb 
    965       1.2    simonb 	bp->b_flags |= B_LOCKED;
    966       1.2    simonb }
    967       1.2    simonb 
    968       1.2    simonb static void
    969       1.2    simonb wapbl_remove_buf_locked(struct wapbl * wl, struct buf *bp)
    970       1.2    simonb {
    971       1.2    simonb 
    972       1.2    simonb 	KASSERT(mutex_owned(&wl->wl_mtx));
    973       1.2    simonb 	KASSERT(bp->b_cflags & BC_BUSY);
    974       1.2    simonb 	wapbl_jlock_assert(wl);
    975       1.2    simonb 
    976       1.2    simonb #if 0
    977       1.2    simonb 	/*
    978       1.2    simonb 	 * XXX this might be an issue for swapfiles.
    979       1.2    simonb 	 * see uvm_swap.c:1725
    980       1.2    simonb 	 *
    981       1.2    simonb 	 * XXXdeux: see above
    982       1.2    simonb 	 */
    983       1.2    simonb 	KASSERT((bp->b_flags & BC_NOCACHE) == 0);
    984       1.2    simonb #endif
    985       1.2    simonb 	KASSERT(bp->b_flags & B_LOCKED);
    986       1.2    simonb 
    987       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_BUFFER,
    988       1.2    simonb 	   ("wapbl_remove_buf thread %d.%d removing buf %p with "
    989       1.2    simonb 	    "%d bytes %d bcount\n",
    990       1.2    simonb 	    curproc->p_pid, curlwp->l_lid, bp, bp->b_bufsize, bp->b_bcount));
    991       1.2    simonb 
    992       1.2    simonb 	KASSERT(wl->wl_bufbytes >= bp->b_bufsize);
    993       1.2    simonb 	wl->wl_bufbytes -= bp->b_bufsize;
    994       1.2    simonb 	KASSERT(wl->wl_bcount >= bp->b_bcount);
    995       1.2    simonb 	wl->wl_bcount -= bp->b_bcount;
    996       1.2    simonb 	KASSERT(wl->wl_bufcount > 0);
    997       1.2    simonb 	wl->wl_bufcount--;
    998       1.2    simonb 	KASSERT((wl->wl_bufcount == 0) == (wl->wl_bufbytes == 0));
    999       1.2    simonb 	KASSERT((wl->wl_bufcount == 0) == (wl->wl_bcount == 0));
   1000       1.2    simonb 	LIST_REMOVE(bp, b_wapbllist);
   1001       1.2    simonb 
   1002       1.2    simonb 	bp->b_flags &= ~B_LOCKED;
   1003       1.2    simonb }
   1004       1.2    simonb 
   1005       1.2    simonb /* called from brelsel() in vfs_bio among other places */
   1006       1.2    simonb void
   1007       1.2    simonb wapbl_remove_buf(struct wapbl * wl, struct buf *bp)
   1008       1.2    simonb {
   1009       1.2    simonb 
   1010       1.2    simonb 	mutex_enter(&wl->wl_mtx);
   1011       1.2    simonb 	wapbl_remove_buf_locked(wl, bp);
   1012       1.2    simonb 	mutex_exit(&wl->wl_mtx);
   1013       1.2    simonb }
   1014       1.2    simonb 
   1015       1.2    simonb void
   1016       1.2    simonb wapbl_resize_buf(struct wapbl *wl, struct buf *bp, long oldsz, long oldcnt)
   1017       1.2    simonb {
   1018       1.2    simonb 
   1019       1.2    simonb 	KASSERT(bp->b_cflags & BC_BUSY);
   1020       1.2    simonb 
   1021       1.2    simonb 	/*
   1022       1.2    simonb 	 * XXX: why does this depend on B_LOCKED?  otherwise the buf
   1023       1.2    simonb 	 * is not for a transaction?  if so, why is this called in the
   1024       1.2    simonb 	 * first place?
   1025       1.2    simonb 	 */
   1026       1.2    simonb 	if (bp->b_flags & B_LOCKED) {
   1027       1.2    simonb 		mutex_enter(&wl->wl_mtx);
   1028       1.2    simonb 		wl->wl_bufbytes += bp->b_bufsize - oldsz;
   1029       1.2    simonb 		wl->wl_bcount += bp->b_bcount - oldcnt;
   1030       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1031       1.2    simonb 	}
   1032       1.2    simonb }
   1033       1.2    simonb 
   1034       1.2    simonb #endif /* _KERNEL */
   1035       1.2    simonb 
   1036       1.2    simonb /****************************************************************/
   1037       1.2    simonb /* Some utility inlines */
   1038       1.2    simonb 
   1039       1.2    simonb /* This is used to advance the pointer at old to new value at old+delta */
   1040      1.30  uebayasi static inline off_t
   1041       1.2    simonb wapbl_advance(size_t size, size_t off, off_t old, size_t delta)
   1042       1.2    simonb {
   1043       1.2    simonb 	off_t new;
   1044       1.2    simonb 
   1045       1.2    simonb 	/* Define acceptable ranges for inputs. */
   1046       1.2    simonb 	KASSERT(delta <= size);
   1047       1.2    simonb 	KASSERT((old == 0) || (old >= off));
   1048       1.2    simonb 	KASSERT(old < (size + off));
   1049       1.2    simonb 
   1050       1.2    simonb 	if ((old == 0) && (delta != 0))
   1051       1.2    simonb 		new = off + delta;
   1052       1.2    simonb 	else if ((old + delta) < (size + off))
   1053       1.2    simonb 		new = old + delta;
   1054       1.2    simonb 	else
   1055       1.2    simonb 		new = (old + delta) - size;
   1056       1.2    simonb 
   1057       1.2    simonb 	/* Note some interesting axioms */
   1058       1.2    simonb 	KASSERT((delta != 0) || (new == old));
   1059       1.2    simonb 	KASSERT((delta == 0) || (new != 0));
   1060       1.2    simonb 	KASSERT((delta != (size)) || (new == old));
   1061       1.2    simonb 
   1062       1.2    simonb 	/* Define acceptable ranges for output. */
   1063       1.2    simonb 	KASSERT((new == 0) || (new >= off));
   1064       1.2    simonb 	KASSERT(new < (size + off));
   1065       1.2    simonb 	return new;
   1066       1.2    simonb }
   1067       1.2    simonb 
   1068      1.30  uebayasi static inline size_t
   1069       1.2    simonb wapbl_space_used(size_t avail, off_t head, off_t tail)
   1070       1.2    simonb {
   1071       1.2    simonb 
   1072       1.2    simonb 	if (tail == 0) {
   1073       1.2    simonb 		KASSERT(head == 0);
   1074       1.2    simonb 		return 0;
   1075       1.2    simonb 	}
   1076       1.2    simonb 	return ((head + (avail - 1) - tail) % avail) + 1;
   1077       1.2    simonb }
   1078       1.2    simonb 
   1079      1.30  uebayasi static inline size_t
   1080       1.2    simonb wapbl_space_free(size_t avail, off_t head, off_t tail)
   1081       1.2    simonb {
   1082       1.2    simonb 
   1083       1.2    simonb 	return avail - wapbl_space_used(avail, head, tail);
   1084       1.2    simonb }
   1085       1.2    simonb 
   1086      1.30  uebayasi static inline void
   1087       1.2    simonb wapbl_advance_head(size_t size, size_t off, size_t delta, off_t *headp,
   1088       1.2    simonb 		   off_t *tailp)
   1089       1.2    simonb {
   1090       1.2    simonb 	off_t head = *headp;
   1091       1.2    simonb 	off_t tail = *tailp;
   1092       1.2    simonb 
   1093       1.2    simonb 	KASSERT(delta <= wapbl_space_free(size, head, tail));
   1094       1.2    simonb 	head = wapbl_advance(size, off, head, delta);
   1095       1.2    simonb 	if ((tail == 0) && (head != 0))
   1096       1.2    simonb 		tail = off;
   1097       1.2    simonb 	*headp = head;
   1098       1.2    simonb 	*tailp = tail;
   1099       1.2    simonb }
   1100       1.2    simonb 
   1101      1.30  uebayasi static inline void
   1102       1.2    simonb wapbl_advance_tail(size_t size, size_t off, size_t delta, off_t *headp,
   1103       1.2    simonb 		   off_t *tailp)
   1104       1.2    simonb {
   1105       1.2    simonb 	off_t head = *headp;
   1106       1.2    simonb 	off_t tail = *tailp;
   1107       1.2    simonb 
   1108       1.2    simonb 	KASSERT(delta <= wapbl_space_used(size, head, tail));
   1109       1.2    simonb 	tail = wapbl_advance(size, off, tail, delta);
   1110       1.2    simonb 	if (head == tail) {
   1111       1.2    simonb 		head = tail = 0;
   1112       1.2    simonb 	}
   1113       1.2    simonb 	*headp = head;
   1114       1.2    simonb 	*tailp = tail;
   1115       1.2    simonb }
   1116       1.2    simonb 
   1117       1.2    simonb #ifdef _KERNEL
   1118       1.2    simonb 
   1119       1.2    simonb /****************************************************************/
   1120       1.2    simonb 
   1121       1.2    simonb /*
   1122       1.2    simonb  * Remove transactions whose buffers are completely flushed to disk.
   1123       1.2    simonb  * Will block until at least minfree space is available.
   1124       1.2    simonb  * only intended to be called from inside wapbl_flush and therefore
   1125       1.2    simonb  * does not protect against commit races with itself or with flush.
   1126       1.2    simonb  */
   1127       1.2    simonb static int
   1128       1.2    simonb wapbl_truncate(struct wapbl *wl, size_t minfree, int waitonly)
   1129       1.2    simonb {
   1130       1.2    simonb 	size_t delta;
   1131       1.2    simonb 	size_t avail;
   1132       1.2    simonb 	off_t head;
   1133       1.2    simonb 	off_t tail;
   1134       1.2    simonb 	int error = 0;
   1135       1.2    simonb 
   1136       1.2    simonb 	KASSERT(minfree <= (wl->wl_circ_size - wl->wl_reserved_bytes));
   1137       1.2    simonb 	KASSERT(rw_write_held(&wl->wl_rwlock));
   1138       1.2    simonb 
   1139       1.2    simonb 	mutex_enter(&wl->wl_mtx);
   1140       1.2    simonb 
   1141       1.2    simonb 	/*
   1142       1.2    simonb 	 * First check to see if we have to do a commit
   1143       1.2    simonb 	 * at all.
   1144       1.2    simonb 	 */
   1145       1.2    simonb 	avail = wapbl_space_free(wl->wl_circ_size, wl->wl_head, wl->wl_tail);
   1146       1.2    simonb 	if (minfree < avail) {
   1147       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1148       1.2    simonb 		return 0;
   1149       1.2    simonb 	}
   1150       1.2    simonb 	minfree -= avail;
   1151       1.2    simonb 	while ((wl->wl_error_count == 0) &&
   1152       1.2    simonb 	    (wl->wl_reclaimable_bytes < minfree)) {
   1153       1.2    simonb         	WAPBL_PRINTF(WAPBL_PRINT_TRUNCATE,
   1154       1.2    simonb                    ("wapbl_truncate: sleeping on %p wl=%p bytes=%zd "
   1155       1.2    simonb 		    "minfree=%zd\n",
   1156       1.2    simonb                     &wl->wl_reclaimable_bytes, wl, wl->wl_reclaimable_bytes,
   1157       1.2    simonb 		    minfree));
   1158       1.2    simonb 
   1159       1.2    simonb 		cv_wait(&wl->wl_reclaimable_cv, &wl->wl_mtx);
   1160       1.2    simonb 	}
   1161       1.2    simonb 	if (wl->wl_reclaimable_bytes < minfree) {
   1162       1.2    simonb 		KASSERT(wl->wl_error_count);
   1163       1.2    simonb 		/* XXX maybe get actual error from buffer instead someday? */
   1164       1.2    simonb 		error = EIO;
   1165       1.2    simonb 	}
   1166       1.2    simonb 	head = wl->wl_head;
   1167       1.2    simonb 	tail = wl->wl_tail;
   1168       1.2    simonb 	delta = wl->wl_reclaimable_bytes;
   1169       1.2    simonb 
   1170       1.2    simonb 	/* If all of of the entries are flushed, then be sure to keep
   1171       1.2    simonb 	 * the reserved bytes reserved.  Watch out for discarded transactions,
   1172       1.2    simonb 	 * which could leave more bytes reserved than are reclaimable.
   1173       1.2    simonb 	 */
   1174       1.2    simonb 	if (SIMPLEQ_EMPTY(&wl->wl_entries) &&
   1175       1.2    simonb 	    (delta >= wl->wl_reserved_bytes)) {
   1176       1.2    simonb 		delta -= wl->wl_reserved_bytes;
   1177       1.2    simonb 	}
   1178       1.2    simonb 	wapbl_advance_tail(wl->wl_circ_size, wl->wl_circ_off, delta, &head,
   1179       1.2    simonb 			   &tail);
   1180       1.2    simonb 	KDASSERT(wl->wl_reserved_bytes <=
   1181       1.2    simonb 		wapbl_space_used(wl->wl_circ_size, head, tail));
   1182       1.2    simonb 	mutex_exit(&wl->wl_mtx);
   1183       1.2    simonb 
   1184       1.2    simonb 	if (error)
   1185       1.2    simonb 		return error;
   1186       1.2    simonb 
   1187       1.2    simonb 	if (waitonly)
   1188       1.2    simonb 		return 0;
   1189       1.2    simonb 
   1190       1.2    simonb 	/*
   1191       1.2    simonb 	 * This is where head, tail and delta are unprotected
   1192       1.2    simonb 	 * from races against itself or flush.  This is ok since
   1193       1.2    simonb 	 * we only call this routine from inside flush itself.
   1194       1.2    simonb 	 *
   1195       1.2    simonb 	 * XXX: how can it race against itself when accessed only
   1196       1.2    simonb 	 * from behind the write-locked rwlock?
   1197       1.2    simonb 	 */
   1198       1.2    simonb 	error = wapbl_write_commit(wl, head, tail);
   1199       1.2    simonb 	if (error)
   1200       1.2    simonb 		return error;
   1201       1.2    simonb 
   1202       1.2    simonb 	wl->wl_head = head;
   1203       1.2    simonb 	wl->wl_tail = tail;
   1204       1.2    simonb 
   1205       1.2    simonb 	mutex_enter(&wl->wl_mtx);
   1206       1.2    simonb 	KASSERT(wl->wl_reclaimable_bytes >= delta);
   1207       1.2    simonb 	wl->wl_reclaimable_bytes -= delta;
   1208       1.2    simonb 	mutex_exit(&wl->wl_mtx);
   1209       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_TRUNCATE,
   1210       1.2    simonb 	    ("wapbl_truncate thread %d.%d truncating %zu bytes\n",
   1211       1.2    simonb 	    curproc->p_pid, curlwp->l_lid, delta));
   1212       1.2    simonb 
   1213       1.2    simonb 	return 0;
   1214       1.2    simonb }
   1215       1.2    simonb 
   1216       1.2    simonb /****************************************************************/
   1217       1.2    simonb 
   1218       1.2    simonb void
   1219       1.2    simonb wapbl_biodone(struct buf *bp)
   1220       1.2    simonb {
   1221       1.2    simonb 	struct wapbl_entry *we = bp->b_private;
   1222       1.2    simonb 	struct wapbl *wl = we->we_wapbl;
   1223       1.2    simonb 
   1224       1.2    simonb 	/*
   1225       1.2    simonb 	 * Handle possible flushing of buffers after log has been
   1226       1.2    simonb 	 * decomissioned.
   1227       1.2    simonb 	 */
   1228       1.2    simonb 	if (!wl) {
   1229       1.2    simonb 		KASSERT(we->we_bufcount > 0);
   1230       1.2    simonb 		we->we_bufcount--;
   1231       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1232       1.2    simonb 		KASSERT(we->we_unsynced_bufbytes >= bp->b_bufsize);
   1233       1.2    simonb 		we->we_unsynced_bufbytes -= bp->b_bufsize;
   1234       1.2    simonb #endif
   1235       1.2    simonb 
   1236       1.2    simonb 		if (we->we_bufcount == 0) {
   1237       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1238       1.2    simonb 			KASSERT(we->we_unsynced_bufbytes == 0);
   1239       1.2    simonb #endif
   1240      1.18      yamt 			wapbl_free(we, sizeof(*we));
   1241       1.2    simonb 		}
   1242       1.2    simonb 
   1243       1.2    simonb 		brelse(bp, 0);
   1244       1.2    simonb 		return;
   1245       1.2    simonb 	}
   1246       1.2    simonb 
   1247       1.2    simonb #ifdef ohbother
   1248       1.2    simonb 	KDASSERT(bp->b_flags & B_DONE);
   1249       1.2    simonb 	KDASSERT(!(bp->b_flags & B_DELWRI));
   1250       1.2    simonb 	KDASSERT(bp->b_flags & B_ASYNC);
   1251       1.2    simonb 	KDASSERT(bp->b_flags & B_BUSY);
   1252       1.2    simonb 	KDASSERT(!(bp->b_flags & B_LOCKED));
   1253       1.2    simonb 	KDASSERT(!(bp->b_flags & B_READ));
   1254       1.2    simonb 	KDASSERT(!(bp->b_flags & B_INVAL));
   1255       1.2    simonb 	KDASSERT(!(bp->b_flags & B_NOCACHE));
   1256       1.2    simonb #endif
   1257       1.2    simonb 
   1258       1.2    simonb 	if (bp->b_error) {
   1259       1.2    simonb #ifdef notyet /* Can't currently handle possible dirty buffer reuse */
   1260      1.26       apb 		/*
   1261      1.26       apb 		 * XXXpooka: interfaces not fully updated
   1262      1.26       apb 		 * Note: this was not enabled in the original patch
   1263      1.26       apb 		 * against netbsd4 either.  I don't know if comment
   1264      1.26       apb 		 * above is true or not.
   1265      1.26       apb 		 */
   1266       1.2    simonb 
   1267       1.2    simonb 		/*
   1268       1.2    simonb 		 * If an error occurs, report the error and leave the
   1269       1.2    simonb 		 * buffer as a delayed write on the LRU queue.
   1270       1.2    simonb 		 * restarting the write would likely result in
   1271       1.2    simonb 		 * an error spinloop, so let it be done harmlessly
   1272       1.2    simonb 		 * by the syncer.
   1273       1.2    simonb 		 */
   1274       1.2    simonb 		bp->b_flags &= ~(B_DONE);
   1275       1.2    simonb 		simple_unlock(&bp->b_interlock);
   1276       1.2    simonb 
   1277       1.2    simonb 		if (we->we_error == 0) {
   1278       1.2    simonb 			mutex_enter(&wl->wl_mtx);
   1279       1.2    simonb 			wl->wl_error_count++;
   1280       1.2    simonb 			mutex_exit(&wl->wl_mtx);
   1281       1.2    simonb 			cv_broadcast(&wl->wl_reclaimable_cv);
   1282       1.2    simonb 		}
   1283       1.2    simonb 		we->we_error = bp->b_error;
   1284       1.2    simonb 		bp->b_error = 0;
   1285       1.2    simonb 		brelse(bp);
   1286       1.2    simonb 		return;
   1287       1.2    simonb #else
   1288       1.2    simonb 		/* For now, just mark the log permanently errored out */
   1289       1.2    simonb 
   1290       1.2    simonb 		mutex_enter(&wl->wl_mtx);
   1291       1.2    simonb 		if (wl->wl_error_count == 0) {
   1292       1.2    simonb 			wl->wl_error_count++;
   1293       1.2    simonb 			cv_broadcast(&wl->wl_reclaimable_cv);
   1294       1.2    simonb 		}
   1295       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1296       1.2    simonb #endif
   1297       1.2    simonb 	}
   1298       1.2    simonb 
   1299       1.2    simonb 	mutex_enter(&wl->wl_mtx);
   1300       1.2    simonb 
   1301       1.2    simonb 	KASSERT(we->we_bufcount > 0);
   1302       1.2    simonb 	we->we_bufcount--;
   1303       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1304       1.2    simonb 	KASSERT(we->we_unsynced_bufbytes >= bp->b_bufsize);
   1305       1.2    simonb 	we->we_unsynced_bufbytes -= bp->b_bufsize;
   1306       1.2    simonb 	KASSERT(wl->wl_unsynced_bufbytes >= bp->b_bufsize);
   1307       1.2    simonb 	wl->wl_unsynced_bufbytes -= bp->b_bufsize;
   1308       1.2    simonb #endif
   1309       1.2    simonb 
   1310       1.2    simonb 	/*
   1311       1.2    simonb 	 * If the current transaction can be reclaimed, start
   1312       1.2    simonb 	 * at the beginning and reclaim any consecutive reclaimable
   1313       1.2    simonb 	 * transactions.  If we successfully reclaim anything,
   1314       1.2    simonb 	 * then wakeup anyone waiting for the reclaim.
   1315       1.2    simonb 	 */
   1316       1.2    simonb 	if (we->we_bufcount == 0) {
   1317       1.2    simonb 		size_t delta = 0;
   1318       1.2    simonb 		int errcnt = 0;
   1319       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1320       1.2    simonb 		KDASSERT(we->we_unsynced_bufbytes == 0);
   1321       1.2    simonb #endif
   1322       1.2    simonb 		/*
   1323       1.2    simonb 		 * clear any posted error, since the buffer it came from
   1324       1.2    simonb 		 * has successfully flushed by now
   1325       1.2    simonb 		 */
   1326       1.2    simonb 		while ((we = SIMPLEQ_FIRST(&wl->wl_entries)) &&
   1327       1.2    simonb 		       (we->we_bufcount == 0)) {
   1328       1.2    simonb 			delta += we->we_reclaimable_bytes;
   1329       1.2    simonb 			if (we->we_error)
   1330       1.2    simonb 				errcnt++;
   1331       1.2    simonb 			SIMPLEQ_REMOVE_HEAD(&wl->wl_entries, we_entries);
   1332      1.18      yamt 			wapbl_free(we, sizeof(*we));
   1333       1.2    simonb 		}
   1334       1.2    simonb 
   1335       1.2    simonb 		if (delta) {
   1336       1.2    simonb 			wl->wl_reclaimable_bytes += delta;
   1337       1.2    simonb 			KASSERT(wl->wl_error_count >= errcnt);
   1338       1.2    simonb 			wl->wl_error_count -= errcnt;
   1339       1.2    simonb 			cv_broadcast(&wl->wl_reclaimable_cv);
   1340       1.2    simonb 		}
   1341       1.2    simonb 	}
   1342       1.2    simonb 
   1343       1.2    simonb 	mutex_exit(&wl->wl_mtx);
   1344       1.2    simonb 	brelse(bp, 0);
   1345       1.2    simonb }
   1346       1.2    simonb 
   1347       1.2    simonb /*
   1348       1.2    simonb  * Write transactions to disk + start I/O for contents
   1349       1.2    simonb  */
   1350       1.2    simonb int
   1351       1.2    simonb wapbl_flush(struct wapbl *wl, int waitfor)
   1352       1.2    simonb {
   1353       1.2    simonb 	struct buf *bp;
   1354       1.2    simonb 	struct wapbl_entry *we;
   1355       1.2    simonb 	off_t off;
   1356       1.2    simonb 	off_t head;
   1357       1.2    simonb 	off_t tail;
   1358       1.2    simonb 	size_t delta = 0;
   1359       1.2    simonb 	size_t flushsize;
   1360       1.2    simonb 	size_t reserved;
   1361       1.2    simonb 	int error = 0;
   1362       1.2    simonb 
   1363       1.2    simonb 	/*
   1364       1.2    simonb 	 * Do a quick check to see if a full flush can be skipped
   1365       1.2    simonb 	 * This assumes that the flush callback does not need to be called
   1366       1.2    simonb 	 * unless there are other outstanding bufs.
   1367       1.2    simonb 	 */
   1368       1.2    simonb 	if (!waitfor) {
   1369       1.2    simonb 		size_t nbufs;
   1370       1.2    simonb 		mutex_enter(&wl->wl_mtx);	/* XXX need mutex here to
   1371       1.2    simonb 						   protect the KASSERTS */
   1372       1.2    simonb 		nbufs = wl->wl_bufcount;
   1373       1.2    simonb 		KASSERT((wl->wl_bufcount == 0) == (wl->wl_bufbytes == 0));
   1374       1.2    simonb 		KASSERT((wl->wl_bufcount == 0) == (wl->wl_bcount == 0));
   1375       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1376       1.2    simonb 		if (nbufs == 0)
   1377       1.2    simonb 			return 0;
   1378       1.2    simonb 	}
   1379       1.2    simonb 
   1380       1.2    simonb 	/*
   1381       1.2    simonb 	 * XXX we may consider using LK_UPGRADE here
   1382       1.2    simonb 	 * if we want to call flush from inside a transaction
   1383       1.2    simonb 	 */
   1384       1.2    simonb 	rw_enter(&wl->wl_rwlock, RW_WRITER);
   1385       1.2    simonb 	wl->wl_flush(wl->wl_mount, wl->wl_deallocblks, wl->wl_dealloclens,
   1386       1.2    simonb 	    wl->wl_dealloccnt);
   1387       1.2    simonb 
   1388       1.2    simonb 	/*
   1389       1.2    simonb 	 * Now that we are fully locked and flushed,
   1390       1.2    simonb 	 * do another check for nothing to do.
   1391       1.2    simonb 	 */
   1392       1.2    simonb 	if (wl->wl_bufcount == 0) {
   1393       1.2    simonb 		goto out;
   1394       1.2    simonb 	}
   1395       1.2    simonb 
   1396       1.2    simonb #if 0
   1397       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_FLUSH,
   1398       1.2    simonb 		     ("wapbl_flush thread %d.%d flushing entries with "
   1399       1.2    simonb 		      "bufcount=%zu bufbytes=%zu\n",
   1400       1.2    simonb 		      curproc->p_pid, curlwp->l_lid, wl->wl_bufcount,
   1401       1.2    simonb 		      wl->wl_bufbytes));
   1402       1.2    simonb #endif
   1403       1.2    simonb 
   1404       1.2    simonb 	/* Calculate amount of space needed to flush */
   1405       1.2    simonb 	flushsize = wapbl_transaction_len(wl);
   1406      1.39  christos 	if (wapbl_verbose_commit) {
   1407      1.39  christos 		struct timespec ts;
   1408      1.39  christos 		getnanotime(&ts);
   1409  1.39.4.2    bouyer 		printf("%s: %lld.%09ld this transaction = %zu bytes\n",
   1410      1.39  christos 		    __func__, (long long)ts.tv_sec,
   1411      1.39  christos 		    (long)ts.tv_nsec, flushsize);
   1412      1.39  christos 	}
   1413       1.2    simonb 
   1414       1.2    simonb 	if (flushsize > (wl->wl_circ_size - wl->wl_reserved_bytes)) {
   1415       1.2    simonb 		/*
   1416       1.2    simonb 		 * XXX this could be handled more gracefully, perhaps place
   1417       1.2    simonb 		 * only a partial transaction in the log and allow the
   1418       1.2    simonb 		 * remaining to flush without the protection of the journal.
   1419       1.2    simonb 		 */
   1420       1.2    simonb 		panic("wapbl_flush: current transaction too big to flush\n");
   1421       1.2    simonb 	}
   1422       1.2    simonb 
   1423       1.2    simonb 	error = wapbl_truncate(wl, flushsize, 0);
   1424       1.2    simonb 	if (error)
   1425       1.2    simonb 		goto out2;
   1426       1.2    simonb 
   1427       1.2    simonb 	off = wl->wl_head;
   1428       1.2    simonb 	KASSERT((off == 0) || ((off >= wl->wl_circ_off) &&
   1429       1.2    simonb 	                      (off < wl->wl_circ_off + wl->wl_circ_size)));
   1430       1.2    simonb 	error = wapbl_write_blocks(wl, &off);
   1431       1.2    simonb 	if (error)
   1432       1.2    simonb 		goto out2;
   1433       1.2    simonb 	error = wapbl_write_revocations(wl, &off);
   1434       1.2    simonb 	if (error)
   1435       1.2    simonb 		goto out2;
   1436       1.2    simonb 	error = wapbl_write_inodes(wl, &off);
   1437       1.2    simonb 	if (error)
   1438       1.2    simonb 		goto out2;
   1439       1.2    simonb 
   1440       1.2    simonb 	reserved = 0;
   1441       1.2    simonb 	if (wl->wl_inohashcnt)
   1442       1.2    simonb 		reserved = wapbl_transaction_inodes_len(wl);
   1443       1.2    simonb 
   1444       1.2    simonb 	head = wl->wl_head;
   1445       1.2    simonb 	tail = wl->wl_tail;
   1446       1.2    simonb 
   1447       1.2    simonb 	wapbl_advance_head(wl->wl_circ_size, wl->wl_circ_off, flushsize,
   1448       1.2    simonb 	    &head, &tail);
   1449       1.2    simonb #ifdef WAPBL_DEBUG
   1450       1.2    simonb 	if (head != off) {
   1451       1.2    simonb 		panic("lost head! head=%"PRIdMAX" tail=%" PRIdMAX
   1452       1.2    simonb 		      " off=%"PRIdMAX" flush=%zu\n",
   1453       1.2    simonb 		      (intmax_t)head, (intmax_t)tail, (intmax_t)off,
   1454       1.2    simonb 		      flushsize);
   1455       1.2    simonb 	}
   1456       1.2    simonb #else
   1457       1.2    simonb 	KASSERT(head == off);
   1458       1.2    simonb #endif
   1459       1.2    simonb 
   1460       1.2    simonb 	/* Opportunistically move the tail forward if we can */
   1461       1.2    simonb 	if (!wapbl_lazy_truncate) {
   1462       1.2    simonb 		mutex_enter(&wl->wl_mtx);
   1463       1.2    simonb 		delta = wl->wl_reclaimable_bytes;
   1464       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1465       1.2    simonb 		wapbl_advance_tail(wl->wl_circ_size, wl->wl_circ_off, delta,
   1466       1.2    simonb 		    &head, &tail);
   1467       1.2    simonb 	}
   1468       1.2    simonb 
   1469       1.2    simonb 	error = wapbl_write_commit(wl, head, tail);
   1470       1.2    simonb 	if (error)
   1471       1.2    simonb 		goto out2;
   1472       1.2    simonb 
   1473       1.2    simonb 	we = wapbl_calloc(1, sizeof(*we));
   1474       1.2    simonb 
   1475       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1476       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_FLUSH,
   1477       1.2    simonb 		("wapbl_flush: thread %d.%d head+=%zu tail+=%zu used=%zu"
   1478       1.2    simonb 		 " unsynced=%zu"
   1479       1.2    simonb 		 "\n\tbufcount=%zu bufbytes=%zu bcount=%zu deallocs=%d "
   1480       1.2    simonb 		 "inodes=%d\n",
   1481       1.2    simonb 		 curproc->p_pid, curlwp->l_lid, flushsize, delta,
   1482       1.2    simonb 		 wapbl_space_used(wl->wl_circ_size, head, tail),
   1483       1.2    simonb 		 wl->wl_unsynced_bufbytes, wl->wl_bufcount,
   1484       1.2    simonb 		 wl->wl_bufbytes, wl->wl_bcount, wl->wl_dealloccnt,
   1485       1.2    simonb 		 wl->wl_inohashcnt));
   1486       1.2    simonb #else
   1487       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_FLUSH,
   1488       1.2    simonb 		("wapbl_flush: thread %d.%d head+=%zu tail+=%zu used=%zu"
   1489       1.2    simonb 		 "\n\tbufcount=%zu bufbytes=%zu bcount=%zu deallocs=%d "
   1490       1.2    simonb 		 "inodes=%d\n",
   1491       1.2    simonb 		 curproc->p_pid, curlwp->l_lid, flushsize, delta,
   1492       1.2    simonb 		 wapbl_space_used(wl->wl_circ_size, head, tail),
   1493       1.2    simonb 		 wl->wl_bufcount, wl->wl_bufbytes, wl->wl_bcount,
   1494       1.2    simonb 		 wl->wl_dealloccnt, wl->wl_inohashcnt));
   1495       1.2    simonb #endif
   1496       1.2    simonb 
   1497       1.2    simonb 
   1498       1.2    simonb 	mutex_enter(&bufcache_lock);
   1499       1.2    simonb 	mutex_enter(&wl->wl_mtx);
   1500       1.2    simonb 
   1501       1.2    simonb 	wl->wl_reserved_bytes = reserved;
   1502       1.2    simonb 	wl->wl_head = head;
   1503       1.2    simonb 	wl->wl_tail = tail;
   1504       1.2    simonb 	KASSERT(wl->wl_reclaimable_bytes >= delta);
   1505       1.2    simonb 	wl->wl_reclaimable_bytes -= delta;
   1506       1.2    simonb 	wl->wl_dealloccnt = 0;
   1507       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1508       1.2    simonb 	wl->wl_unsynced_bufbytes += wl->wl_bufbytes;
   1509       1.2    simonb #endif
   1510       1.2    simonb 
   1511       1.2    simonb 	we->we_wapbl = wl;
   1512       1.2    simonb 	we->we_bufcount = wl->wl_bufcount;
   1513       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1514       1.2    simonb 	we->we_unsynced_bufbytes = wl->wl_bufbytes;
   1515       1.2    simonb #endif
   1516       1.2    simonb 	we->we_reclaimable_bytes = flushsize;
   1517       1.2    simonb 	we->we_error = 0;
   1518       1.2    simonb 	SIMPLEQ_INSERT_TAIL(&wl->wl_entries, we, we_entries);
   1519       1.2    simonb 
   1520       1.2    simonb 	/*
   1521       1.2    simonb 	 * this flushes bufs in reverse order than they were queued
   1522       1.2    simonb 	 * it shouldn't matter, but if we care we could use TAILQ instead.
   1523       1.2    simonb 	 * XXX Note they will get put on the lru queue when they flush
   1524       1.2    simonb 	 * so we might actually want to change this to preserve order.
   1525       1.2    simonb 	 */
   1526       1.2    simonb 	while ((bp = LIST_FIRST(&wl->wl_bufs)) != NULL) {
   1527       1.2    simonb 		if (bbusy(bp, 0, 0, &wl->wl_mtx)) {
   1528       1.2    simonb 			continue;
   1529       1.2    simonb 		}
   1530       1.2    simonb 		bp->b_iodone = wapbl_biodone;
   1531       1.2    simonb 		bp->b_private = we;
   1532       1.2    simonb 		bremfree(bp);
   1533       1.2    simonb 		wapbl_remove_buf_locked(wl, bp);
   1534       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1535       1.2    simonb 		mutex_exit(&bufcache_lock);
   1536       1.2    simonb 		bawrite(bp);
   1537       1.2    simonb 		mutex_enter(&bufcache_lock);
   1538       1.2    simonb 		mutex_enter(&wl->wl_mtx);
   1539       1.2    simonb 	}
   1540       1.2    simonb 	mutex_exit(&wl->wl_mtx);
   1541       1.2    simonb 	mutex_exit(&bufcache_lock);
   1542       1.2    simonb 
   1543       1.2    simonb #if 0
   1544       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_FLUSH,
   1545       1.2    simonb 		     ("wapbl_flush thread %d.%d done flushing entries...\n",
   1546       1.2    simonb 		     curproc->p_pid, curlwp->l_lid));
   1547       1.2    simonb #endif
   1548       1.2    simonb 
   1549       1.2    simonb  out:
   1550       1.2    simonb 
   1551       1.2    simonb 	/*
   1552       1.2    simonb 	 * If the waitfor flag is set, don't return until everything is
   1553       1.2    simonb 	 * fully flushed and the on disk log is empty.
   1554       1.2    simonb 	 */
   1555       1.2    simonb 	if (waitfor) {
   1556       1.2    simonb 		error = wapbl_truncate(wl, wl->wl_circ_size -
   1557       1.2    simonb 			wl->wl_reserved_bytes, wapbl_lazy_truncate);
   1558       1.2    simonb 	}
   1559       1.2    simonb 
   1560       1.2    simonb  out2:
   1561       1.2    simonb 	if (error) {
   1562       1.2    simonb 		wl->wl_flush_abort(wl->wl_mount, wl->wl_deallocblks,
   1563       1.2    simonb 		    wl->wl_dealloclens, wl->wl_dealloccnt);
   1564       1.2    simonb 	}
   1565       1.2    simonb 
   1566       1.2    simonb #ifdef WAPBL_DEBUG_PRINT
   1567       1.2    simonb 	if (error) {
   1568       1.2    simonb 		pid_t pid = -1;
   1569       1.2    simonb 		lwpid_t lid = -1;
   1570       1.2    simonb 		if (curproc)
   1571       1.2    simonb 			pid = curproc->p_pid;
   1572       1.2    simonb 		if (curlwp)
   1573       1.2    simonb 			lid = curlwp->l_lid;
   1574       1.2    simonb 		mutex_enter(&wl->wl_mtx);
   1575       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1576       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_ERROR,
   1577       1.2    simonb 		    ("wapbl_flush: thread %d.%d aborted flush: "
   1578       1.2    simonb 		    "error = %d\n"
   1579       1.2    simonb 		    "\tbufcount=%zu bufbytes=%zu bcount=%zu "
   1580       1.2    simonb 		    "deallocs=%d inodes=%d\n"
   1581       1.2    simonb 		    "\terrcnt = %d, reclaimable=%zu reserved=%zu "
   1582       1.2    simonb 		    "unsynced=%zu\n",
   1583       1.2    simonb 		    pid, lid, error, wl->wl_bufcount,
   1584       1.2    simonb 		    wl->wl_bufbytes, wl->wl_bcount,
   1585       1.2    simonb 		    wl->wl_dealloccnt, wl->wl_inohashcnt,
   1586       1.2    simonb 		    wl->wl_error_count, wl->wl_reclaimable_bytes,
   1587       1.2    simonb 		    wl->wl_reserved_bytes, wl->wl_unsynced_bufbytes));
   1588       1.2    simonb 		SIMPLEQ_FOREACH(we, &wl->wl_entries, we_entries) {
   1589       1.2    simonb 			WAPBL_PRINTF(WAPBL_PRINT_ERROR,
   1590       1.2    simonb 			    ("\tentry: bufcount = %zu, reclaimable = %zu, "
   1591       1.2    simonb 			     "error = %d, unsynced = %zu\n",
   1592       1.2    simonb 			     we->we_bufcount, we->we_reclaimable_bytes,
   1593       1.2    simonb 			     we->we_error, we->we_unsynced_bufbytes));
   1594       1.2    simonb 		}
   1595       1.2    simonb #else
   1596       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_ERROR,
   1597       1.2    simonb 		    ("wapbl_flush: thread %d.%d aborted flush: "
   1598       1.2    simonb 		     "error = %d\n"
   1599       1.2    simonb 		     "\tbufcount=%zu bufbytes=%zu bcount=%zu "
   1600       1.2    simonb 		     "deallocs=%d inodes=%d\n"
   1601       1.2    simonb 		     "\terrcnt = %d, reclaimable=%zu reserved=%zu\n",
   1602       1.2    simonb 		     pid, lid, error, wl->wl_bufcount,
   1603       1.2    simonb 		     wl->wl_bufbytes, wl->wl_bcount,
   1604       1.2    simonb 		     wl->wl_dealloccnt, wl->wl_inohashcnt,
   1605       1.2    simonb 		     wl->wl_error_count, wl->wl_reclaimable_bytes,
   1606       1.2    simonb 		     wl->wl_reserved_bytes));
   1607       1.2    simonb 		SIMPLEQ_FOREACH(we, &wl->wl_entries, we_entries) {
   1608       1.2    simonb 			WAPBL_PRINTF(WAPBL_PRINT_ERROR,
   1609       1.2    simonb 			    ("\tentry: bufcount = %zu, reclaimable = %zu, "
   1610       1.2    simonb 			     "error = %d\n", we->we_bufcount,
   1611       1.2    simonb 			     we->we_reclaimable_bytes, we->we_error));
   1612       1.2    simonb 		}
   1613       1.2    simonb #endif
   1614       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1615       1.2    simonb 	}
   1616       1.2    simonb #endif
   1617       1.2    simonb 
   1618       1.2    simonb 	rw_exit(&wl->wl_rwlock);
   1619       1.2    simonb 	return error;
   1620       1.2    simonb }
   1621       1.2    simonb 
   1622       1.2    simonb /****************************************************************/
   1623       1.2    simonb 
   1624       1.2    simonb void
   1625       1.2    simonb wapbl_jlock_assert(struct wapbl *wl)
   1626       1.2    simonb {
   1627       1.2    simonb 
   1628      1.23        ad 	KASSERT(rw_lock_held(&wl->wl_rwlock));
   1629       1.2    simonb }
   1630       1.2    simonb 
   1631       1.2    simonb void
   1632       1.2    simonb wapbl_junlock_assert(struct wapbl *wl)
   1633       1.2    simonb {
   1634       1.2    simonb 
   1635       1.2    simonb 	KASSERT(!rw_write_held(&wl->wl_rwlock));
   1636       1.2    simonb }
   1637       1.2    simonb 
   1638       1.2    simonb /****************************************************************/
   1639       1.2    simonb 
   1640       1.2    simonb /* locks missing */
   1641       1.2    simonb void
   1642       1.2    simonb wapbl_print(struct wapbl *wl,
   1643       1.2    simonb 		int full,
   1644       1.2    simonb 		void (*pr)(const char *, ...))
   1645       1.2    simonb {
   1646       1.2    simonb 	struct buf *bp;
   1647       1.2    simonb 	struct wapbl_entry *we;
   1648       1.2    simonb 	(*pr)("wapbl %p", wl);
   1649       1.2    simonb 	(*pr)("\nlogvp = %p, devvp = %p, logpbn = %"PRId64"\n",
   1650       1.2    simonb 	      wl->wl_logvp, wl->wl_devvp, wl->wl_logpbn);
   1651       1.2    simonb 	(*pr)("circ = %zu, header = %zu, head = %"PRIdMAX" tail = %"PRIdMAX"\n",
   1652       1.2    simonb 	      wl->wl_circ_size, wl->wl_circ_off,
   1653       1.2    simonb 	      (intmax_t)wl->wl_head, (intmax_t)wl->wl_tail);
   1654       1.2    simonb 	(*pr)("fs_dev_bshift = %d, log_dev_bshift = %d\n",
   1655       1.2    simonb 	      wl->wl_log_dev_bshift, wl->wl_fs_dev_bshift);
   1656       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1657       1.2    simonb 	(*pr)("bufcount = %zu, bufbytes = %zu bcount = %zu reclaimable = %zu "
   1658       1.2    simonb 	      "reserved = %zu errcnt = %d unsynced = %zu\n",
   1659       1.2    simonb 	      wl->wl_bufcount, wl->wl_bufbytes, wl->wl_bcount,
   1660       1.2    simonb 	      wl->wl_reclaimable_bytes, wl->wl_reserved_bytes,
   1661       1.2    simonb 				wl->wl_error_count, wl->wl_unsynced_bufbytes);
   1662       1.2    simonb #else
   1663       1.2    simonb 	(*pr)("bufcount = %zu, bufbytes = %zu bcount = %zu reclaimable = %zu "
   1664       1.2    simonb 	      "reserved = %zu errcnt = %d\n", wl->wl_bufcount, wl->wl_bufbytes,
   1665       1.2    simonb 	      wl->wl_bcount, wl->wl_reclaimable_bytes, wl->wl_reserved_bytes,
   1666       1.2    simonb 				wl->wl_error_count);
   1667       1.2    simonb #endif
   1668       1.2    simonb 	(*pr)("\tdealloccnt = %d, dealloclim = %d\n",
   1669       1.2    simonb 	      wl->wl_dealloccnt, wl->wl_dealloclim);
   1670       1.2    simonb 	(*pr)("\tinohashcnt = %d, inohashmask = 0x%08x\n",
   1671       1.2    simonb 	      wl->wl_inohashcnt, wl->wl_inohashmask);
   1672       1.2    simonb 	(*pr)("entries:\n");
   1673       1.2    simonb 	SIMPLEQ_FOREACH(we, &wl->wl_entries, we_entries) {
   1674       1.2    simonb #ifdef WAPBL_DEBUG_BUFBYTES
   1675       1.2    simonb 		(*pr)("\tbufcount = %zu, reclaimable = %zu, error = %d, "
   1676       1.2    simonb 		      "unsynced = %zu\n",
   1677       1.2    simonb 		      we->we_bufcount, we->we_reclaimable_bytes,
   1678       1.2    simonb 		      we->we_error, we->we_unsynced_bufbytes);
   1679       1.2    simonb #else
   1680       1.2    simonb 		(*pr)("\tbufcount = %zu, reclaimable = %zu, error = %d\n",
   1681       1.2    simonb 		      we->we_bufcount, we->we_reclaimable_bytes, we->we_error);
   1682       1.2    simonb #endif
   1683       1.2    simonb 	}
   1684       1.2    simonb 	if (full) {
   1685       1.2    simonb 		int cnt = 0;
   1686       1.2    simonb 		(*pr)("bufs =");
   1687       1.2    simonb 		LIST_FOREACH(bp, &wl->wl_bufs, b_wapbllist) {
   1688       1.2    simonb 			if (!LIST_NEXT(bp, b_wapbllist)) {
   1689       1.2    simonb 				(*pr)(" %p", bp);
   1690       1.2    simonb 			} else if ((++cnt % 6) == 0) {
   1691       1.2    simonb 				(*pr)(" %p,\n\t", bp);
   1692       1.2    simonb 			} else {
   1693       1.2    simonb 				(*pr)(" %p,", bp);
   1694       1.2    simonb 			}
   1695       1.2    simonb 		}
   1696       1.2    simonb 		(*pr)("\n");
   1697       1.2    simonb 
   1698       1.2    simonb 		(*pr)("dealloced blks = ");
   1699       1.2    simonb 		{
   1700       1.2    simonb 			int i;
   1701       1.2    simonb 			cnt = 0;
   1702       1.2    simonb 			for (i = 0; i < wl->wl_dealloccnt; i++) {
   1703       1.2    simonb 				(*pr)(" %"PRId64":%d,",
   1704       1.2    simonb 				      wl->wl_deallocblks[i],
   1705       1.2    simonb 				      wl->wl_dealloclens[i]);
   1706       1.2    simonb 				if ((++cnt % 4) == 0) {
   1707       1.2    simonb 					(*pr)("\n\t");
   1708       1.2    simonb 				}
   1709       1.2    simonb 			}
   1710       1.2    simonb 		}
   1711       1.2    simonb 		(*pr)("\n");
   1712       1.2    simonb 
   1713       1.2    simonb 		(*pr)("registered inodes = ");
   1714       1.2    simonb 		{
   1715       1.2    simonb 			int i;
   1716       1.2    simonb 			cnt = 0;
   1717       1.2    simonb 			for (i = 0; i <= wl->wl_inohashmask; i++) {
   1718       1.2    simonb 				struct wapbl_ino_head *wih;
   1719       1.2    simonb 				struct wapbl_ino *wi;
   1720       1.2    simonb 
   1721       1.2    simonb 				wih = &wl->wl_inohash[i];
   1722       1.2    simonb 				LIST_FOREACH(wi, wih, wi_hash) {
   1723       1.2    simonb 					if (wi->wi_ino == 0)
   1724       1.2    simonb 						continue;
   1725       1.2    simonb 					(*pr)(" %"PRId32"/0%06"PRIo32",",
   1726       1.2    simonb 					    wi->wi_ino, wi->wi_mode);
   1727       1.2    simonb 					if ((++cnt % 4) == 0) {
   1728       1.2    simonb 						(*pr)("\n\t");
   1729       1.2    simonb 					}
   1730       1.2    simonb 				}
   1731       1.2    simonb 			}
   1732       1.2    simonb 			(*pr)("\n");
   1733       1.2    simonb 		}
   1734       1.2    simonb 	}
   1735       1.2    simonb }
   1736       1.2    simonb 
   1737       1.2    simonb #if defined(WAPBL_DEBUG) || defined(DDB)
   1738       1.2    simonb void
   1739       1.2    simonb wapbl_dump(struct wapbl *wl)
   1740       1.2    simonb {
   1741       1.2    simonb #if defined(WAPBL_DEBUG)
   1742       1.2    simonb 	if (!wl)
   1743       1.2    simonb 		wl = wapbl_debug_wl;
   1744       1.2    simonb #endif
   1745       1.2    simonb 	if (!wl)
   1746       1.2    simonb 		return;
   1747       1.2    simonb 	wapbl_print(wl, 1, printf);
   1748       1.2    simonb }
   1749       1.2    simonb #endif
   1750       1.2    simonb 
   1751       1.2    simonb /****************************************************************/
   1752       1.2    simonb 
   1753       1.2    simonb void
   1754       1.2    simonb wapbl_register_deallocation(struct wapbl *wl, daddr_t blk, int len)
   1755       1.2    simonb {
   1756       1.2    simonb 
   1757       1.2    simonb 	wapbl_jlock_assert(wl);
   1758       1.2    simonb 
   1759      1.38   hannken 	mutex_enter(&wl->wl_mtx);
   1760       1.2    simonb 	/* XXX should eventually instead tie this into resource estimation */
   1761      1.27     pooka 	/*
   1762      1.27     pooka 	 * XXX this panic needs locking/mutex analysis and the
   1763      1.27     pooka 	 * ability to cope with the failure.
   1764      1.27     pooka 	 */
   1765      1.27     pooka 	/* XXX this XXX doesn't have enough XXX */
   1766      1.27     pooka 	if (__predict_false(wl->wl_dealloccnt >= wl->wl_dealloclim))
   1767      1.27     pooka 		panic("wapbl_register_deallocation: out of resources");
   1768      1.27     pooka 
   1769       1.2    simonb 	wl->wl_deallocblks[wl->wl_dealloccnt] = blk;
   1770       1.2    simonb 	wl->wl_dealloclens[wl->wl_dealloccnt] = len;
   1771       1.2    simonb 	wl->wl_dealloccnt++;
   1772       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_ALLOC,
   1773       1.2    simonb 	    ("wapbl_register_deallocation: blk=%"PRId64" len=%d\n", blk, len));
   1774      1.38   hannken 	mutex_exit(&wl->wl_mtx);
   1775       1.2    simonb }
   1776       1.2    simonb 
   1777       1.2    simonb /****************************************************************/
   1778       1.2    simonb 
   1779       1.2    simonb static void
   1780       1.2    simonb wapbl_inodetrk_init(struct wapbl *wl, u_int size)
   1781       1.2    simonb {
   1782       1.2    simonb 
   1783       1.2    simonb 	wl->wl_inohash = hashinit(size, HASH_LIST, true, &wl->wl_inohashmask);
   1784       1.2    simonb 	if (atomic_inc_uint_nv(&wapbl_ino_pool_refcount) == 1) {
   1785       1.2    simonb 		pool_init(&wapbl_ino_pool, sizeof(struct wapbl_ino), 0, 0, 0,
   1786       1.2    simonb 		    "wapblinopl", &pool_allocator_nointr, IPL_NONE);
   1787       1.2    simonb 	}
   1788       1.2    simonb }
   1789       1.2    simonb 
   1790       1.2    simonb static void
   1791       1.2    simonb wapbl_inodetrk_free(struct wapbl *wl)
   1792       1.2    simonb {
   1793       1.2    simonb 
   1794       1.2    simonb 	/* XXX this KASSERT needs locking/mutex analysis */
   1795       1.2    simonb 	KASSERT(wl->wl_inohashcnt == 0);
   1796       1.2    simonb 	hashdone(wl->wl_inohash, HASH_LIST, wl->wl_inohashmask);
   1797       1.2    simonb 	if (atomic_dec_uint_nv(&wapbl_ino_pool_refcount) == 0) {
   1798       1.2    simonb 		pool_destroy(&wapbl_ino_pool);
   1799       1.2    simonb 	}
   1800       1.2    simonb }
   1801       1.2    simonb 
   1802       1.2    simonb static struct wapbl_ino *
   1803       1.2    simonb wapbl_inodetrk_get(struct wapbl *wl, ino_t ino)
   1804       1.2    simonb {
   1805       1.2    simonb 	struct wapbl_ino_head *wih;
   1806       1.2    simonb 	struct wapbl_ino *wi;
   1807       1.2    simonb 
   1808       1.2    simonb 	KASSERT(mutex_owned(&wl->wl_mtx));
   1809       1.2    simonb 
   1810       1.2    simonb 	wih = &wl->wl_inohash[ino & wl->wl_inohashmask];
   1811       1.2    simonb 	LIST_FOREACH(wi, wih, wi_hash) {
   1812       1.2    simonb 		if (ino == wi->wi_ino)
   1813       1.2    simonb 			return wi;
   1814       1.2    simonb 	}
   1815       1.2    simonb 	return 0;
   1816       1.2    simonb }
   1817       1.2    simonb 
   1818       1.2    simonb void
   1819       1.2    simonb wapbl_register_inode(struct wapbl *wl, ino_t ino, mode_t mode)
   1820       1.2    simonb {
   1821       1.2    simonb 	struct wapbl_ino_head *wih;
   1822       1.2    simonb 	struct wapbl_ino *wi;
   1823       1.2    simonb 
   1824       1.2    simonb 	wi = pool_get(&wapbl_ino_pool, PR_WAITOK);
   1825       1.2    simonb 
   1826       1.2    simonb 	mutex_enter(&wl->wl_mtx);
   1827       1.2    simonb 	if (wapbl_inodetrk_get(wl, ino) == NULL) {
   1828       1.2    simonb 		wi->wi_ino = ino;
   1829       1.2    simonb 		wi->wi_mode = mode;
   1830       1.2    simonb 		wih = &wl->wl_inohash[ino & wl->wl_inohashmask];
   1831       1.2    simonb 		LIST_INSERT_HEAD(wih, wi, wi_hash);
   1832       1.2    simonb 		wl->wl_inohashcnt++;
   1833       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_INODE,
   1834       1.2    simonb 		    ("wapbl_register_inode: ino=%"PRId64"\n", ino));
   1835       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1836       1.2    simonb 	} else {
   1837       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1838       1.2    simonb 		pool_put(&wapbl_ino_pool, wi);
   1839       1.2    simonb 	}
   1840       1.2    simonb }
   1841       1.2    simonb 
   1842       1.2    simonb void
   1843       1.2    simonb wapbl_unregister_inode(struct wapbl *wl, ino_t ino, mode_t mode)
   1844       1.2    simonb {
   1845       1.2    simonb 	struct wapbl_ino *wi;
   1846       1.2    simonb 
   1847       1.2    simonb 	mutex_enter(&wl->wl_mtx);
   1848       1.2    simonb 	wi = wapbl_inodetrk_get(wl, ino);
   1849       1.2    simonb 	if (wi) {
   1850       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_INODE,
   1851       1.2    simonb 		    ("wapbl_unregister_inode: ino=%"PRId64"\n", ino));
   1852       1.2    simonb 		KASSERT(wl->wl_inohashcnt > 0);
   1853       1.2    simonb 		wl->wl_inohashcnt--;
   1854       1.2    simonb 		LIST_REMOVE(wi, wi_hash);
   1855       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1856       1.2    simonb 
   1857       1.2    simonb 		pool_put(&wapbl_ino_pool, wi);
   1858       1.2    simonb 	} else {
   1859       1.2    simonb 		mutex_exit(&wl->wl_mtx);
   1860       1.2    simonb 	}
   1861       1.2    simonb }
   1862       1.2    simonb 
   1863       1.2    simonb /****************************************************************/
   1864       1.2    simonb 
   1865      1.30  uebayasi static inline size_t
   1866       1.2    simonb wapbl_transaction_inodes_len(struct wapbl *wl)
   1867       1.2    simonb {
   1868       1.2    simonb 	int blocklen = 1<<wl->wl_log_dev_bshift;
   1869       1.2    simonb 	int iph;
   1870       1.2    simonb 
   1871       1.2    simonb 	/* Calculate number of inodes described in a inodelist header */
   1872       1.2    simonb 	iph = (blocklen - offsetof(struct wapbl_wc_inodelist, wc_inodes)) /
   1873       1.2    simonb 	    sizeof(((struct wapbl_wc_inodelist *)0)->wc_inodes[0]);
   1874       1.2    simonb 
   1875       1.2    simonb 	KASSERT(iph > 0);
   1876       1.2    simonb 
   1877      1.39  christos 	return MAX(1, howmany(wl->wl_inohashcnt, iph)) * blocklen;
   1878       1.2    simonb }
   1879       1.2    simonb 
   1880       1.2    simonb 
   1881       1.2    simonb /* Calculate amount of space a transaction will take on disk */
   1882       1.2    simonb static size_t
   1883       1.2    simonb wapbl_transaction_len(struct wapbl *wl)
   1884       1.2    simonb {
   1885       1.2    simonb 	int blocklen = 1<<wl->wl_log_dev_bshift;
   1886       1.2    simonb 	size_t len;
   1887       1.2    simonb 	int bph;
   1888       1.2    simonb 
   1889       1.2    simonb 	/* Calculate number of blocks described in a blocklist header */
   1890       1.2    simonb 	bph = (blocklen - offsetof(struct wapbl_wc_blocklist, wc_blocks)) /
   1891       1.2    simonb 	    sizeof(((struct wapbl_wc_blocklist *)0)->wc_blocks[0]);
   1892       1.2    simonb 
   1893       1.2    simonb 	KASSERT(bph > 0);
   1894       1.2    simonb 
   1895       1.2    simonb 	len = wl->wl_bcount;
   1896      1.39  christos 	len += howmany(wl->wl_bufcount, bph) * blocklen;
   1897      1.39  christos 	len += howmany(wl->wl_dealloccnt, bph) * blocklen;
   1898       1.2    simonb 	len += wapbl_transaction_inodes_len(wl);
   1899       1.2    simonb 
   1900       1.2    simonb 	return len;
   1901       1.2    simonb }
   1902       1.2    simonb 
   1903       1.2    simonb /*
   1904       1.2    simonb  * Perform commit operation
   1905       1.2    simonb  *
   1906       1.2    simonb  * Note that generation number incrementation needs to
   1907       1.2    simonb  * be protected against racing with other invocations
   1908       1.2    simonb  * of wapbl_commit.  This is ok since this routine
   1909       1.2    simonb  * is only invoked from wapbl_flush
   1910       1.2    simonb  */
   1911       1.2    simonb static int
   1912       1.2    simonb wapbl_write_commit(struct wapbl *wl, off_t head, off_t tail)
   1913       1.2    simonb {
   1914       1.2    simonb 	struct wapbl_wc_header *wc = wl->wl_wc_header;
   1915       1.2    simonb 	struct timespec ts;
   1916       1.2    simonb 	int error;
   1917       1.2    simonb 	int force = 1;
   1918      1.34   mlelstv 	daddr_t pbn;
   1919       1.2    simonb 
   1920      1.39  christos 	if (wapbl_flush_disk_cache) {
   1921      1.39  christos 		/* XXX Calc checksum here, instead we do this for now */
   1922      1.39  christos 		error = VOP_IOCTL(wl->wl_devvp, DIOCCACHESYNC, &force,
   1923      1.39  christos 		    FWRITE, FSCRED);
   1924      1.39  christos 		if (error) {
   1925      1.39  christos 			WAPBL_PRINTF(WAPBL_PRINT_ERROR,
   1926      1.39  christos 			    ("wapbl_write_commit: DIOCCACHESYNC on dev 0x%x "
   1927      1.39  christos 			    "returned %d\n", wl->wl_devvp->v_rdev, error));
   1928      1.39  christos 		}
   1929       1.2    simonb 	}
   1930       1.2    simonb 
   1931       1.2    simonb 	wc->wc_head = head;
   1932       1.2    simonb 	wc->wc_tail = tail;
   1933       1.2    simonb 	wc->wc_checksum = 0;
   1934       1.2    simonb 	wc->wc_version = 1;
   1935       1.2    simonb 	getnanotime(&ts);
   1936      1.17      yamt 	wc->wc_time = ts.tv_sec;
   1937       1.2    simonb 	wc->wc_timensec = ts.tv_nsec;
   1938       1.2    simonb 
   1939       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_WRITE,
   1940       1.2    simonb 	    ("wapbl_write_commit: head = %"PRIdMAX "tail = %"PRIdMAX"\n",
   1941       1.2    simonb 	    (intmax_t)head, (intmax_t)tail));
   1942       1.2    simonb 
   1943       1.2    simonb 	/*
   1944       1.2    simonb 	 * XXX if generation will rollover, then first zero
   1945       1.2    simonb 	 * over second commit header before trying to write both headers.
   1946       1.2    simonb 	 */
   1947       1.2    simonb 
   1948      1.34   mlelstv 	pbn = wl->wl_logpbn + (wc->wc_generation % 2);
   1949      1.34   mlelstv #ifdef _KERNEL
   1950      1.34   mlelstv 	pbn = btodb(pbn << wc->wc_log_dev_bshift);
   1951      1.34   mlelstv #endif
   1952      1.34   mlelstv 	error = wapbl_write(wc, wc->wc_len, wl->wl_devvp, pbn);
   1953       1.2    simonb 	if (error)
   1954       1.2    simonb 		return error;
   1955       1.2    simonb 
   1956      1.39  christos 	if (wapbl_flush_disk_cache) {
   1957      1.39  christos 		error = VOP_IOCTL(wl->wl_devvp, DIOCCACHESYNC, &force,
   1958      1.39  christos 		    FWRITE, FSCRED);
   1959      1.39  christos 		if (error) {
   1960      1.39  christos 			WAPBL_PRINTF(WAPBL_PRINT_ERROR,
   1961      1.39  christos 			    ("wapbl_write_commit: DIOCCACHESYNC on dev 0x%x "
   1962      1.39  christos 			    "returned %d\n", wl->wl_devvp->v_rdev, error));
   1963      1.39  christos 		}
   1964       1.2    simonb 	}
   1965       1.2    simonb 
   1966       1.2    simonb 	/*
   1967       1.2    simonb 	 * If the generation number was zero, write it out a second time.
   1968       1.2    simonb 	 * This handles initialization and generation number rollover
   1969       1.2    simonb 	 */
   1970       1.2    simonb 	if (wc->wc_generation++ == 0) {
   1971       1.2    simonb 		error = wapbl_write_commit(wl, head, tail);
   1972       1.2    simonb 		/*
   1973       1.2    simonb 		 * This panic should be able to be removed if we do the
   1974       1.2    simonb 		 * zero'ing mentioned above, and we are certain to roll
   1975       1.2    simonb 		 * back generation number on failure.
   1976       1.2    simonb 		 */
   1977       1.2    simonb 		if (error)
   1978       1.2    simonb 			panic("wapbl_write_commit: error writing duplicate "
   1979       1.2    simonb 			      "log header: %d\n", error);
   1980       1.2    simonb 	}
   1981       1.2    simonb 	return 0;
   1982       1.2    simonb }
   1983       1.2    simonb 
   1984       1.2    simonb /* Returns new offset value */
   1985       1.2    simonb static int
   1986       1.2    simonb wapbl_write_blocks(struct wapbl *wl, off_t *offp)
   1987       1.2    simonb {
   1988       1.2    simonb 	struct wapbl_wc_blocklist *wc =
   1989       1.2    simonb 	    (struct wapbl_wc_blocklist *)wl->wl_wc_scratch;
   1990       1.2    simonb 	int blocklen = 1<<wl->wl_log_dev_bshift;
   1991       1.2    simonb 	int bph;
   1992       1.2    simonb 	struct buf *bp;
   1993       1.2    simonb 	off_t off = *offp;
   1994       1.2    simonb 	int error;
   1995       1.7     joerg 	size_t padding;
   1996       1.2    simonb 
   1997       1.2    simonb 	KASSERT(rw_write_held(&wl->wl_rwlock));
   1998       1.2    simonb 
   1999       1.2    simonb 	bph = (blocklen - offsetof(struct wapbl_wc_blocklist, wc_blocks)) /
   2000       1.2    simonb 	    sizeof(((struct wapbl_wc_blocklist *)0)->wc_blocks[0]);
   2001       1.2    simonb 
   2002       1.2    simonb 	bp = LIST_FIRST(&wl->wl_bufs);
   2003       1.2    simonb 
   2004       1.2    simonb 	while (bp) {
   2005       1.2    simonb 		int cnt;
   2006       1.2    simonb 		struct buf *obp = bp;
   2007       1.2    simonb 
   2008       1.2    simonb 		KASSERT(bp->b_flags & B_LOCKED);
   2009       1.2    simonb 
   2010       1.2    simonb 		wc->wc_type = WAPBL_WC_BLOCKS;
   2011       1.2    simonb 		wc->wc_len = blocklen;
   2012       1.2    simonb 		wc->wc_blkcount = 0;
   2013       1.2    simonb 		while (bp && (wc->wc_blkcount < bph)) {
   2014       1.2    simonb 			/*
   2015       1.2    simonb 			 * Make sure all the physical block numbers are up to
   2016       1.2    simonb 			 * date.  If this is not always true on a given
   2017       1.2    simonb 			 * filesystem, then VOP_BMAP must be called.  We
   2018       1.2    simonb 			 * could call VOP_BMAP here, or else in the filesystem
   2019       1.2    simonb 			 * specific flush callback, although neither of those
   2020       1.2    simonb 			 * solutions allow us to take the vnode lock.  If a
   2021       1.2    simonb 			 * filesystem requires that we must take the vnode lock
   2022       1.2    simonb 			 * to call VOP_BMAP, then we can probably do it in
   2023       1.2    simonb 			 * bwrite when the vnode lock should already be held
   2024       1.2    simonb 			 * by the invoking code.
   2025       1.2    simonb 			 */
   2026       1.2    simonb 			KASSERT((bp->b_vp->v_type == VBLK) ||
   2027       1.2    simonb 				 (bp->b_blkno != bp->b_lblkno));
   2028       1.2    simonb 			KASSERT(bp->b_blkno > 0);
   2029       1.2    simonb 
   2030       1.2    simonb 			wc->wc_blocks[wc->wc_blkcount].wc_daddr = bp->b_blkno;
   2031       1.2    simonb 			wc->wc_blocks[wc->wc_blkcount].wc_dlen = bp->b_bcount;
   2032       1.2    simonb 			wc->wc_len += bp->b_bcount;
   2033       1.2    simonb 			wc->wc_blkcount++;
   2034       1.2    simonb 			bp = LIST_NEXT(bp, b_wapbllist);
   2035       1.2    simonb 		}
   2036       1.7     joerg 		if (wc->wc_len % blocklen != 0) {
   2037       1.7     joerg 			padding = blocklen - wc->wc_len % blocklen;
   2038       1.7     joerg 			wc->wc_len += padding;
   2039       1.7     joerg 		} else {
   2040       1.7     joerg 			padding = 0;
   2041       1.7     joerg 		}
   2042       1.7     joerg 
   2043       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_WRITE,
   2044       1.7     joerg 		    ("wapbl_write_blocks: len = %u (padding %zu) off = %"PRIdMAX"\n",
   2045       1.7     joerg 		    wc->wc_len, padding, (intmax_t)off));
   2046       1.2    simonb 
   2047       1.2    simonb 		error = wapbl_circ_write(wl, wc, blocklen, &off);
   2048       1.2    simonb 		if (error)
   2049       1.2    simonb 			return error;
   2050       1.2    simonb 		bp = obp;
   2051       1.2    simonb 		cnt = 0;
   2052       1.2    simonb 		while (bp && (cnt++ < bph)) {
   2053       1.2    simonb 			error = wapbl_circ_write(wl, bp->b_data,
   2054       1.2    simonb 			    bp->b_bcount, &off);
   2055       1.2    simonb 			if (error)
   2056       1.2    simonb 				return error;
   2057       1.2    simonb 			bp = LIST_NEXT(bp, b_wapbllist);
   2058       1.2    simonb 		}
   2059       1.7     joerg 		if (padding) {
   2060       1.7     joerg 			void *zero;
   2061       1.7     joerg 
   2062       1.7     joerg 			zero = wapbl_malloc(padding);
   2063       1.7     joerg 			memset(zero, 0, padding);
   2064       1.7     joerg 			error = wapbl_circ_write(wl, zero, padding, &off);
   2065      1.18      yamt 			wapbl_free(zero, padding);
   2066       1.7     joerg 			if (error)
   2067       1.7     joerg 				return error;
   2068       1.7     joerg 		}
   2069       1.2    simonb 	}
   2070       1.2    simonb 	*offp = off;
   2071       1.2    simonb 	return 0;
   2072       1.2    simonb }
   2073       1.2    simonb 
   2074       1.2    simonb static int
   2075       1.2    simonb wapbl_write_revocations(struct wapbl *wl, off_t *offp)
   2076       1.2    simonb {
   2077       1.2    simonb 	struct wapbl_wc_blocklist *wc =
   2078       1.2    simonb 	    (struct wapbl_wc_blocklist *)wl->wl_wc_scratch;
   2079       1.2    simonb 	int i;
   2080       1.2    simonb 	int blocklen = 1<<wl->wl_log_dev_bshift;
   2081       1.2    simonb 	int bph;
   2082       1.2    simonb 	off_t off = *offp;
   2083       1.2    simonb 	int error;
   2084       1.2    simonb 
   2085       1.2    simonb 	if (wl->wl_dealloccnt == 0)
   2086       1.2    simonb 		return 0;
   2087       1.2    simonb 
   2088       1.2    simonb 	bph = (blocklen - offsetof(struct wapbl_wc_blocklist, wc_blocks)) /
   2089       1.2    simonb 	    sizeof(((struct wapbl_wc_blocklist *)0)->wc_blocks[0]);
   2090       1.2    simonb 
   2091       1.2    simonb 	i = 0;
   2092       1.2    simonb 	while (i < wl->wl_dealloccnt) {
   2093       1.2    simonb 		wc->wc_type = WAPBL_WC_REVOCATIONS;
   2094       1.2    simonb 		wc->wc_len = blocklen;
   2095       1.2    simonb 		wc->wc_blkcount = 0;
   2096       1.2    simonb 		while ((i < wl->wl_dealloccnt) && (wc->wc_blkcount < bph)) {
   2097       1.2    simonb 			wc->wc_blocks[wc->wc_blkcount].wc_daddr =
   2098       1.2    simonb 			    wl->wl_deallocblks[i];
   2099       1.2    simonb 			wc->wc_blocks[wc->wc_blkcount].wc_dlen =
   2100       1.2    simonb 			    wl->wl_dealloclens[i];
   2101       1.2    simonb 			wc->wc_blkcount++;
   2102       1.2    simonb 			i++;
   2103       1.2    simonb 		}
   2104       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_WRITE,
   2105       1.2    simonb 		    ("wapbl_write_revocations: len = %u off = %"PRIdMAX"\n",
   2106       1.2    simonb 		    wc->wc_len, (intmax_t)off));
   2107       1.2    simonb 		error = wapbl_circ_write(wl, wc, blocklen, &off);
   2108       1.2    simonb 		if (error)
   2109       1.2    simonb 			return error;
   2110       1.2    simonb 	}
   2111       1.2    simonb 	*offp = off;
   2112       1.2    simonb 	return 0;
   2113       1.2    simonb }
   2114       1.2    simonb 
   2115       1.2    simonb static int
   2116       1.2    simonb wapbl_write_inodes(struct wapbl *wl, off_t *offp)
   2117       1.2    simonb {
   2118       1.2    simonb 	struct wapbl_wc_inodelist *wc =
   2119       1.2    simonb 	    (struct wapbl_wc_inodelist *)wl->wl_wc_scratch;
   2120       1.2    simonb 	int i;
   2121      1.14     joerg 	int blocklen = 1 << wl->wl_log_dev_bshift;
   2122       1.2    simonb 	off_t off = *offp;
   2123       1.2    simonb 	int error;
   2124       1.2    simonb 
   2125       1.2    simonb 	struct wapbl_ino_head *wih;
   2126       1.2    simonb 	struct wapbl_ino *wi;
   2127       1.2    simonb 	int iph;
   2128       1.2    simonb 
   2129       1.2    simonb 	iph = (blocklen - offsetof(struct wapbl_wc_inodelist, wc_inodes)) /
   2130       1.2    simonb 	    sizeof(((struct wapbl_wc_inodelist *)0)->wc_inodes[0]);
   2131       1.2    simonb 
   2132       1.2    simonb 	i = 0;
   2133       1.2    simonb 	wih = &wl->wl_inohash[0];
   2134       1.2    simonb 	wi = 0;
   2135       1.2    simonb 	do {
   2136       1.2    simonb 		wc->wc_type = WAPBL_WC_INODES;
   2137       1.2    simonb 		wc->wc_len = blocklen;
   2138       1.2    simonb 		wc->wc_inocnt = 0;
   2139       1.2    simonb 		wc->wc_clear = (i == 0);
   2140       1.2    simonb 		while ((i < wl->wl_inohashcnt) && (wc->wc_inocnt < iph)) {
   2141       1.2    simonb 			while (!wi) {
   2142       1.2    simonb 				KASSERT((wih - &wl->wl_inohash[0])
   2143       1.2    simonb 				    <= wl->wl_inohashmask);
   2144       1.2    simonb 				wi = LIST_FIRST(wih++);
   2145       1.2    simonb 			}
   2146       1.2    simonb 			wc->wc_inodes[wc->wc_inocnt].wc_inumber = wi->wi_ino;
   2147       1.2    simonb 			wc->wc_inodes[wc->wc_inocnt].wc_imode = wi->wi_mode;
   2148       1.2    simonb 			wc->wc_inocnt++;
   2149       1.2    simonb 			i++;
   2150       1.2    simonb 			wi = LIST_NEXT(wi, wi_hash);
   2151       1.2    simonb 		}
   2152       1.2    simonb 		WAPBL_PRINTF(WAPBL_PRINT_WRITE,
   2153       1.2    simonb 		    ("wapbl_write_inodes: len = %u off = %"PRIdMAX"\n",
   2154       1.2    simonb 		    wc->wc_len, (intmax_t)off));
   2155       1.2    simonb 		error = wapbl_circ_write(wl, wc, blocklen, &off);
   2156       1.2    simonb 		if (error)
   2157       1.2    simonb 			return error;
   2158       1.2    simonb 	} while (i < wl->wl_inohashcnt);
   2159       1.2    simonb 
   2160       1.2    simonb 	*offp = off;
   2161       1.2    simonb 	return 0;
   2162       1.2    simonb }
   2163       1.2    simonb 
   2164       1.2    simonb #endif /* _KERNEL */
   2165       1.2    simonb 
   2166       1.2    simonb /****************************************************************/
   2167       1.2    simonb 
   2168       1.2    simonb struct wapbl_blk {
   2169       1.2    simonb 	LIST_ENTRY(wapbl_blk) wb_hash;
   2170       1.2    simonb 	daddr_t wb_blk;
   2171       1.2    simonb 	off_t wb_off; /* Offset of this block in the log */
   2172       1.2    simonb };
   2173       1.2    simonb #define	WAPBL_BLKPOOL_MIN 83
   2174       1.2    simonb 
   2175       1.2    simonb static void
   2176       1.2    simonb wapbl_blkhash_init(struct wapbl_replay *wr, u_int size)
   2177       1.2    simonb {
   2178       1.2    simonb 	if (size < WAPBL_BLKPOOL_MIN)
   2179       1.2    simonb 		size = WAPBL_BLKPOOL_MIN;
   2180       1.2    simonb 	KASSERT(wr->wr_blkhash == 0);
   2181       1.2    simonb #ifdef _KERNEL
   2182       1.2    simonb 	wr->wr_blkhash = hashinit(size, HASH_LIST, true, &wr->wr_blkhashmask);
   2183       1.2    simonb #else /* ! _KERNEL */
   2184       1.2    simonb 	/* Manually implement hashinit */
   2185       1.2    simonb 	{
   2186      1.25     lukem 		unsigned long i, hashsize;
   2187       1.2    simonb 		for (hashsize = 1; hashsize < size; hashsize <<= 1)
   2188       1.2    simonb 			continue;
   2189       1.2    simonb 		wr->wr_blkhash = wapbl_malloc(hashsize * sizeof(*wr->wr_blkhash));
   2190      1.37  drochner 		for (i = 0; i < hashsize; i++)
   2191       1.2    simonb 			LIST_INIT(&wr->wr_blkhash[i]);
   2192       1.2    simonb 		wr->wr_blkhashmask = hashsize - 1;
   2193       1.2    simonb 	}
   2194       1.2    simonb #endif /* ! _KERNEL */
   2195       1.2    simonb }
   2196       1.2    simonb 
   2197       1.2    simonb static void
   2198       1.2    simonb wapbl_blkhash_free(struct wapbl_replay *wr)
   2199       1.2    simonb {
   2200       1.2    simonb 	KASSERT(wr->wr_blkhashcnt == 0);
   2201       1.2    simonb #ifdef _KERNEL
   2202       1.2    simonb 	hashdone(wr->wr_blkhash, HASH_LIST, wr->wr_blkhashmask);
   2203       1.2    simonb #else /* ! _KERNEL */
   2204      1.18      yamt 	wapbl_free(wr->wr_blkhash,
   2205      1.18      yamt 	    (wr->wr_blkhashmask + 1) * sizeof(*wr->wr_blkhash));
   2206       1.2    simonb #endif /* ! _KERNEL */
   2207       1.2    simonb }
   2208       1.2    simonb 
   2209       1.2    simonb static struct wapbl_blk *
   2210       1.2    simonb wapbl_blkhash_get(struct wapbl_replay *wr, daddr_t blk)
   2211       1.2    simonb {
   2212       1.2    simonb 	struct wapbl_blk_head *wbh;
   2213       1.2    simonb 	struct wapbl_blk *wb;
   2214       1.2    simonb 	wbh = &wr->wr_blkhash[blk & wr->wr_blkhashmask];
   2215       1.2    simonb 	LIST_FOREACH(wb, wbh, wb_hash) {
   2216       1.2    simonb 		if (blk == wb->wb_blk)
   2217       1.2    simonb 			return wb;
   2218       1.2    simonb 	}
   2219       1.2    simonb 	return 0;
   2220       1.2    simonb }
   2221       1.2    simonb 
   2222       1.2    simonb static void
   2223       1.2    simonb wapbl_blkhash_ins(struct wapbl_replay *wr, daddr_t blk, off_t off)
   2224       1.2    simonb {
   2225       1.2    simonb 	struct wapbl_blk_head *wbh;
   2226       1.2    simonb 	struct wapbl_blk *wb;
   2227       1.2    simonb 	wb = wapbl_blkhash_get(wr, blk);
   2228       1.2    simonb 	if (wb) {
   2229       1.2    simonb 		KASSERT(wb->wb_blk == blk);
   2230       1.2    simonb 		wb->wb_off = off;
   2231       1.2    simonb 	} else {
   2232       1.2    simonb 		wb = wapbl_malloc(sizeof(*wb));
   2233       1.2    simonb 		wb->wb_blk = blk;
   2234       1.2    simonb 		wb->wb_off = off;
   2235       1.2    simonb 		wbh = &wr->wr_blkhash[blk & wr->wr_blkhashmask];
   2236       1.2    simonb 		LIST_INSERT_HEAD(wbh, wb, wb_hash);
   2237       1.2    simonb 		wr->wr_blkhashcnt++;
   2238       1.2    simonb 	}
   2239       1.2    simonb }
   2240       1.2    simonb 
   2241       1.2    simonb static void
   2242       1.2    simonb wapbl_blkhash_rem(struct wapbl_replay *wr, daddr_t blk)
   2243       1.2    simonb {
   2244       1.2    simonb 	struct wapbl_blk *wb = wapbl_blkhash_get(wr, blk);
   2245       1.2    simonb 	if (wb) {
   2246       1.2    simonb 		KASSERT(wr->wr_blkhashcnt > 0);
   2247       1.2    simonb 		wr->wr_blkhashcnt--;
   2248       1.2    simonb 		LIST_REMOVE(wb, wb_hash);
   2249      1.18      yamt 		wapbl_free(wb, sizeof(*wb));
   2250       1.2    simonb 	}
   2251       1.2    simonb }
   2252       1.2    simonb 
   2253       1.2    simonb static void
   2254       1.2    simonb wapbl_blkhash_clear(struct wapbl_replay *wr)
   2255       1.2    simonb {
   2256      1.25     lukem 	unsigned long i;
   2257       1.2    simonb 	for (i = 0; i <= wr->wr_blkhashmask; i++) {
   2258       1.2    simonb 		struct wapbl_blk *wb;
   2259       1.2    simonb 
   2260       1.2    simonb 		while ((wb = LIST_FIRST(&wr->wr_blkhash[i]))) {
   2261       1.2    simonb 			KASSERT(wr->wr_blkhashcnt > 0);
   2262       1.2    simonb 			wr->wr_blkhashcnt--;
   2263       1.2    simonb 			LIST_REMOVE(wb, wb_hash);
   2264      1.18      yamt 			wapbl_free(wb, sizeof(*wb));
   2265       1.2    simonb 		}
   2266       1.2    simonb 	}
   2267       1.2    simonb 	KASSERT(wr->wr_blkhashcnt == 0);
   2268       1.2    simonb }
   2269       1.2    simonb 
   2270       1.2    simonb /****************************************************************/
   2271       1.2    simonb 
   2272       1.2    simonb static int
   2273       1.2    simonb wapbl_circ_read(struct wapbl_replay *wr, void *data, size_t len, off_t *offp)
   2274       1.2    simonb {
   2275       1.2    simonb 	size_t slen;
   2276       1.2    simonb 	off_t off = *offp;
   2277       1.2    simonb 	int error;
   2278      1.34   mlelstv 	daddr_t pbn;
   2279       1.2    simonb 
   2280      1.14     joerg 	KASSERT(((len >> wr->wr_log_dev_bshift) <<
   2281      1.14     joerg 	    wr->wr_log_dev_bshift) == len);
   2282      1.34   mlelstv 
   2283      1.14     joerg 	if (off < wr->wr_circ_off)
   2284      1.14     joerg 		off = wr->wr_circ_off;
   2285      1.14     joerg 	slen = wr->wr_circ_off + wr->wr_circ_size - off;
   2286       1.2    simonb 	if (slen < len) {
   2287      1.34   mlelstv 		pbn = wr->wr_logpbn + (off >> wr->wr_log_dev_bshift);
   2288      1.34   mlelstv #ifdef _KERNEL
   2289      1.34   mlelstv 		pbn = btodb(pbn << wr->wr_log_dev_bshift);
   2290      1.34   mlelstv #endif
   2291      1.34   mlelstv 		error = wapbl_read(data, slen, wr->wr_devvp, pbn);
   2292       1.2    simonb 		if (error)
   2293       1.2    simonb 			return error;
   2294       1.2    simonb 		data = (uint8_t *)data + slen;
   2295       1.2    simonb 		len -= slen;
   2296      1.14     joerg 		off = wr->wr_circ_off;
   2297       1.2    simonb 	}
   2298      1.34   mlelstv 	pbn = wr->wr_logpbn + (off >> wr->wr_log_dev_bshift);
   2299      1.34   mlelstv #ifdef _KERNEL
   2300      1.34   mlelstv 	pbn = btodb(pbn << wr->wr_log_dev_bshift);
   2301      1.34   mlelstv #endif
   2302      1.34   mlelstv 	error = wapbl_read(data, len, wr->wr_devvp, pbn);
   2303       1.2    simonb 	if (error)
   2304       1.2    simonb 		return error;
   2305       1.2    simonb 	off += len;
   2306      1.14     joerg 	if (off >= wr->wr_circ_off + wr->wr_circ_size)
   2307      1.14     joerg 		off = wr->wr_circ_off;
   2308       1.2    simonb 	*offp = off;
   2309       1.2    simonb 	return 0;
   2310       1.2    simonb }
   2311       1.2    simonb 
   2312       1.2    simonb static void
   2313       1.2    simonb wapbl_circ_advance(struct wapbl_replay *wr, size_t len, off_t *offp)
   2314       1.2    simonb {
   2315       1.2    simonb 	size_t slen;
   2316       1.2    simonb 	off_t off = *offp;
   2317       1.2    simonb 
   2318      1.14     joerg 	KASSERT(((len >> wr->wr_log_dev_bshift) <<
   2319      1.14     joerg 	    wr->wr_log_dev_bshift) == len);
   2320       1.2    simonb 
   2321      1.14     joerg 	if (off < wr->wr_circ_off)
   2322      1.14     joerg 		off = wr->wr_circ_off;
   2323      1.14     joerg 	slen = wr->wr_circ_off + wr->wr_circ_size - off;
   2324       1.2    simonb 	if (slen < len) {
   2325       1.2    simonb 		len -= slen;
   2326      1.14     joerg 		off = wr->wr_circ_off;
   2327       1.2    simonb 	}
   2328       1.2    simonb 	off += len;
   2329      1.14     joerg 	if (off >= wr->wr_circ_off + wr->wr_circ_size)
   2330      1.14     joerg 		off = wr->wr_circ_off;
   2331       1.2    simonb 	*offp = off;
   2332       1.2    simonb }
   2333       1.2    simonb 
   2334       1.2    simonb /****************************************************************/
   2335       1.2    simonb 
   2336       1.2    simonb int
   2337       1.2    simonb wapbl_replay_start(struct wapbl_replay **wrp, struct vnode *vp,
   2338       1.2    simonb 	daddr_t off, size_t count, size_t blksize)
   2339       1.2    simonb {
   2340       1.2    simonb 	struct wapbl_replay *wr;
   2341       1.2    simonb 	int error;
   2342       1.2    simonb 	struct vnode *devvp;
   2343       1.2    simonb 	daddr_t logpbn;
   2344       1.2    simonb 	uint8_t *scratch;
   2345       1.2    simonb 	struct wapbl_wc_header *wch;
   2346       1.2    simonb 	struct wapbl_wc_header *wch2;
   2347       1.2    simonb 	/* Use this until we read the actual log header */
   2348      1.31   mlelstv 	int log_dev_bshift = ilog2(blksize);
   2349       1.2    simonb 	size_t used;
   2350      1.34   mlelstv 	daddr_t pbn;
   2351       1.2    simonb 
   2352       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_REPLAY,
   2353       1.2    simonb 	    ("wapbl_replay_start: vp=%p off=%"PRId64 " count=%zu blksize=%zu\n",
   2354       1.2    simonb 	    vp, off, count, blksize));
   2355       1.2    simonb 
   2356       1.2    simonb 	if (off < 0)
   2357       1.2    simonb 		return EINVAL;
   2358       1.2    simonb 
   2359       1.2    simonb 	if (blksize < DEV_BSIZE)
   2360       1.2    simonb 		return EINVAL;
   2361       1.2    simonb 	if (blksize % DEV_BSIZE)
   2362       1.2    simonb 		return EINVAL;
   2363       1.2    simonb 
   2364       1.2    simonb #ifdef _KERNEL
   2365       1.2    simonb #if 0
   2366       1.2    simonb 	/* XXX vp->v_size isn't reliably set for VBLK devices,
   2367       1.2    simonb 	 * especially root.  However, we might still want to verify
   2368       1.2    simonb 	 * that the full load is readable */
   2369       1.2    simonb 	if ((off + count) * blksize > vp->v_size)
   2370       1.2    simonb 		return EINVAL;
   2371       1.2    simonb #endif
   2372       1.2    simonb 	if ((error = VOP_BMAP(vp, off, &devvp, &logpbn, 0)) != 0) {
   2373       1.2    simonb 		return error;
   2374       1.2    simonb 	}
   2375       1.2    simonb #else /* ! _KERNEL */
   2376       1.2    simonb 	devvp = vp;
   2377       1.2    simonb 	logpbn = off;
   2378       1.2    simonb #endif /* ! _KERNEL */
   2379       1.2    simonb 
   2380       1.2    simonb 	scratch = wapbl_malloc(MAXBSIZE);
   2381       1.2    simonb 
   2382      1.34   mlelstv 	pbn = logpbn;
   2383      1.34   mlelstv #ifdef _KERNEL
   2384      1.34   mlelstv 	pbn = btodb(pbn << log_dev_bshift);
   2385      1.34   mlelstv #endif
   2386      1.34   mlelstv 	error = wapbl_read(scratch, 2<<log_dev_bshift, devvp, pbn);
   2387       1.2    simonb 	if (error)
   2388       1.2    simonb 		goto errout;
   2389       1.2    simonb 
   2390       1.2    simonb 	wch = (struct wapbl_wc_header *)scratch;
   2391       1.2    simonb 	wch2 =
   2392       1.2    simonb 	    (struct wapbl_wc_header *)(scratch + (1<<log_dev_bshift));
   2393       1.2    simonb 	/* XXX verify checksums and magic numbers */
   2394       1.2    simonb 	if (wch->wc_type != WAPBL_WC_HEADER) {
   2395       1.2    simonb 		printf("Unrecognized wapbl magic: 0x%08x\n", wch->wc_type);
   2396       1.2    simonb 		error = EFTYPE;
   2397       1.2    simonb 		goto errout;
   2398       1.2    simonb 	}
   2399       1.2    simonb 
   2400       1.2    simonb 	if (wch2->wc_generation > wch->wc_generation)
   2401       1.2    simonb 		wch = wch2;
   2402       1.2    simonb 
   2403       1.2    simonb 	wr = wapbl_calloc(1, sizeof(*wr));
   2404       1.2    simonb 
   2405       1.2    simonb 	wr->wr_logvp = vp;
   2406       1.2    simonb 	wr->wr_devvp = devvp;
   2407       1.2    simonb 	wr->wr_logpbn = logpbn;
   2408       1.2    simonb 
   2409       1.2    simonb 	wr->wr_scratch = scratch;
   2410       1.2    simonb 
   2411      1.14     joerg 	wr->wr_log_dev_bshift = wch->wc_log_dev_bshift;
   2412      1.14     joerg 	wr->wr_fs_dev_bshift = wch->wc_fs_dev_bshift;
   2413      1.14     joerg 	wr->wr_circ_off = wch->wc_circ_off;
   2414      1.14     joerg 	wr->wr_circ_size = wch->wc_circ_size;
   2415      1.14     joerg 	wr->wr_generation = wch->wc_generation;
   2416       1.2    simonb 
   2417       1.2    simonb 	used = wapbl_space_used(wch->wc_circ_size, wch->wc_head, wch->wc_tail);
   2418       1.2    simonb 
   2419       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_REPLAY,
   2420       1.2    simonb 	    ("wapbl_replay: head=%"PRId64" tail=%"PRId64" off=%"PRId64
   2421       1.2    simonb 	    " len=%"PRId64" used=%zu\n",
   2422       1.2    simonb 	    wch->wc_head, wch->wc_tail, wch->wc_circ_off,
   2423       1.2    simonb 	    wch->wc_circ_size, used));
   2424       1.2    simonb 
   2425       1.2    simonb 	wapbl_blkhash_init(wr, (used >> wch->wc_fs_dev_bshift));
   2426      1.11     joerg 
   2427      1.14     joerg 	error = wapbl_replay_process(wr, wch->wc_head, wch->wc_tail);
   2428       1.2    simonb 	if (error) {
   2429       1.2    simonb 		wapbl_replay_stop(wr);
   2430       1.2    simonb 		wapbl_replay_free(wr);
   2431       1.2    simonb 		return error;
   2432       1.2    simonb 	}
   2433       1.2    simonb 
   2434       1.2    simonb 	*wrp = wr;
   2435       1.2    simonb 	return 0;
   2436       1.2    simonb 
   2437       1.2    simonb  errout:
   2438      1.18      yamt 	wapbl_free(scratch, MAXBSIZE);
   2439       1.2    simonb 	return error;
   2440       1.2    simonb }
   2441       1.2    simonb 
   2442       1.2    simonb void
   2443       1.2    simonb wapbl_replay_stop(struct wapbl_replay *wr)
   2444       1.2    simonb {
   2445       1.2    simonb 
   2446       1.4     joerg 	if (!wapbl_replay_isopen(wr))
   2447       1.4     joerg 		return;
   2448       1.4     joerg 
   2449       1.2    simonb 	WAPBL_PRINTF(WAPBL_PRINT_REPLAY, ("wapbl_replay_stop called\n"));
   2450       1.2    simonb 
   2451      1.18      yamt 	wapbl_free(wr->wr_scratch, MAXBSIZE);
   2452      1.18      yamt 	wr->wr_scratch = NULL;
   2453       1.2    simonb 
   2454      1.18      yamt 	wr->wr_logvp = NULL;
   2455       1.2    simonb 
   2456       1.2    simonb 	wapbl_blkhash_clear(wr);
   2457       1.2    simonb 	wapbl_blkhash_free(wr);
   2458       1.2    simonb }
   2459       1.2    simonb 
   2460       1.2    simonb void
   2461       1.2    simonb wapbl_replay_free(struct wapbl_replay *wr)
   2462       1.2    simonb {
   2463       1.2    simonb 
   2464       1.2    simonb 	KDASSERT(!wapbl_replay_isopen(wr));
   2465       1.2    simonb 
   2466       1.2    simonb 	if (wr->wr_inodes)
   2467      1.18      yamt 		wapbl_free(wr->wr_inodes,
   2468      1.18      yamt 		    wr->wr_inodescnt * sizeof(wr->wr_inodes[0]));
   2469      1.18      yamt 	wapbl_free(wr, sizeof(*wr));
   2470       1.2    simonb }
   2471       1.2    simonb 
   2472       1.4     joerg #ifdef _KERNEL
   2473       1.2    simonb int
   2474       1.2    simonb wapbl_replay_isopen1(struct wapbl_replay *wr)
   2475       1.2    simonb {
   2476       1.2    simonb 
   2477       1.2    simonb 	return wapbl_replay_isopen(wr);
   2478       1.2    simonb }
   2479       1.4     joerg #endif
   2480       1.2    simonb 
   2481      1.10     joerg static void
   2482      1.10     joerg wapbl_replay_process_blocks(struct wapbl_replay *wr, off_t *offp)
   2483      1.10     joerg {
   2484      1.10     joerg 	struct wapbl_wc_blocklist *wc =
   2485      1.10     joerg 	    (struct wapbl_wc_blocklist *)wr->wr_scratch;
   2486      1.14     joerg 	int fsblklen = 1 << wr->wr_fs_dev_bshift;
   2487      1.10     joerg 	int i, j, n;
   2488      1.10     joerg 
   2489      1.10     joerg 	for (i = 0; i < wc->wc_blkcount; i++) {
   2490      1.10     joerg 		/*
   2491      1.10     joerg 		 * Enter each physical block into the hashtable independently.
   2492      1.10     joerg 		 */
   2493      1.14     joerg 		n = wc->wc_blocks[i].wc_dlen >> wr->wr_fs_dev_bshift;
   2494      1.10     joerg 		for (j = 0; j < n; j++) {
   2495      1.34   mlelstv 			wapbl_blkhash_ins(wr, wc->wc_blocks[i].wc_daddr + btodb(j * fsblklen),
   2496      1.10     joerg 			    *offp);
   2497      1.10     joerg 			wapbl_circ_advance(wr, fsblklen, offp);
   2498      1.10     joerg 		}
   2499      1.10     joerg 	}
   2500      1.10     joerg }
   2501      1.10     joerg 
   2502      1.10     joerg static void
   2503      1.10     joerg wapbl_replay_process_revocations(struct wapbl_replay *wr)
   2504      1.10     joerg {
   2505      1.10     joerg 	struct wapbl_wc_blocklist *wc =
   2506      1.10     joerg 	    (struct wapbl_wc_blocklist *)wr->wr_scratch;
   2507      1.34   mlelstv 	int fsblklen = 1 << wr->wr_fs_dev_bshift;
   2508      1.10     joerg 	int i, j, n;
   2509      1.10     joerg 
   2510      1.10     joerg 	for (i = 0; i < wc->wc_blkcount; i++) {
   2511      1.10     joerg 		/*
   2512      1.10     joerg 		 * Remove any blocks found from the hashtable.
   2513      1.10     joerg 		 */
   2514      1.14     joerg 		n = wc->wc_blocks[i].wc_dlen >> wr->wr_fs_dev_bshift;
   2515      1.10     joerg 		for (j = 0; j < n; j++)
   2516      1.34   mlelstv 			wapbl_blkhash_rem(wr, wc->wc_blocks[i].wc_daddr + btodb(j * fsblklen));
   2517      1.10     joerg 	}
   2518      1.10     joerg }
   2519      1.10     joerg 
   2520      1.10     joerg static void
   2521      1.10     joerg wapbl_replay_process_inodes(struct wapbl_replay *wr, off_t oldoff, off_t newoff)
   2522      1.10     joerg {
   2523      1.10     joerg 	struct wapbl_wc_inodelist *wc =
   2524      1.10     joerg 	    (struct wapbl_wc_inodelist *)wr->wr_scratch;
   2525      1.18      yamt 	void *new_inodes;
   2526      1.18      yamt 	const size_t oldsize = wr->wr_inodescnt * sizeof(wr->wr_inodes[0]);
   2527      1.18      yamt 
   2528      1.18      yamt 	KASSERT(sizeof(wr->wr_inodes[0]) == sizeof(wc->wc_inodes[0]));
   2529      1.18      yamt 
   2530      1.10     joerg 	/*
   2531      1.10     joerg 	 * Keep track of where we found this so location won't be
   2532      1.10     joerg 	 * overwritten.
   2533      1.10     joerg 	 */
   2534      1.10     joerg 	if (wc->wc_clear) {
   2535      1.10     joerg 		wr->wr_inodestail = oldoff;
   2536      1.10     joerg 		wr->wr_inodescnt = 0;
   2537      1.12     joerg 		if (wr->wr_inodes != NULL) {
   2538      1.18      yamt 			wapbl_free(wr->wr_inodes, oldsize);
   2539      1.12     joerg 			wr->wr_inodes = NULL;
   2540      1.12     joerg 		}
   2541      1.10     joerg 	}
   2542      1.10     joerg 	wr->wr_inodeshead = newoff;
   2543      1.10     joerg 	if (wc->wc_inocnt == 0)
   2544      1.10     joerg 		return;
   2545      1.10     joerg 
   2546      1.18      yamt 	new_inodes = wapbl_malloc((wr->wr_inodescnt + wc->wc_inocnt) *
   2547      1.18      yamt 	    sizeof(wr->wr_inodes[0]));
   2548      1.18      yamt 	if (wr->wr_inodes != NULL) {
   2549      1.18      yamt 		memcpy(new_inodes, wr->wr_inodes, oldsize);
   2550      1.18      yamt 		wapbl_free(wr->wr_inodes, oldsize);
   2551      1.18      yamt 	}
   2552      1.18      yamt 	wr->wr_inodes = new_inodes;
   2553      1.10     joerg 	memcpy(&wr->wr_inodes[wr->wr_inodescnt], wc->wc_inodes,
   2554      1.18      yamt 	    wc->wc_inocnt * sizeof(wr->wr_inodes[0]));
   2555      1.10     joerg 	wr->wr_inodescnt += wc->wc_inocnt;
   2556      1.10     joerg }
   2557      1.10     joerg 
   2558       1.2    simonb static int
   2559      1.14     joerg wapbl_replay_process(struct wapbl_replay *wr, off_t head, off_t tail)
   2560       1.2    simonb {
   2561       1.2    simonb 	off_t off;
   2562       1.2    simonb 	int error;
   2563       1.2    simonb 
   2564      1.14     joerg 	int logblklen = 1 << wr->wr_log_dev_bshift;
   2565       1.2    simonb 
   2566       1.2    simonb 	wapbl_blkhash_clear(wr);
   2567       1.2    simonb 
   2568      1.14     joerg 	off = tail;
   2569      1.14     joerg 	while (off != head) {
   2570       1.2    simonb 		struct wapbl_wc_null *wcn;
   2571       1.2    simonb 		off_t saveoff = off;
   2572       1.2    simonb 		error = wapbl_circ_read(wr, wr->wr_scratch, logblklen, &off);
   2573       1.2    simonb 		if (error)
   2574       1.2    simonb 			goto errout;
   2575       1.2    simonb 		wcn = (struct wapbl_wc_null *)wr->wr_scratch;
   2576       1.2    simonb 		switch (wcn->wc_type) {
   2577       1.2    simonb 		case WAPBL_WC_BLOCKS:
   2578      1.10     joerg 			wapbl_replay_process_blocks(wr, &off);
   2579       1.2    simonb 			break;
   2580       1.2    simonb 
   2581       1.2    simonb 		case WAPBL_WC_REVOCATIONS:
   2582      1.10     joerg 			wapbl_replay_process_revocations(wr);
   2583       1.2    simonb 			break;
   2584       1.2    simonb 
   2585       1.2    simonb 		case WAPBL_WC_INODES:
   2586      1.10     joerg 			wapbl_replay_process_inodes(wr, saveoff, off);
   2587       1.2    simonb 			break;
   2588      1.10     joerg 
   2589       1.2    simonb 		default:
   2590       1.2    simonb 			printf("Unrecognized wapbl type: 0x%08x\n",
   2591       1.2    simonb 			       wcn->wc_type);
   2592       1.2    simonb  			error = EFTYPE;
   2593       1.2    simonb 			goto errout;
   2594       1.2    simonb 		}
   2595       1.2    simonb 		wapbl_circ_advance(wr, wcn->wc_len, &saveoff);
   2596       1.2    simonb 		if (off != saveoff) {
   2597       1.2    simonb 			printf("wapbl_replay: corrupted records\n");
   2598       1.2    simonb 			error = EFTYPE;
   2599       1.2    simonb 			goto errout;
   2600       1.2    simonb 		}
   2601       1.2    simonb 	}
   2602       1.2    simonb 	return 0;
   2603       1.2    simonb 
   2604       1.2    simonb  errout:
   2605       1.2    simonb 	wapbl_blkhash_clear(wr);
   2606       1.2    simonb 	return error;
   2607       1.2    simonb }
   2608       1.2    simonb 
   2609      1.13     joerg #if 0
   2610       1.2    simonb int
   2611       1.2    simonb wapbl_replay_verify(struct wapbl_replay *wr, struct vnode *fsdevvp)
   2612       1.2    simonb {
   2613       1.2    simonb 	off_t off;
   2614       1.2    simonb 	int mismatchcnt = 0;
   2615      1.14     joerg 	int logblklen = 1 << wr->wr_log_dev_bshift;
   2616      1.14     joerg 	int fsblklen = 1 << wr->wr_fs_dev_bshift;
   2617       1.2    simonb 	void *scratch1 = wapbl_malloc(MAXBSIZE);
   2618       1.2    simonb 	void *scratch2 = wapbl_malloc(MAXBSIZE);
   2619       1.2    simonb 	int error = 0;
   2620       1.2    simonb 
   2621       1.2    simonb 	KDASSERT(wapbl_replay_isopen(wr));
   2622       1.2    simonb 
   2623       1.2    simonb 	off = wch->wc_tail;
   2624       1.2    simonb 	while (off != wch->wc_head) {
   2625       1.2    simonb 		struct wapbl_wc_null *wcn;
   2626       1.2    simonb #ifdef DEBUG
   2627       1.2    simonb 		off_t saveoff = off;
   2628       1.2    simonb #endif
   2629       1.2    simonb 		error = wapbl_circ_read(wr, wr->wr_scratch, logblklen, &off);
   2630       1.2    simonb 		if (error)
   2631       1.2    simonb 			goto out;
   2632       1.2    simonb 		wcn = (struct wapbl_wc_null *)wr->wr_scratch;
   2633       1.2    simonb 		switch (wcn->wc_type) {
   2634       1.2    simonb 		case WAPBL_WC_BLOCKS:
   2635       1.2    simonb 			{
   2636       1.2    simonb 				struct wapbl_wc_blocklist *wc =
   2637       1.2    simonb 				    (struct wapbl_wc_blocklist *)wr->wr_scratch;
   2638       1.2    simonb 				int i;
   2639       1.2    simonb 				for (i = 0; i < wc->wc_blkcount; i++) {
   2640       1.2    simonb 					int foundcnt = 0;
   2641       1.2    simonb 					int dirtycnt = 0;
   2642       1.2    simonb 					int j, n;
   2643       1.2    simonb 					/*
   2644       1.2    simonb 					 * Check each physical block into the
   2645       1.2    simonb 					 * hashtable independently
   2646       1.2    simonb 					 */
   2647       1.2    simonb 					n = wc->wc_blocks[i].wc_dlen >>
   2648       1.2    simonb 					    wch->wc_fs_dev_bshift;
   2649       1.2    simonb 					for (j = 0; j < n; j++) {
   2650       1.2    simonb 						struct wapbl_blk *wb =
   2651       1.2    simonb 						   wapbl_blkhash_get(wr,
   2652      1.34   mlelstv 						   wc->wc_blocks[i].wc_daddr + btodb(j * fsblklen));
   2653       1.2    simonb 						if (wb && (wb->wb_off == off)) {
   2654       1.2    simonb 							foundcnt++;
   2655       1.2    simonb 							error =
   2656       1.2    simonb 							    wapbl_circ_read(wr,
   2657       1.2    simonb 							    scratch1, fsblklen,
   2658       1.2    simonb 							    &off);
   2659       1.2    simonb 							if (error)
   2660       1.2    simonb 								goto out;
   2661       1.2    simonb 							error =
   2662       1.2    simonb 							    wapbl_read(scratch2,
   2663       1.2    simonb 							    fsblklen, fsdevvp,
   2664       1.2    simonb 							    wb->wb_blk);
   2665       1.2    simonb 							if (error)
   2666       1.2    simonb 								goto out;
   2667       1.2    simonb 							if (memcmp(scratch1,
   2668       1.2    simonb 								   scratch2,
   2669       1.2    simonb 								   fsblklen)) {
   2670       1.2    simonb 								printf(
   2671       1.2    simonb 		"wapbl_verify: mismatch block %"PRId64" at off %"PRIdMAX"\n",
   2672       1.2    simonb 		wb->wb_blk, (intmax_t)off);
   2673       1.2    simonb 								dirtycnt++;
   2674       1.2    simonb 								mismatchcnt++;
   2675       1.2    simonb 							}
   2676       1.2    simonb 						} else {
   2677       1.2    simonb 							wapbl_circ_advance(wr,
   2678       1.2    simonb 							    fsblklen, &off);
   2679       1.2    simonb 						}
   2680       1.2    simonb 					}
   2681       1.2    simonb #if 0
   2682       1.2    simonb 					/*
   2683       1.2    simonb 					 * If all of the blocks in an entry
   2684       1.2    simonb 					 * are clean, then remove all of its
   2685       1.2    simonb 					 * blocks from the hashtable since they
   2686       1.2    simonb 					 * never will need replay.
   2687       1.2    simonb 					 */
   2688       1.2    simonb 					if ((foundcnt != 0) &&
   2689       1.2    simonb 					    (dirtycnt == 0)) {
   2690       1.2    simonb 						off = saveoff;
   2691       1.2    simonb 						wapbl_circ_advance(wr,
   2692       1.2    simonb 						    logblklen, &off);
   2693       1.2    simonb 						for (j = 0; j < n; j++) {
   2694       1.2    simonb 							struct wapbl_blk *wb =
   2695       1.2    simonb 							   wapbl_blkhash_get(wr,
   2696      1.34   mlelstv 							   wc->wc_blocks[i].wc_daddr + btodb(j * fsblklen));
   2697       1.2    simonb 							if (wb &&
   2698       1.2    simonb 							  (wb->wb_off == off)) {
   2699       1.2    simonb 								wapbl_blkhash_rem(wr, wb->wb_blk);
   2700       1.2    simonb 							}
   2701       1.2    simonb 							wapbl_circ_advance(wr,
   2702       1.2    simonb 							    fsblklen, &off);
   2703       1.2    simonb 						}
   2704       1.2    simonb 					}
   2705       1.2    simonb #endif
   2706       1.2    simonb 				}
   2707       1.2    simonb 			}
   2708       1.2    simonb 			break;
   2709       1.2    simonb 		case WAPBL_WC_REVOCATIONS:
   2710       1.2    simonb 		case WAPBL_WC_INODES:
   2711       1.2    simonb 			break;
   2712       1.2    simonb 		default:
   2713       1.2    simonb 			KASSERT(0);
   2714       1.2    simonb 		}
   2715       1.2    simonb #ifdef DEBUG
   2716       1.2    simonb 		wapbl_circ_advance(wr, wcn->wc_len, &saveoff);
   2717       1.2    simonb 		KASSERT(off == saveoff);
   2718       1.2    simonb #endif
   2719       1.2    simonb 	}
   2720       1.2    simonb  out:
   2721      1.18      yamt 	wapbl_free(scratch1, MAXBSIZE);
   2722      1.18      yamt 	wapbl_free(scratch2, MAXBSIZE);
   2723       1.2    simonb 	if (!error && mismatchcnt)
   2724       1.2    simonb 		error = EFTYPE;
   2725       1.2    simonb 	return error;
   2726       1.2    simonb }
   2727       1.2    simonb #endif
   2728       1.2    simonb 
   2729       1.2    simonb int
   2730       1.2    simonb wapbl_replay_write(struct wapbl_replay *wr, struct vnode *fsdevvp)
   2731       1.2    simonb {
   2732       1.9     joerg 	struct wapbl_blk *wb;
   2733       1.9     joerg 	size_t i;
   2734       1.2    simonb 	off_t off;
   2735       1.9     joerg 	void *scratch;
   2736       1.2    simonb 	int error = 0;
   2737      1.14     joerg 	int fsblklen = 1 << wr->wr_fs_dev_bshift;
   2738       1.2    simonb 
   2739       1.2    simonb 	KDASSERT(wapbl_replay_isopen(wr));
   2740       1.2    simonb 
   2741       1.9     joerg 	scratch = wapbl_malloc(MAXBSIZE);
   2742       1.2    simonb 
   2743      1.37  drochner 	for (i = 0; i <= wr->wr_blkhashmask; ++i) {
   2744       1.9     joerg 		LIST_FOREACH(wb, &wr->wr_blkhash[i], wb_hash) {
   2745       1.9     joerg 			off = wb->wb_off;
   2746       1.9     joerg 			error = wapbl_circ_read(wr, scratch, fsblklen, &off);
   2747       1.9     joerg 			if (error)
   2748       1.9     joerg 				break;
   2749       1.9     joerg 			error = wapbl_write(scratch, fsblklen, fsdevvp,
   2750       1.9     joerg 			    wb->wb_blk);
   2751       1.9     joerg 			if (error)
   2752       1.9     joerg 				break;
   2753       1.2    simonb 		}
   2754       1.2    simonb 	}
   2755       1.9     joerg 
   2756      1.18      yamt 	wapbl_free(scratch, MAXBSIZE);
   2757       1.2    simonb 	return error;
   2758       1.2    simonb }
   2759       1.2    simonb 
   2760       1.2    simonb int
   2761       1.6     joerg wapbl_replay_can_read(struct wapbl_replay *wr, daddr_t blk, long len)
   2762       1.6     joerg {
   2763      1.14     joerg 	int fsblklen = 1 << wr->wr_fs_dev_bshift;
   2764       1.6     joerg 
   2765       1.6     joerg 	KDASSERT(wapbl_replay_isopen(wr));
   2766       1.6     joerg 	KASSERT((len % fsblklen) == 0);
   2767       1.6     joerg 
   2768       1.6     joerg 	while (len != 0) {
   2769       1.6     joerg 		struct wapbl_blk *wb = wapbl_blkhash_get(wr, blk);
   2770       1.6     joerg 		if (wb)
   2771       1.6     joerg 			return 1;
   2772       1.6     joerg 		len -= fsblklen;
   2773       1.6     joerg 	}
   2774       1.6     joerg 	return 0;
   2775       1.6     joerg }
   2776       1.6     joerg 
   2777       1.6     joerg int
   2778       1.2    simonb wapbl_replay_read(struct wapbl_replay *wr, void *data, daddr_t blk, long len)
   2779       1.2    simonb {
   2780      1.14     joerg 	int fsblklen = 1 << wr->wr_fs_dev_bshift;
   2781       1.2    simonb 
   2782       1.2    simonb 	KDASSERT(wapbl_replay_isopen(wr));
   2783       1.2    simonb 
   2784       1.2    simonb 	KASSERT((len % fsblklen) == 0);
   2785       1.2    simonb 
   2786       1.2    simonb 	while (len != 0) {
   2787       1.2    simonb 		struct wapbl_blk *wb = wapbl_blkhash_get(wr, blk);
   2788       1.2    simonb 		if (wb) {
   2789       1.2    simonb 			off_t off = wb->wb_off;
   2790       1.2    simonb 			int error;
   2791       1.2    simonb 			error = wapbl_circ_read(wr, data, fsblklen, &off);
   2792       1.2    simonb 			if (error)
   2793       1.2    simonb 				return error;
   2794       1.2    simonb 		}
   2795       1.2    simonb 		data = (uint8_t *)data + fsblklen;
   2796       1.2    simonb 		len -= fsblklen;
   2797       1.2    simonb 		blk++;
   2798       1.2    simonb 	}
   2799       1.2    simonb 	return 0;
   2800       1.2    simonb }
   2801      1.35     pooka 
   2802      1.36     pooka #ifdef _KERNEL
   2803      1.35     pooka /*
   2804      1.35     pooka  * This is not really a module now, but maybe on it's way to
   2805      1.35     pooka  * being one some day.
   2806      1.35     pooka  */
   2807      1.35     pooka MODULE(MODULE_CLASS_VFS, wapbl, NULL);
   2808      1.35     pooka 
   2809      1.35     pooka static int
   2810      1.35     pooka wapbl_modcmd(modcmd_t cmd, void *arg)
   2811      1.35     pooka {
   2812      1.35     pooka 
   2813      1.35     pooka 	switch (cmd) {
   2814      1.35     pooka 	case MODULE_CMD_INIT:
   2815      1.39  christos 		wapbl_init();
   2816      1.35     pooka 		return 0;
   2817      1.35     pooka 	case MODULE_CMD_FINI:
   2818      1.39  christos #ifdef notyet
   2819      1.39  christos 		return wapbl_fini(true);
   2820      1.39  christos #endif
   2821      1.35     pooka 		return EOPNOTSUPP;
   2822      1.35     pooka 	default:
   2823      1.35     pooka 		return ENOTTY;
   2824      1.35     pooka 	}
   2825      1.35     pooka }
   2826      1.36     pooka #endif /* _KERNEL */
   2827