2022-10-26 19:08:39 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
|
|
|
#ifndef BTRFS_SUPER_H
|
|
|
|
#define BTRFS_SUPER_H
|
|
|
|
|
2024-01-26 23:53:06 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include "fs.h"
|
|
|
|
|
|
|
|
struct super_block;
|
|
|
|
struct btrfs_fs_info;
|
|
|
|
|
2023-11-22 17:17:50 +00:00
|
|
|
bool btrfs_check_options(struct btrfs_fs_info *info, unsigned long *mount_opt,
|
|
|
|
unsigned long flags);
|
2022-10-26 19:08:39 +00:00
|
|
|
int btrfs_sync_fs(struct super_block *sb, int wait);
|
|
|
|
char *btrfs_get_subvol_name_from_objectid(struct btrfs_fs_info *fs_info,
|
|
|
|
u64 subvol_objectid);
|
2023-11-22 17:17:40 +00:00
|
|
|
void btrfs_set_free_space_cache_settings(struct btrfs_fs_info *fs_info);
|
2022-10-26 19:08:39 +00:00
|
|
|
|
2022-10-26 19:08:40 +00:00
|
|
|
static inline struct btrfs_fs_info *btrfs_sb(struct super_block *sb)
|
|
|
|
{
|
|
|
|
return sb->s_fs_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void btrfs_set_sb_rdonly(struct super_block *sb)
|
|
|
|
{
|
|
|
|
sb->s_flags |= SB_RDONLY;
|
|
|
|
set_bit(BTRFS_FS_STATE_RO, &btrfs_sb(sb)->fs_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void btrfs_clear_sb_rdonly(struct super_block *sb)
|
|
|
|
{
|
|
|
|
sb->s_flags &= ~SB_RDONLY;
|
|
|
|
clear_bit(BTRFS_FS_STATE_RO, &btrfs_sb(sb)->fs_state);
|
|
|
|
}
|
|
|
|
|
2022-10-26 19:08:39 +00:00
|
|
|
#endif
|