diff options
author | Matthew Macy <[email protected]> | 2019-10-10 15:39:44 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-10-10 15:39:44 -0700 |
commit | eedb3a62b9f16b989aa02d00db63de5dff200572 (patch) | |
tree | 23f6bbb2d6480eb3f87aa081fcb16a1b41e85ee5 /module/zfs/zil.c | |
parent | f3dc4a85e92712a71ede0f81d6749f479cccf893 (diff) |
Make `zil_async_to_sync` visible to platform code
FreeBSD's zvol platform code requires access to the
zil_async_to_sync() function.
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Matt Macy <[email protected]>
Closes #9440
Diffstat (limited to 'module/zfs/zil.c')
-rw-r--r-- | module/zfs/zil.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/module/zfs/zil.c b/module/zfs/zil.c index 7e65ac090..0a62ace14 100644 --- a/module/zfs/zil.c +++ b/module/zfs/zil.c @@ -135,8 +135,6 @@ unsigned long zil_slog_bulk = 768 * 1024; static kmem_cache_t *zil_lwb_cache; static kmem_cache_t *zil_zcw_cache; -static void zil_async_to_sync(zilog_t *zilog, uint64_t foid); - #define LWB_EMPTY(lwb) ((BP_GET_LSIZE(&lwb->lwb_blk) - \ sizeof (zil_chain_t)) == (lwb->lwb_sz - lwb->lwb_nused)) @@ -2089,7 +2087,7 @@ zil_get_commit_list(zilog_t *zilog) /* * Move the async itxs for a specified object to commit into sync lists. */ -static void +void zil_async_to_sync(zilog_t *zilog, uint64_t foid) { uint64_t otxg, txg; |