diff options
author | Brian Behlendorf <[email protected]> | 2012-08-14 08:35:32 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-08-14 08:38:19 -0700 |
commit | 4047414a6a340dff5fd52d48b163991bc9760ad2 (patch) | |
tree | e76ec247d582b625b784ae079f3137d7065df25d /module/zfs/dbuf.c | |
parent | 9ca431763e2db4c05858ed7dc578a8d6dbcc54d6 (diff) |
Export dmu_buf_rele() symbol
While I'd like to remove the various pragmas in module/zfs/dbuf.c.
There are consumers such as Lustre which still depend on dmu_buf_*
versions of the symbols. Until all consumers can be converted to
use only the dbuf_* names leave this symbol exported.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'module/zfs/dbuf.c')
-rw-r--r-- | module/zfs/dbuf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/zfs/dbuf.c b/module/zfs/dbuf.c index eba719c36..42d82bbfb 100644 --- a/module/zfs/dbuf.c +++ b/module/zfs/dbuf.c @@ -2846,6 +2846,7 @@ EXPORT_SYMBOL(dmu_buf_will_dirty); EXPORT_SYMBOL(dmu_buf_will_not_fill); EXPORT_SYMBOL(dmu_buf_will_fill); EXPORT_SYMBOL(dmu_buf_fill_done); +EXPORT_SYMBOL(dmu_buf_rele); EXPORT_SYMBOL(dbuf_assign_arcbuf); EXPORT_SYMBOL(dbuf_clear); EXPORT_SYMBOL(dbuf_prefetch); |