]> git.proxmox.com Git - mirror_zfs.git/commit - module/zfs/spa_misc.c
Performance optimization of AVL tree comparator functions
authorGvozden Neskovic <neskovic@gmail.com>
Sat, 27 Aug 2016 18:12:53 +0000 (20:12 +0200)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 31 Aug 2016 21:35:34 +0000 (14:35 -0700)
commitee36c709c3d5f7040e1bd11f5c75318aa03e789f
tree7af1c677eeec84cba15c1265c43f5777c8a0614f
parent9d69e9b268a1a0af3117871608fd3a87db1ce586
Performance optimization of AVL tree comparator functions

perf: 2.75x faster ddt_entry_compare()
    First 256bits of ddt_key_t is a block checksum, which are expected
to be close to random data. Hence, on average, comparison only needs to
look at first few bytes of the keys. To reduce number of conditional
jump instructions, the result is computed as: sign(memcmp(k1, k2)).

Sign of an integer 'a' can be obtained as: `(0 < a) - (a < 0)` := {-1, 0, 1} ,
which is computed efficiently.  Synthetic performance evaluation of
original and new algorithm over 1G random keys on 2.6GHz Intel(R) Xeon(R)
CPU E5-2660 v3:

old 6.85789 s
new 2.49089 s

perf: 2.8x faster vdev_queue_offset_compare() and vdev_queue_timestamp_compare()
    Compute the result directly instead of using conditionals

perf: zfs_range_compare()
    Speedup between 1.1x - 2.5x, depending on compiler version and
optimization level.

perf: spa_error_entry_compare()
    `bcmp()` is not suitable for comparator use. Use `memcmp()` instead.

perf: 2.8x faster metaslab_compare() and metaslab_rangesize_compare()
perf: 2.8x faster zil_bp_compare()
perf: 2.8x faster mze_compare()
perf: faster dbuf_compare()
perf: faster compares in spa_misc
perf: 2.8x faster layout_hash_compare()
perf: 2.8x faster space_reftree_compare()
perf: libzfs: faster avl tree comparators
perf: guid_compare()
perf: dsl_deadlist_compare()
perf: perm_set_compare()
perf: 2x faster range_tree_seg_compare()
perf: faster unique_compare()
perf: faster vdev_cache _compare()
perf: faster vdev_uberblock_compare()
perf: faster fuid _compare()
perf: faster zfs_znode_hold_compare()

Signed-off-by: Gvozden Neskovic <neskovic@gmail.com>
Signed-off-by: Richard Elling <richard.elling@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #5033
25 files changed:
include/sys/avl.h
include/sys/zfs_context.h
lib/libzfs/libzfs_dataset.c
lib/libzfs/libzfs_iter.c
lib/libzfs/libzfs_sendrecv.c
module/zfs/ddt.c
module/zfs/dmu_send.c
module/zfs/dnode.c
module/zfs/dsl_deadlist.c
module/zfs/dsl_deleg.c
module/zfs/metaslab.c
module/zfs/range_tree.c
module/zfs/sa.c
module/zfs/spa.c
module/zfs/spa_misc.c
module/zfs/space_reftree.c
module/zfs/unique.c
module/zfs/vdev_cache.c
module/zfs/vdev_label.c
module/zfs/vdev_queue.c
module/zfs/zap_micro.c
module/zfs/zfs_fuid.c
module/zfs/zfs_rlock.c
module/zfs/zfs_znode.c
module/zfs/zil.c