btrfs-progs/kernel-shared/locking.c
David Sterba abad680f5f btrfs-progs: clean up includes
Remove unused includes, add ones that are missing.

Signed-off-by: David Sterba <dsterba@suse.com>
2025-01-16 19:13:26 +01:00

24 lines
490 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#include "kerncompat.h"
#include "kernel-shared/ctree.h"
#include "kernel-shared/extent_io.h"
struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
{
root->node->refs++;
return root->node;
}
struct extent_buffer *btrfs_try_read_lock_root_node(struct btrfs_root *root)
{
root->node->refs++;
return root->node;
}
struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
{
root->node->refs++;
return root->node;
}