diff options
author | Brian Behlendorf <[email protected]> | 2011-09-30 10:33:26 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-10-05 15:59:56 -0700 |
commit | e45aa452988f721e458fa3abe54669bdf9377352 (patch) | |
tree | 460c9e5280ffafc91475cad3a9f1c83e77ab4c27 /module/zfs/zfs_sa.c | |
parent | e8753fb4f03aaa371028aaec145449f2610229cf (diff) |
Export symbols for the full SA API
Export all the symbols for the system attribute (SA) API. This
allows external module to cleanly manipulate the SAs associated
with a dnode. Documention for the SA API can be found in the
module/zfs/sa.c source.
This change also removes the zfs_sa_uprade_pre, and
zfs_sa_uprade_post prototypes. The functions themselves were
dropped some time ago.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'module/zfs/zfs_sa.c')
-rw-r--r-- | module/zfs/zfs_sa.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/module/zfs/zfs_sa.c b/module/zfs/zfs_sa.c index b8f208bba..324e9b96c 100644 --- a/module/zfs/zfs_sa.c +++ b/module/zfs/zfs_sa.c @@ -334,4 +334,11 @@ zfs_sa_upgrade_txholds(dmu_tx_t *tx, znode_t *zp) } } +EXPORT_SYMBOL(zfs_sa_readlink); +EXPORT_SYMBOL(zfs_sa_symlink); +EXPORT_SYMBOL(zfs_sa_get_scanstamp); +EXPORT_SYMBOL(zfs_sa_set_scanstamp); +EXPORT_SYMBOL(zfs_sa_upgrade); +EXPORT_SYMBOL(zfs_sa_upgrade_txholds); + #endif |