Update bcachefs sources to a6207e71e5de bcachefs: Fix rust build warning

This commit is contained in:
Kent Overstreet 2025-12-02 23:10:33 -05:00
parent 858e41a71d
commit 81b1baa855
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
6c3c2a24c61ddc23a6bbdf604b88262da0cd2d9c a6207e71e5deaf4ecb5132e9037ecb49217176d8

View File

@ -889,7 +889,9 @@ struct bch_fs {
reflink_gc_table reflink_gc_table; reflink_gc_table reflink_gc_table;
size_t reflink_gc_nr; size_t reflink_gc_nr;
#ifndef NO_BCACHEFS_FS
struct bch_fs_vfs vfs; struct bch_fs_vfs vfs;
#endif
/* QUOTAS */ /* QUOTAS */
struct bch_memquota_type quotas[QTYP_NR]; struct bch_memquota_type quotas[QTYP_NR];

View File

@ -3,7 +3,6 @@
#define _BCACHEFS_VFS_TYPES_H #define _BCACHEFS_VFS_TYPES_H
struct bch_fs_vfs { struct bch_fs_vfs {
#ifndef NO_BCACHEFS_FS
struct list_head inodes_list; struct list_head inodes_list;
struct mutex inodes_lock; struct mutex inodes_lock;
struct rhashtable inodes_table; struct rhashtable inodes_table;
@ -14,7 +13,6 @@ struct bch_fs_vfs {
struct bio_set dio_read_bioset; struct bio_set dio_read_bioset;
struct bio_set nocow_flush_bioset; struct bio_set nocow_flush_bioset;
struct workqueue_struct *writeback_wq; struct workqueue_struct *writeback_wq;
#endif
}; };
#endif /* _BCACHEFS_VFS_TYPES_H */ #endif /* _BCACHEFS_VFS_TYPES_H */