Kent Overstreet b601a0f2c3 Update bcachefs sources to 92092a772970 bcachefs: fix bch2_can_do_write_btree()
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2025-12-03 16:58:06 -05:00

19 lines
473 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BCACHEFS_VFS_TYPES_H
#define _BCACHEFS_VFS_TYPES_H
struct bch_fs_vfs {
struct list_head inodes_list;
struct mutex inodes_lock;
struct rhashtable inodes_table;
struct rhltable inodes_by_inum_table;
struct bio_set writepage_bioset;
struct bio_set dio_write_bioset;
struct bio_set dio_read_bioset;
struct bio_set nocow_flush_bioset;
struct workqueue_struct *writeback_wq;
};
#endif /* _BCACHEFS_VFS_TYPES_H */