diff options
author | Gvozden Neskovic <[email protected]> | 2016-11-26 21:30:44 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-05-04 19:26:28 -0400 |
commit | c17486b2178fc545c50d48effd4be47d33208933 (patch) | |
tree | 82f82e4b72863f3096efd7e7db84aaec3f4b8757 /module/zfs/zap_micro.c | |
parent | 8fa5250f5d779e577406c581fc2d7fbf0baceea5 (diff) |
Add missing *_destroy/*_fini calls
The proposed debugging enhancements in zfsonlinux/spl#587
identified the following missing *_destroy/*_fini calls.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Gvozden Neskovic <[email protected]>
Closes #5428
Diffstat (limited to 'module/zfs/zap_micro.c')
-rw-r--r-- | module/zfs/zap_micro.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/zfs/zap_micro.c b/module/zfs/zap_micro.c index 28c80e549..2cb9f42ae 100644 --- a/module/zfs/zap_micro.c +++ b/module/zfs/zap_micro.c @@ -404,7 +404,8 @@ mzap_open(objset_t *os, uint64_t obj, dmu_buf_t *db) zap->zap_dbuf = db; if (zap_block_type != ZBT_MICRO) { - mutex_init(&zap->zap_f.zap_num_entries_mtx, 0, 0, 0); + mutex_init(&zap->zap_f.zap_num_entries_mtx, 0, MUTEX_DEFAULT, + 0); zap->zap_f.zap_block_shift = highbit64(db->db_size) - 1; if (zap_block_type != ZBT_HEADER || zap_magic != ZAP_MAGIC) { winner = NULL; /* No actual winner here... */ |