linux/fs/bcachefs
Linus Torvalds 2aae1d67fd vfs-6.11.inode
-----BEGIN PGP SIGNATURE-----
 
 iHUEABYKAB0WIQRAhzRXHqcMeLMyaSiRxhvAZXjcogUCZpEG2wAKCRCRxhvAZXjc
 ooW/AQDzyY+xNGt4OPMvlyFUHd5RcyiLsMhYrkKc3FaIFjesVgD+PFW5PPW12c0V
 Z4VHg9w1HDDuUn4XvELs7OXZpek7RgU=
 =eDC8
 -----END PGP SIGNATURE-----

Merge tag 'vfs-6.11.inode' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs

Pull vfs inode / dentry updates from Christian Brauner:
 "This contains smaller performance improvements to inodes and dentries:

  inode:

   - Add rcu based inode lookup variants.

     They avoid one inode hash lock acquire in the common case thereby
     significantly reducing contention. We already support RCU-based
     operations but didn't take advantage of them during inode
     insertion.

     Callers of iget_locked() get the improvement without any code
     changes. Callers that need a custom callback can switch to
     iget5_locked_rcu() as e.g., did btrfs.

     With 20 threads each walking a dedicated 1000 dirs * 1000 files
     directory tree to stat(2) on a 32 core + 24GB ram vm:

        before: 3.54s user 892.30s system 1966% cpu 45.549 total
        after:  3.28s user 738.66s system 1955% cpu 37.932 total (-16.7%)

     Long-term we should pick up the effort to introduce more
     fine-grained locking and possibly improve on the currently used
     hash implementation.

   - Start zeroing i_state in inode_init_always() instead of doing it in
     individual filesystems.

     This allows us to remove an unneeded lock acquire in new_inode()
     and not burden individual filesystems with this.

  dcache:

   - Move d_lockref out of the area used by RCU lookup to avoid
     cacheline ping poing because the embedded name is sharing a
     cacheline with d_lockref.

   - Fix dentry size on 32bit with CONFIG_SMP=y so it does actually end
     up with 128 bytes in total"

* tag 'vfs-6.11.inode' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs:
  fs: fix dentry size
  vfs: move d_lockref out of the area used by RCU lookup
  bcachefs: remove now spurious i_state initialization
  xfs: remove now spurious i_state initialization in xfs_inode_alloc
  vfs: partially sanitize i_state zeroing on inode creation
  xfs: preserve i_state around inode_init_always in xfs_reinit_inode
  btrfs: use iget5_locked_rcu
  vfs: add rcu-based find_inode variants for iget ops
