summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2022-03-21Update bcachefs sources to 0e705f5944 fixup! bcachefs: Refactor ↵Kent Overstreet
bch2_btree_node_mem_alloc()
2022-03-13Update bcachefs sources to f05b3c1af9 bcachefs: Improve bucket_alloc_fail ↵v0.19Kent Overstreet
tracepoint
2022-03-13Update bcachefs sources to e48731a188 bcachefs: Fix ↵Kent Overstreet
BTREE_TRIGGER_WANTS_OLD_AND_NEW
2022-03-10Add freezable_schedule() to linux kernel shimKent Overstreet
Also fix the freezable_schedule_timeout() macro. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2022-02-27Update bcachefs sources to 04036b4910 bcachefs: Fix a memory leakKent Overstreet
2022-02-19Update bcachefs sources to da8056a215 bcachefs: Store logical location of ↵Kent Overstreet
journal entries
2022-02-18Switch to pthread_mutex_t for spinlocks, tooKent Overstreet
This fixes an observed journal deadlock - real spinlocks aren't safe in userspace.
2022-02-16Update bcachefs sources to a0d7001b0f bcachefs: Change bch2_dev_lookup() to ↵Kent Overstreet
not use lookup_bdev()
2022-02-13Update bcachefs sources to ba398d2906 bcachefs: Fix reflink repair codeKent Overstreet
2022-02-11Update bcachefs sources to b84661c042 bcachefs: Fix reflink repair codeKent Overstreet
2022-01-10Update bcachefs sources to bf340e68c7 bcachefs: Ignore cached data when ↵Kent Overstreet
calculating fragmentation
2022-01-04Update bcachefs sources to 50ac18afbb bcachefs: Fix an uninitialized variableKent Overstreet
2022-01-01Retry memory allocation failuresKent Overstreet
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-12-28Update bcachefs sources to 078a1a596a bcachefs: Optimize bucket reuseKent Overstreet
2021-11-03Update bcachefs sources to 5fd0c70102 bcachefs: Fix __remove_dirent()Kent Overstreet
2021-10-16make BIO_MAX_VECS unsigned, like the kernel definitionBrett Holman
Signed-off-by: Brett Holman <bholman.devel@gmail.com>
2021-09-09Update bcachefs sources to 3f3f969859 bcachefs: Fix some compiler warningsKent Overstreet
2021-07-28Delete unused variableKent Overstreet
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-07-28Update bcachefs sources to b964c6cba8 bcachefs: Change lockrestart_do() to ↵Kent Overstreet
always call bch2_trans_begin()
2021-07-24fix for musl and non-x86 archsBrett Holman
2021-07-14Update bcachefs sources to 787de128a5 bcachefs: Improvements to fsck ↵Kent Overstreet
check_dirents()
2021-07-11Update bcachefs sources to 400c2f8d96 bcachefs: Mask out unknown compat ↵Kent Overstreet
features when going read-write
2021-07-07Update bcachefs sources to dbee44d5ab bcachefs: add bcachefs xxhash supportKent Overstreet
2021-06-10Update bcachefs sources to 69be0dae31 bcachefs: Always zero memory from ↵Kent Overstreet
bch2_trans_kmalloc()
2021-06-08Update bcachefs sources to e3a7cee503 bcachefs: Don't mark superblocks past ↵Kent Overstreet
end of usable space
2021-05-31Update bcachefs sources to 3913e0cac3 bcachefs: Journal space calculation fixKent Overstreet
2021-05-27Update closures from kernel source treeKent Overstreet
2021-05-27Grab math.h from kernel source treeKent Overstreet
This gets us round_up() and round_down() Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-05-17Update bcachefs sources to 0cd3e1d27a bcachefs: Fix for bch2_bkey_pack_pos() ↵Kent Overstreet
not initializing len/version fields
2021-05-17Fix some minor compiler warningsKent Overstreet
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-04-30Update bcachefs sources to a5c0e1bb30 bcachefs: Clean up ↵Kent Overstreet
bch2_btree_and_journal_walk()
2021-04-26bit_spinlocks now use futexesKent Overstreet
Spinlocks aren't a good idea in userspace, where we can't actually disable preemption. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-04-26Update bcachefs sources to 8d3093bd9b bcachefs: Evict btree nodes we're deletingKent Overstreet
2021-04-24Add a real mempool implementationKent Overstreet
Imported from the kernel. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-04-19Update bcachefs sources to fe72e70682 bcachefs: Fix for btree_gc repairing ↵Kent Overstreet
interior btree ptrs
2021-04-13Update bcachefs sources to 8eca47e4d5 bcachefs: Improved ↵Kent Overstreet
check_directory_structure()
2021-04-12Update bcachefs sources to a8b3ce7599 fixup! bcachefs: Eliminate more ↵Kent Overstreet
PAGE_SIZE uses
2021-04-08Fix krealloc() alignmentKent Overstreet
bcachefs assumes kmalloc & krealloc give out allocations that are naturally aligned, like the kernel allocators do. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-03-29Update bcachefs sources to 18686af684 bcachefs: Inode backpointersv0.13Kent Overstreet
2021-03-24Update bcachefs sources to ad68801b93 bcachefs: Use pcpu mode of six locks ↵Kent Overstreet
for interior nodes
2021-02-12generix radix trees: Don't overflow in peek()Kent Overstreet
2021-02-12Update bcachefs sources to 5e73602f6c bcachefs: Fix for fsck hangingKent Overstreet
2020-12-04Update bcachefs sources to e1d0fb8c5f bcachefs: Don't require flush/fua on ↵Kent Overstreet
every journal write
2020-11-30Update bcachefs sources to 021e62a098 bcachefs: Fix error in filesystem ↵Kent Overstreet
initialization
2020-11-16Update bcachefs sources to d1fd471830 bcachefs: Add more debug checksKent Overstreet
2020-11-16Round up aligned_alloc() allocationsKent Overstreet
this fixes an address sanitizer splat Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2020-11-08Fix kmalloc_array macroKent Overstreet
This was causing us some valgrind errors. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2020-11-07Update bcachefs sources to 1d669389f7 bcachefs: use a radix tree for inum ↵Kent Overstreet
bitmap in fsck
2020-08-24Update bcachefs sources to 10ab39f2fa bcachefs: Improvements to the journal ↵Kent Overstreet
read error paths
2020-06-15Update bcachefs sources to 4837f82ee1 bcachefs: Use cached iterators for ↵Kent Overstreet
alloc btree