From: Brian Behlendorf Date: Fri, 7 Mar 2014 17:57:28 +0000 (-0800) Subject: Export symbols dsl_sync_task{_nowait} X-Git-Tag: zfs-0.6.3~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e74400155f40f21361e9e3015396c3b0152a33fd;p=zfs Export symbols dsl_sync_task{_nowait} These are needed by consumers (i.e. Lustre) who wish to perform a callback in the syncing context. Both a blocking and non-blocking version are available to callers. Signed-off-by: Brian Behlendorf --- diff --git a/module/zfs/dsl_synctask.c b/module/zfs/dsl_synctask.c index 6ad0ede09..5f345f498 100644 --- a/module/zfs/dsl_synctask.c +++ b/module/zfs/dsl_synctask.c @@ -174,4 +174,6 @@ dsl_sync_task_sync(dsl_sync_task_t *dst, dmu_tx_t *tx) } #if defined(_KERNEL) && defined(HAVE_SPL) +EXPORT_SYMBOL(dsl_sync_task); +EXPORT_SYMBOL(dsl_sync_task_nowait); #endif