2024-07-15 11:39:44 -07:00
..
acl.c bcachefs: iter/update/trigger/str_hash flag cleanup 2024-05-08 17:29:18 -04:00
acl.h
alloc_background.c bcachefs: add check for missing fragmentation in check_alloc_to_lru_ref() 2024-06-29 18:35:18 -04:00
alloc_background.h bcachefs: Discard, invalidate workers are now per device 2024-06-25 18:47:55 -04:00
alloc_background_format.h bcachefs: alloc_background_format.h 2024-01-21 13:27:10 -05:00
alloc_foreground.c bcachefs: Add missing printbuf_tabstops_reset() calls 2024-06-29 18:14:18 -04:00
alloc_foreground.h bcachefs: ob_dev() 2024-05-08 17:29:23 -04:00
alloc_types.h bcachefs: Allocator prefers not to expand mi.btree_allocated bitmap 2024-05-08 17:29:24 -04:00
backpointers.c bcachefs: Add missing bch2_trans_begin() 2024-07-10 09:53:39 -04:00
backpointers.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
bbpos.h
bbpos_types.h bcachefs: Pin btree cache in ram for random access in fsck 2024-03-13 21:22:24 -04:00
bcachefs.h bcachefs: Discard, invalidate workers are now per device 2024-06-25 18:47:55 -04:00
bcachefs_format.h bcachefs: Fix safe errors by default 2024-06-20 09:13:09 -04:00
bcachefs_ioctl.h bcachefs: Replace zero-length array with flex-array member and use __counted_by 2024-01-01 11:47:41 -05:00
bkey.c bcachefs: Fix shift greater than integer size 2024-06-28 19:42:22 -04:00
bkey.h bcachefs: bch2_btree_write_buffer_maybe_flush() 2024-06-29 18:34:52 -04:00
bkey_buf.h
bkey_cmp.h
bkey_methods.c bcachefs: Fix array-index-out-of-bounds 2024-06-19 18:27:23 -04:00
bkey_methods.h bcachefs: Fix array-index-out-of-bounds 2024-06-19 18:27:23 -04:00
bkey_sort.c bcachefs: Fix needs_whiteout BUG_ON() in bkey_sort() 2024-05-08 14:56:09 -04:00
bkey_sort.h bcachefs: Fix needs_whiteout BUG_ON() in bkey_sort() 2024-05-08 14:56:09 -04:00
bkey_types.h bcachefs: Split out bkey_types.h 2024-03-13 21:22:26 -04:00
bset.c bcachefs: for_each_bset() declares loop iter 2024-05-09 16:23:34 -04:00
bset.h bcachefs: for_each_bset() declares loop iter 2024-05-09 16:23:34 -04:00
btree_cache.c bcachefs: Enable automatic shrinking for rhashtables 2024-06-10 13:17:16 -04:00
btree_cache.h bcachefs: add counters for failed shrinker reclaim 2024-05-09 16:24:29 -04:00
btree_gc.c bcachefs: bch2_gc_btree() should not use btree_root_lock 2024-07-11 20:10:55 -04:00
btree_gc.h bcachefs: btree_gc can now handle unknown btrees 2024-05-28 11:29:26 -04:00
btree_gc_types.h bcachefs: btree_gc can now handle unknown btrees 2024-05-28 11:29:26 -04:00
btree_io.c bcachefs: Split out btree_write_submit_wq 2024-06-10 13:17:15 -04:00
btree_io.h bcachefs: for_each_bset() declares loop iter 2024-05-09 16:23:34 -04:00
btree_iter.c bcachefs: Set PF_MEMALLOC_NOFS when trans->locked 2024-07-11 20:10:55 -04:00
btree_iter.h bcachefs: Fix missing parens in drop_locks_do() 2024-05-20 05:37:26 -04:00
btree_journal_iter.c bcachefs: bch2_journal_keys_dump() 2024-05-08 17:29:17 -04:00
btree_journal_iter.h bcachefs: bch2_journal_keys_dump() 2024-05-08 17:29:17 -04:00
btree_key_cache.c bcachefs: Leave a buffer in the btree key cache to avoid lock thrashing 2024-06-10 13:17:16 -04:00
btree_key_cache.h bcachefs; kill bch2_btree_key_cache_flush() 2024-01-01 11:47:41 -05:00
btree_key_cache_types.h bcachefs: Btree key cache instrumentation 2024-05-08 17:29:20 -04:00
btree_locking.c bcachefs: Set PF_MEMALLOC_NOFS when trans->locked 2024-07-11 20:10:55 -04:00
btree_locking.h bcachefs: Set PF_MEMALLOC_NOFS when trans->locked 2024-07-11 20:10:55 -04:00
btree_node_scan.c bcachefs: Fix incorrect error handling found_btree_node_is_readable() 2024-06-10 13:17:15 -04:00
btree_node_scan.h bcachefs: Repair pass for scanning for btree nodes 2024-04-03 14:44:18 -04:00
btree_node_scan_types.h bcachefs: btree node scan now fills in sectors_written 2024-04-28 21:34:29 -04:00
btree_trans_commit.c bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
btree_types.h bcachefs: Set PF_MEMALLOC_NOFS when trans->locked 2024-07-11 20:10:55 -04:00
btree_update.c bcachefs: x-macroize journal flags enums 2024-05-08 17:29:22 -04:00
btree_update.h bcachefs: bch2_trans_commit_flags_to_text() 2024-05-08 17:29:19 -04:00
btree_update_interior.c bcachefs: for_each_bset() declares loop iter 2024-05-09 16:23:34 -04:00
btree_update_interior.h bcachefs: bch2_btree_root_alloc_fake_trans() 2024-05-08 17:29:19 -04:00
btree_write_buffer.c bcachefs: bch2_btree_write_buffer_maybe_flush() 2024-06-29 18:34:52 -04:00
btree_write_buffer.h bcachefs: bch2_btree_write_buffer_maybe_flush() 2024-06-29 18:34:52 -04:00
btree_write_buffer_types.h bcachefs: Inline btree write buffer sort 2024-01-01 11:47:41 -05:00
buckets.c bcachefs: Fix RCU splat 2024-07-10 12:46:22 -04:00
buckets.h bcachefs: Fix RCU splat 2024-07-10 12:46:22 -04:00
buckets_types.h bcachefs: Replace bucket_valid() asserts in bucket lookup with proper checks 2024-06-10 13:17:16 -04:00
buckets_waiting_for_journal.c
buckets_waiting_for_journal.h
buckets_waiting_for_journal_types.h
chardev.c bcachefs: Fix freeing of error pointers 2024-06-22 17:22:24 -04:00
chardev.h
checksum.c bcachefs: Fix stack oob in __bch2_encrypt_bio() 2024-05-22 19:01:17 -04:00
checksum.h bcachefs: Standardize helpers for printing enum strs with bounds checks 2024-04-13 22:48:17 -04:00
clock.c bcachefs: io clock: run timer fns under clock lock 2024-07-01 22:56:28 -04:00
clock.h
clock_types.h
compress.c bcachefs: kill kvpmalloc() 2024-03-13 18:39:12 -04:00
compress.h bcachefs: Standardize helpers for printing enum strs with bounds checks 2024-04-13 22:48:17 -04:00
darray.c bcachefs: DARRAY_PREALLOCATED() 2024-01-01 11:46:52 -05:00
darray.h bcachefs: Convert split_devs() to darray 2024-01-01 11:47:43 -05:00
data_update.c bcachefs: Warn on attempting a move with no replicas 2024-07-10 09:53:39 -04:00
data_update.h bcachefs: bch2_data_update_to_text() 2024-07-10 09:53:39 -04:00
debug.c bcachefs: Fix loop restart in bch2_btree_transactions_read() 2024-06-28 21:08:48 -04:00
debug.h
dirent.c bcachefs: Fix unsafety in bch2_dirent_name_bytes() 2024-05-22 19:14:36 -04:00
dirent.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
dirent_format.h bcachefs: dirent_format.h 2024-01-21 13:27:10 -05:00
disk_groups.c bcachefs: Plumb bch_validate_flags to sb_field_ops.validate() 2024-05-09 16:23:36 -04:00
disk_groups.h
disk_groups_format.h bcachefs: Split out disk_groups_format.h 2024-05-28 17:32:03 -04:00
disk_groups_types.h
ec.c bcachefs: Check for invalid bucket from bucket_gen(), gc_bucket() 2024-06-10 13:17:16 -04:00
ec.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
ec_format.h bcachefs: ec_format.h 2024-01-21 13:27:11 -05:00
ec_types.h bcachefs: Rename bch_replicas_entry -> bch_replicas_entry_v1 2024-01-01 11:47:38 -05:00
errcode.c bcachefs: Errcode tracepoint, documentation 2024-03-13 21:22:25 -04:00
errcode.h bcachefs: Replace bare EEXIST with private error codes 2024-06-21 10:17:07 -04:00
error.c bcachefs: Fix safe errors by default 2024-06-20 09:13:09 -04:00
error.h bcachefs: Fix safe errors by default 2024-06-20 09:13:09 -04:00
extent_update.c bcachefs: iter/update/trigger/str_hash flag cleanup 2024-05-08 17:29:18 -04:00
extent_update.h
extents.c bcachefs: Check for invalid bucket from bucket_gen(), gc_bucket() 2024-06-10 13:17:16 -04:00
extents.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
extents_format.h bcachefs: reflink_format.h 2024-01-21 13:27:11 -05:00
extents_types.h
eytzinger.c bcachefs: Optimize eytzinger0_sort() with bottom-up heapsort 2024-05-08 17:29:18 -04:00
eytzinger.h bcachefs: Fix undefined behaviour in eytzinger1_first() 2024-07-10 09:53:39 -04:00
fifo.h bcachefs: kill kvpmalloc() 2024-03-13 18:39:12 -04:00
fs-common.c bcachefs: Fix error path of bch2_link_trans() 2024-05-08 17:29:21 -04:00
fs-common.h
fs-io-buffered.c bcachefs: Use copy_folio_from_iter_atomic() 2024-05-26 22:30:09 -04:00
fs-io-buffered.h
fs-io-direct.c bcachefs: Fix failure to return error on misaligned dio write 2024-05-29 16:40:30 -04:00
fs-io-direct.h
fs-io-pagecache.c bcachefs: iter/update/trigger/str_hash flag cleanup 2024-05-08 17:29:18 -04:00
fs-io-pagecache.h bcachefs: fix bch_folio_sector padding 2024-03-13 21:22:26 -04:00
fs-io.c bcachefs: fsync() should not return -EROFS 2024-05-09 16:23:36 -04:00
fs-io.h
fs-ioctl.c bcachefs: Replace bare EEXIST with private error codes 2024-06-21 10:17:07 -04:00
fs-ioctl.h bcachefs: x-macro-ify inode flags enum 2023-11-05 13:12:18 -05:00
fs.c vfs-6.11.inode 2024-07-15 11:39:44 -07:00
fs.h bcachefs: kill INODE_LOCK, use lock_two_nondirectories() 2024-01-01 11:47:36 -05:00
fsck.c bcachefs: fix stack frame size in fsck.c 2024-06-10 13:17:16 -04:00
fsck.h bcachefs: bch2_check_subvolume_structure() 2024-03-13 21:22:25 -04:00
inode.c bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
inode.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
inode_format.h bcachefs: inode_format.h 2024-01-21 13:27:10 -05:00
io_misc.c bcachefs; Use trans_unlock_long() when waiting on allocator 2024-07-11 20:10:55 -04:00
io_misc.h
io_read.c bcachefs: Fix bch2_read_retry_nodecode() 2024-06-28 20:47:04 -04:00
io_read.h
io_write.c bcachefs: Check for invalid bucket from bucket_gen(), gc_bucket() 2024-06-10 13:17:16 -04:00
io_write.h closures: CLOSURE_CALLBACK() to fix type punning 2023-11-24 00:29:58 -05:00
io_write_types.h bcachefs: Move nocow unlock to bch2_write_endio() 2024-05-08 17:29:24 -04:00
journal.c bcachefs: Add missing printbuf_tabstops_reset() calls 2024-06-29 18:14:18 -04:00
journal.h bcachefs: Don't use the new_fs() bucket alloc path on an initialized fs 2024-06-28 19:47:31 -04:00
journal_io.c bcachefs: Fix missing error check in journal_entry_btree_keys_validate() 2024-07-10 09:53:39 -04:00
journal_io.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
journal_reclaim.c bcachefs: x-macroize journal flags enums 2024-05-08 17:29:22 -04:00
journal_reclaim.h bcachefs: btree write buffer now slurps keys from journal 2024-01-01 11:47:41 -05:00
journal_sb.c bcachefs: Plumb bch_validate_flags to sb_field_ops.validate() 2024-05-09 16:23:36 -04:00
journal_sb.h
journal_seq_blacklist.c bcachefs: Fix shift-out-of-bounds in bch2_blacklist_entries_gc 2024-06-25 17:53:31 -04:00
journal_seq_blacklist.h bcachefs: journal seq blacklist gc no longer has to walk btree 2024-05-08 17:29:20 -04:00
journal_seq_blacklist_format.h bcachefs: Split out journal_seq_blacklist_format.h 2024-05-28 17:32:03 -04:00
journal_types.h bcachefs: x-macroize journal flags enums 2024-05-08 17:29:22 -04:00
Kconfig bcachefs: optimize __bch2_trans_get(), kill DEBUG_TRANSACTIONS 2024-01-01 11:47:44 -05:00
keylist.c bcachefs: for_each_keylist_key() declares loop iter 2024-01-01 11:47:43 -05:00
keylist.h bcachefs: for_each_keylist_key() declares loop iter 2024-01-01 11:47:43 -05:00
keylist_types.h
logged_ops.c bcachefs: iter/update/trigger/str_hash flag cleanup 2024-05-08 17:29:18 -04:00
logged_ops.h
logged_ops_format.h bcachefs: logged_ops_format.h 2024-01-21 13:27:11 -05:00
lru.c bcachefs: add check for missing fragmentation in check_alloc_to_lru_ref() 2024-06-29 18:35:18 -04:00
lru.h bcachefs: add check for missing fragmentation in check_alloc_to_lru_ref() 2024-06-29 18:35:18 -04:00
Makefile bcachefs: Repair pass for scanning for btree nodes 2024-04-03 14:44:18 -04:00
mean_and_variance.c bcachefs: mean_and_variance: put struct mean_and_variance_weighted on a diet 2024-03-13 21:37:58 -04:00
mean_and_variance.h bcachefs: mean_and_variance: put struct mean_and_variance_weighted on a diet 2024-03-13 21:37:58 -04:00
mean_and_variance_test.c bcachefs: add missing MODULE_DESCRIPTION() 2024-05-28 11:29:26 -04:00
migrate.c bcachefs: iter/update/trigger/str_hash flag cleanup 2024-05-08 17:29:18 -04:00
migrate.h
move.c bcachefs: bch2_data_update_to_text() 2024-07-10 09:53:39 -04:00
move.h bcachefs: rebalance should wakeup on shutdown if disabled 2024-01-01 11:47:39 -05:00
move_types.h
movinggc.c bcachefs: Enable automatic shrinking for rhashtables 2024-06-10 13:17:16 -04:00
movinggc.h
nocow_locking.c
nocow_locking.h
nocow_locking_types.h
opts.c bcachefs: Standardize helpers for printing enum strs with bounds checks 2024-04-13 22:48:17 -04:00
opts.h bcachefs: Fix safe errors by default 2024-06-20 09:13:09 -04:00
printbuf.c bcachefs: Fix shutdown ordering 2024-05-22 19:54:03 -04:00
printbuf.h bcachefs: printbuf improvements 2024-05-08 17:29:17 -04:00
quota.c bcachefs: Plumb bch_validate_flags to sb_field_ops.validate() 2024-05-09 16:23:36 -04:00
quota.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
quota_format.h bcachefs; quota_format.h 2024-01-21 13:27:10 -05:00
quota_types.h
rebalance.c bcachefs: bch2_trans_unlock() must always be followed by relock() or begin() 2024-05-08 17:29:19 -04:00
rebalance.h
rebalance_types.h
recovery.c bcachefs: Fix a UAF after write_super() 2024-06-21 10:17:07 -04:00
recovery.h bcachefs: Flag btrees with missing data 2024-04-03 14:46:51 -04:00
recovery_passes.c bcachefs: Sync journal when we complete a recovery pass 2024-05-08 17:29:20 -04:00
recovery_passes.h bcachefs: bch2_run_explicit_recovery_pass_persistent() 2024-03-31 20:36:12 -04:00
recovery_passes_types.h bcachefs: Reconstruct missing snapshot nodes 2024-04-03 14:46:51 -04:00
reflink.c bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
reflink.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
reflink_format.h bcachefs: reflink_format.h 2024-01-21 13:27:11 -05:00
replicas.c bcachefs: Fix bogus verify_replicas_entry() assert 2024-05-22 19:01:17 -04:00
replicas.h bcachefs: Rename bch_replicas_entry -> bch_replicas_entry_v1 2024-01-01 11:47:38 -05:00
replicas_format.h bcachefs: Split out replicas_format.h 2024-05-28 17:32:03 -04:00
replicas_types.h bcachefs: Replace zero-length arrays with flexible-array members 2024-01-01 11:47:39 -05:00
sb-clean.c bcachefs: Plumb bch_validate_flags to sb_field_ops.validate() 2024-05-09 16:23:36 -04:00
sb-clean.h
sb-counters.c bcachefs: Plumb bch_validate_flags to sb_field_ops.validate() 2024-05-09 16:23:36 -04:00
sb-counters.h bcachefs: counters.c -> sb-counters.c 2024-01-21 13:27:10 -05:00
sb-counters_format.h bcachefs: sb-counters_format.h 2024-01-21 13:27:10 -05:00
sb-downgrade.c bcachefs: Fix bch2_sb_downgrade_update() 2024-06-19 18:27:24 -04:00
sb-downgrade.h bcachefs: Upgrades now specify errors to fix, like downgrades 2024-01-05 23:24:20 -05:00
sb-downgrade_format.h bcachefs: split out sb-downgrade_format.h 2024-05-28 17:32:03 -04:00
sb-errors.c bcachefs: slab-use-after-free Read in bch2_sb_errors_from_cpu 2024-06-25 17:51:26 -04:00
sb-errors.h bcachefs: bch_sb.recovery_passes_required 2024-01-01 11:47:07 -05:00
sb-errors_format.h bcachefs: Repair fragmentation_lru in alloc_write_key() 2024-06-29 18:37:13 -04:00
sb-errors_types.h bcachefs: Split out sb-errors_format.h 2024-05-28 17:33:45 -04:00
sb-members.c bcachefs: Plumb bch_validate_flags to sb_field_ops.validate() 2024-05-09 16:23:36 -04:00
sb-members.h bcachefs: kill bch2_dev_bkey_exists() in bch2_check_fix_ptrs() 2024-05-09 16:23:36 -04:00
sb-members_format.h bcachefs: split out sb-members_format.h 2024-05-28 17:32:03 -04:00
sb-members_types.h bcachefs: bucket_valid() 2024-05-08 17:29:19 -04:00
seqmutex.h bcachefs: fix seqmutex_relock() 2024-06-23 00:57:21 -04:00
siphash.c
siphash.h
six.c bcachefs: six locks: Simplify optimistic spinning 2024-01-01 11:47:38 -05:00
six.h bcachefs: six lock: fix typos 2024-01-01 11:47:40 -05:00
snapshot.c bcachefs: Fix kmalloc bug in __snapshot_t_mut 2024-06-25 20:51:14 -04:00
snapshot.h bcachefs: Run check_key_has_snapshot in snapshot_delete_keys() 2024-05-28 11:29:26 -04:00
snapshot_format.h bcachefs: snapshot_format.h 2024-01-21 13:27:10 -05:00
str_hash.h bcachefs: Replace bare EEXIST with private error codes 2024-06-21 10:17:07 -04:00
subvolume.c bcachefs: Check for subvolues with bogus snapshot/inode fields 2024-05-20 05:37:26 -04:00
subvolume.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
subvolume_format.h bcachefs: bch_subvolume::fs_path_parent 2024-03-13 21:22:24 -04:00
subvolume_types.h bcachefs: Move snapshot table size to struct snapshot_table 2024-03-31 20:36:11 -04:00
super-io.c bcachefs: Fix shift overflow in read_one_super() 2024-06-19 18:27:23 -04:00
super-io.h bcachefs: Plumb bch_validate_flags to sb_field_ops.validate() 2024-05-09 16:23:36 -04:00
super.c bcachefs: Don't use the new_fs() bucket alloc path on an initialized fs 2024-06-28 19:47:31 -04:00
super.h bcachefs: convert bch_fs_flags to x-macro 2024-01-01 11:47:38 -05:00
super_types.h bcachefs: bucket_valid() 2024-05-08 17:29:19 -04:00
sysfs.c bcachefs: add counters for failed shrinker reclaim 2024-05-09 16:24:29 -04:00
sysfs.h
tests.c bcachefs: iter/update/trigger/str_hash flag cleanup 2024-05-08 17:29:18 -04:00
tests.h
thread_with_file.c bcachefs: Fix null ptr deref in twf from BCH_IOCTL_FSCK_OFFLINE 2024-04-16 19:11:49 -04:00
thread_with_file.h bcachefs: Fix null ptr deref in twf from BCH_IOCTL_FSCK_OFFLINE 2024-04-16 19:11:49 -04:00
thread_with_file_types.h bcachefs: thread_with_stdio: convert to darray 2024-03-13 18:39:13 -04:00
time_stats.c bcachefs: time_stats: split stats-with-quantiles into a separate structure 2024-03-13 21:38:01 -04:00
time_stats.h bcachefs: time_stats: shrink time_stat_buffer for better alignment 2024-03-13 21:38:03 -04:00
trace.c
trace.h tracing/treewide: Remove second parameter of __assign_str() 2024-05-22 20:14:47 -04:00
two_state_shared_lock.c
two_state_shared_lock.h
util.c bcachefs: fix scheduling while atomic in break_cycle() 2024-07-10 12:59:28 -04:00
util.h bcachefs: fix scheduling while atomic in break_cycle() 2024-07-10 12:59:28 -04:00
varint.c
varint.h
vstructs.h bcachefs: vstruct_for_each() now declares loop iter 2024-01-01 11:47:42 -05:00
xattr.c bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
xattr.h bcachefs: s/bkey_invalid_flags/bch_validate_flags 2024-05-09 16:23:36 -04:00
xattr_format.h bcachefs: xattr_format.h 2024-01-21 13:27:10 -05:00