mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-10 07:10:27 +00:00
a3e7226268
Previous varint implementation used by the inode code was not nearly as fast as it could have been; partly because it was attempting to encode integers up to 96 bits (for timestamps) but this meant that encoding and decoding the length required a table lookup. Instead, we'll just encode timestamps greater than 64 bits as two separate varints; this will make decoding/encoding of inodes significantly faster overall. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
62 lines
915 B
Makefile
62 lines
915 B
Makefile
|
|
obj-$(CONFIG_BCACHEFS_FS) += bcachefs.o
|
|
|
|
bcachefs-y := \
|
|
acl.o \
|
|
alloc_background.o \
|
|
alloc_foreground.o \
|
|
bkey.o \
|
|
bkey_methods.o \
|
|
bkey_sort.o \
|
|
bset.o \
|
|
btree_cache.o \
|
|
btree_gc.o \
|
|
btree_io.o \
|
|
btree_iter.o \
|
|
btree_key_cache.o \
|
|
btree_update_interior.o \
|
|
btree_update_leaf.o \
|
|
buckets.o \
|
|
chardev.o \
|
|
checksum.o \
|
|
clock.o \
|
|
compress.o \
|
|
debug.o \
|
|
dirent.o \
|
|
disk_groups.o \
|
|
ec.o \
|
|
error.o \
|
|
extents.o \
|
|
extent_update.o \
|
|
fs.o \
|
|
fs-common.o \
|
|
fs-ioctl.o \
|
|
fs-io.o \
|
|
fsck.o \
|
|
inode.o \
|
|
io.o \
|
|
journal.o \
|
|
journal_io.o \
|
|
journal_reclaim.o \
|
|
journal_seq_blacklist.o \
|
|
keylist.o \
|
|
migrate.o \
|
|
move.o \
|
|
movinggc.o \
|
|
opts.o \
|
|
quota.o \
|
|
rebalance.o \
|
|
recovery.o \
|
|
reflink.o \
|
|
replicas.o \
|
|
siphash.o \
|
|
six.o \
|
|
super.o \
|
|
super-io.o \
|
|
sysfs.o \
|
|
tests.o \
|
|
trace.o \
|
|
util.o \
|
|
varint.o \
|
|
xattr.o
|