mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-19 12:55:38 +00:00
20 lines
401 B
C
20 lines
401 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
#include "kernel-shared/ctree.h"
|
||
|
#include "kernel-shared/locking.h"
|
||
|
|
||
|
struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
|
||
|
{
|
||
|
return root->node;
|
||
|
}
|
||
|
|
||
|
struct extent_buffer *btrfs_try_read_lock_root_node(struct btrfs_root *root)
|
||
|
{
|
||
|
return root->node;
|
||
|
}
|
||
|
|
||
|
struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
|
||
|
{
|
||
|
return root->node;
|
||
|
}
|