diff options
author | George Wilson <[email protected]> | 2018-07-31 17:51:15 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-08-02 10:21:48 -0700 |
commit | 3d503a76e890d7711d5e906e025e092d0e244211 (patch) | |
tree | 3d82659f96cc5eb86b2c86589a59e70929c4ff83 /include/sys/dbuf.h | |
parent | fd7265c646f40e364396af5014bbb83e809e124a (diff) |
Fix OpenZFS 9337 mismerge
This change reintroduces logic required by OpenZFS 9577. When
OpenZFS 9337, zfs get all is slow due to uncached metadata, was
merged in it ended up removing logic required by OpenZFS 9577,
remove zfs_dbuf_evict_key, and inadvertently reintroduced the
bug that 9577 was designed to fix.
This change re-enables the "evicting" flag to dbuf_rele_and_unlock
and dnode_rele_and_unlock and updates all callers to provide the
correct parameter.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: George Wilson <[email protected]>
Closes #7758
Diffstat (limited to 'include/sys/dbuf.h')
-rw-r--r-- | include/sys/dbuf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/dbuf.h b/include/sys/dbuf.h index 557d2af66..ab0950c83 100644 --- a/include/sys/dbuf.h +++ b/include/sys/dbuf.h @@ -313,7 +313,7 @@ boolean_t dbuf_try_add_ref(dmu_buf_t *db, objset_t *os, uint64_t obj, uint64_t dbuf_refcount(dmu_buf_impl_t *db); void dbuf_rele(dmu_buf_impl_t *db, void *tag); -void dbuf_rele_and_unlock(dmu_buf_impl_t *db, void *tag); +void dbuf_rele_and_unlock(dmu_buf_impl_t *db, void *tag, boolean_t evicting); dmu_buf_impl_t *dbuf_find(struct objset *os, uint64_t object, uint8_t level, uint64_t blkid); |