From 9bee47e64898324fd92c21286d3f37ca800a4fc0 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 20 Mar 2009 13:17:23 -0700 Subject: [PATCH] Export additional txg_* symbols. --- module/zfs/txg.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/module/zfs/txg.c b/module/zfs/txg.c index 629f55ab0e..a34a5cfedd 100644 --- a/module/zfs/txg.c +++ b/module/zfs/txg.c @@ -733,5 +733,19 @@ txg_list_next(txg_list_t *tl, void *p, uint64_t txg) } #if defined(_KERNEL) && defined(HAVE_SPL) +EXPORT_SYMBOL(txg_init); +EXPORT_SYMBOL(txg_fini); +EXPORT_SYMBOL(txg_sync_start); +EXPORT_SYMBOL(txg_sync_stop); +EXPORT_SYMBOL(txg_hold_open); +EXPORT_SYMBOL(txg_rele_to_quiesce); +EXPORT_SYMBOL(txg_rele_to_sync); +EXPORT_SYMBOL(txg_register_callbacks); +EXPORT_SYMBOL(txg_suspend); +EXPORT_SYMBOL(txg_resume); +EXPORT_SYMBOL(txg_delay); EXPORT_SYMBOL(txg_wait_synced); +EXPORT_SYMBOL(txg_wait_open); +EXPORT_SYMBOL(txg_stalled); +EXPORT_SYMBOL(txg_sync_waiting); #endif