Kent Overstreet 573dc50246 Update bcachefs sources to 452d7a3f10e4 bcachefs: data_read_fail_and_poison on by default
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2025-12-01 01:53:27 -05:00

21 lines
503 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BCACHEFS_VFS_TYPES_H
#define _BCACHEFS_VFS_TYPES_H
struct bch_fs_vfs {
#ifndef NO_BCACHEFS_FS
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
};
#endif /* _BCACHEFS_VFS_TYPES_H */