diff options
author | Alex Zhuravlev <[email protected]> | 2014-11-13 10:09:05 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2014-11-14 14:39:43 -0800 |
commit | 0f69910833f4918283bad1ce9e23b701fc6edb6b (patch) | |
tree | 713bdcbaf28e13c75068d4f3ca7f37b72af5c76f /module/zfs/arc.c | |
parent | 5f91bd3dea49a529e87e0aa39595f074fd09736a (diff) |
Export symbols for ZIL interface
These symbols are needed by consumers (i.e. Lustre) who wish to
integrate with the ZIL. In addition the zil_rollback_destroy()
prototype was removed because the implementation of this function
was removed long ago.
Signed-off-by: Alex Zhuravlev <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #2892
Diffstat (limited to 'module/zfs/arc.c')
-rw-r--r-- | module/zfs/arc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/module/zfs/arc.c b/module/zfs/arc.c index 96e17b61e..4cb773279 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -5660,6 +5660,8 @@ l2arc_stop(void) } #if defined(_KERNEL) && defined(HAVE_SPL) +EXPORT_SYMBOL(arc_buf_size); +EXPORT_SYMBOL(arc_write); EXPORT_SYMBOL(arc_read); EXPORT_SYMBOL(arc_buf_remove_ref); EXPORT_SYMBOL(arc_buf_info); |