Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

bcachefs: counters.c -> sb-counters.c

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>

+7 -8
+1 -1
fs/bcachefs/Makefile
··· 27 27 checksum.o \ 28 28 clock.o \ 29 29 compress.o \ 30 - counters.o \ 31 30 darray.o \ 32 31 debug.o \ 33 32 dirent.o \ ··· 70 71 reflink.o \ 71 72 replicas.o \ 72 73 sb-clean.o \ 74 + sb-counters.o \ 73 75 sb-downgrade.o \ 74 76 sb-errors.o \ 75 77 sb-members.o \
+1 -1
fs/bcachefs/counters.c fs/bcachefs/sb-counters.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0 2 2 #include "bcachefs.h" 3 3 #include "super-io.h" 4 - #include "counters.h" 4 + #include "sb-counters.h" 5 5 6 6 /* BCH_SB_FIELD_counters */ 7 7
+3 -4
fs/bcachefs/counters.h fs/bcachefs/sb-counters.h
··· 1 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 - #ifndef _BCACHEFS_COUNTERS_H 3 - #define _BCACHEFS_COUNTERS_H 2 + #ifndef _BCACHEFS_SB_COUNTERS_H 3 + #define _BCACHEFS_SB_COUNTERS_H 4 4 5 5 #include "bcachefs.h" 6 6 #include "super-io.h" 7 - 8 7 9 8 int bch2_sb_counters_to_cpu(struct bch_fs *); 10 9 int bch2_sb_counters_from_cpu(struct bch_fs *); ··· 13 14 14 15 extern const struct bch_sb_field_ops bch_sb_field_ops_counters; 15 16 16 - #endif // _BCACHEFS_COUNTERS_H 17 + #endif // _BCACHEFS_SB_COUNTERS_H
+1 -1
fs/bcachefs/super-io.c
··· 2 2 3 3 #include "bcachefs.h" 4 4 #include "checksum.h" 5 - #include "counters.h" 6 5 #include "disk_groups.h" 7 6 #include "ec.h" 8 7 #include "error.h" ··· 12 13 #include "replicas.h" 13 14 #include "quota.h" 14 15 #include "sb-clean.h" 16 + #include "sb-counters.h" 15 17 #include "sb-downgrade.h" 16 18 #include "sb-errors.h" 17 19 #include "sb-members.h"
+1 -1
fs/bcachefs/super.c
··· 23 23 #include "checksum.h" 24 24 #include "clock.h" 25 25 #include "compress.h" 26 - #include "counters.h" 27 26 #include "debug.h" 28 27 #include "disk_groups.h" 29 28 #include "ec.h" ··· 48 49 #include "recovery.h" 49 50 #include "replicas.h" 50 51 #include "sb-clean.h" 52 + #include "sb-counters.h" 51 53 #include "sb-errors.h" 52 54 #include "sb-members.h" 53 55 #include "snapshot.h"