btrfs: avoid memory allocation at log_new_dir_dentries() for common case
authorFilipe Manana <fdmanana@suse.com>
Wed, 17 Aug 2022 11:22:38 +0000 (12:22 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 26 Sep 2022 10:27:56 +0000 (12:27 +0200)
commit009d9bea49b4c78769da52b800412fb163ff0ae7
tree5cc0dd749202370a014f0dae53deb2e7f9109fc5
parent4008481343aa4d2587c6f2fa75759eda1f3fff41
btrfs: avoid memory allocation at log_new_dir_dentries() for common case

At log_new_dir_dentries() we always start by allocating a list element
for the starting inode and then do a while loop with the condition being
a list emptiness check.

This however is not needed, we can avoid allocating this initial list
element and then just check for the list emptiness at the end of the
loop's body. So just do that to save one memory allocation from the
kmalloc-32 slab.

This allows for not doing any memory allocation when we don't have any
subdirectory to log, which is a very common case.

Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/tree-log.c