From a5e05b9a9e103ee4c2094084601cd8d64ac73cbd Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Tue, 19 Sep 2017 13:55:33 -0700 Subject: [PATCH] Export symbol dmu_tx_mark_netfree() This symbol is needed by Lustre for the same reason it was needed by the ZPL. It should have been exported when the original patch was merged. Signed-off-by: Brian Behlendorf --- module/zfs/dmu_tx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/module/zfs/dmu_tx.c b/module/zfs/dmu_tx.c index 7937615f2e75..30cb3c1ff51f 100644 --- a/module/zfs/dmu_tx.c +++ b/module/zfs/dmu_tx.c @@ -1369,6 +1369,7 @@ EXPORT_SYMBOL(dmu_tx_abort); EXPORT_SYMBOL(dmu_tx_assign); EXPORT_SYMBOL(dmu_tx_wait); EXPORT_SYMBOL(dmu_tx_commit); +EXPORT_SYMBOL(dmu_tx_mark_netfree); EXPORT_SYMBOL(dmu_tx_get_txg); EXPORT_SYMBOL(dmu_tx_callback_register); EXPORT_SYMBOL(dmu_tx_do_callbacks);