From a139c4ee9f04423adfedac59354b7b6d0d0fc3fb Mon Sep 17 00:00:00 2001 From: Zhiyong Landen tian Date: Tue, 17 Aug 2010 11:00:12 -0700 Subject: [PATCH] Export dmu_objset_register_type() function The dmu_objset_register_type() function is required by the Lustre quota code in order to inform the DMU of the uid/gid of a given object for the purposes of space accounting. Signed-off-by: Brian Behlendorf Signed-off-by: Ricardo M. Correia --- module/zfs/dmu_objset.c | 1 + 1 file changed, 1 insertion(+) diff --git a/module/zfs/dmu_objset.c b/module/zfs/dmu_objset.c index 1a4ed3ab44..91cb065809 100644 --- a/module/zfs/dmu_objset.c +++ b/module/zfs/dmu_objset.c @@ -1713,6 +1713,7 @@ EXPORT_SYMBOL(dmu_objset_is_dirty); EXPORT_SYMBOL(dmu_objset_create_impl); EXPORT_SYMBOL(dmu_objset_open_impl); EXPORT_SYMBOL(dmu_objset_evict); +EXPORT_SYMBOL(dmu_objset_register_type); EXPORT_SYMBOL(dmu_objset_do_userquota_updates); EXPORT_SYMBOL(dmu_objset_userquota_get_ids); EXPORT_SYMBOL(dmu_objset_userused_enabled);