summaryrefslogtreecommitdiff
path: root/include/linux/spinlock.h
AgeCommit message (Collapse)Author
2024-02-06Update bcachefs sources to 50847e296b34 bcachefs: Check subvol <-> inode ↵Kent Overstreet
pointers in check_inode() Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2024-01-16Move c_src dirs back to toplevelKent Overstreet
We just wanted c sourcefiles out of the top level, not c source directories. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2024-01-16move Rust sources to top level, C sources into c_srcThomas Bertschinger
This moves the Rust sources out of rust_src/ and into the top level. Running the bcachefs executable out of the development tree is now: $ ./target/release/bcachefs command or $ cargo run --profile release -- command instead of "./bcachefs command". Building and installing is still: $ make && make install Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2022-06-22Fix printk_ratelimited()Kent Overstreet
printk_ratelimited was behind an #ifdef CONFIG_PRINTK, which we don't define, so it was a complete noop - oops. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2022-02-18Switch to pthread_mutex_t for spinlocks, tooKent Overstreet
This fixes an observed journal deadlock - real spinlocks aren't safe in userspace.
2017-04-04Fix some clang warningsKent Overstreet
the issue in cmd_debug - passing members of struct bpos to kstrtoull, which aren't aligned - was a legit bug
2017-01-20bcache in userspace; userspace fsckKent Overstreet