public inbox for linux-btrfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/22] Return variable name unifications
@ 2025-05-30 16:16 David Sterba
  2025-05-30 16:17 ` [PATCH 01/22] btrfs: rename err to ret2 in resolve_indirect_refs() David Sterba
                   ` (22 more replies)
  0 siblings, 23 replies; 25+ messages in thread
From: David Sterba @ 2025-05-30 16:16 UTC (permalink / raw)
  To: linux-btrfs; +Cc: David Sterba

Simple conversions, 'ret' from 'err, or the secondary return value ret2.

David Sterba (22):
  btrfs: rename err to ret2 in resolve_indirect_refs()
  btrfs: rename err to ret2 in read_block_for_search()
  btrfs: rename err to ret2 in search_leaf()
  btrfs: rename err to ret2 in btrfs_search_slot()
  btrfs: rename err to ret2 in btrfs_search_old_slot()
  btrfs: rename err to ret2 in btrfs_setsize()
  btrfs: rename err to ret2 in btrfs_add_link()
  btrfs: rename err to ret2 in btrfs_truncate_inode_items()
  btrfs: rename err to ret in btrfs_try_lock_extent_bits()
  btrfs: rename err to ret in btrfs_lock_extent_bits()
  btrfs: rename err to ret in btrfs_alloc_from_bitmap()
  btrfs: rename err to ret in btrfs_init_inode_security()
  btrfs: rename err to ret in btrfs_setattr()
  btrfs: rename err to ret in btrfs_link()
  btrfs: rename err to ret in btrfs_symlink()
  btrfs: rename err to ret in calc_pct_ratio()
  btrfs: rename err to ret in btrfs_fill_super()
  btrfs: rename err to ret in quota_override_store()
  btrfs: rename err to ret in btrfs_wait_extents()
  btrfs: rename err to ret in btrfs_wait_tree_log_extents()
  btrfs: rename err to ret in btrfs_create_common()
  btrfs: rename err to ret in scrub_submit_extent_sector_read()

 fs/btrfs/backref.c          |  10 +--
 fs/btrfs/ctree.c            |  76 ++++++++++----------
 fs/btrfs/extent-io-tree.c   |  17 +++--
 fs/btrfs/free-space-cache.c |   6 +-
 fs/btrfs/inode-item.c       |  11 ++-
 fs/btrfs/inode.c            | 136 ++++++++++++++++++------------------
 fs/btrfs/scrub.c            |   8 +--
 fs/btrfs/space-info.c       |   6 +-
 fs/btrfs/super.c            |  24 +++----
 fs/btrfs/sysfs.c            |   8 +--
 fs/btrfs/transaction.c      |  20 +++---
 11 files changed, 158 insertions(+), 164 deletions(-)

-- 
2.47.1


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2025-06-06 16:37 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-30 16:16 [PATCH 00/22] Return variable name unifications David Sterba
2025-05-30 16:17 ` [PATCH 01/22] btrfs: rename err to ret2 in resolve_indirect_refs() David Sterba
2025-05-30 16:17 ` [PATCH 02/22] btrfs: rename err to ret2 in read_block_for_search() David Sterba
2025-05-30 16:17 ` [PATCH 03/22] btrfs: rename err to ret2 in search_leaf() David Sterba
2025-05-30 16:17 ` [PATCH 04/22] btrfs: rename err to ret2 in btrfs_search_slot() David Sterba
2025-05-30 16:17 ` [PATCH 05/22] btrfs: rename err to ret2 in btrfs_search_old_slot() David Sterba
2025-05-30 16:17 ` [PATCH 06/22] btrfs: rename err to ret2 in btrfs_setsize() David Sterba
2025-05-30 16:17 ` [PATCH 07/22] btrfs: rename err to ret2 in btrfs_add_link() David Sterba
2025-05-30 16:17 ` [PATCH 08/22] btrfs: rename err to ret2 in btrfs_truncate_inode_items() David Sterba
2025-05-30 16:17 ` [PATCH 09/22] btrfs: rename err to ret in btrfs_try_lock_extent_bits() David Sterba
2025-05-30 16:17 ` [PATCH 10/22] btrfs: rename err to ret in btrfs_lock_extent_bits() David Sterba
2025-05-30 16:18 ` [PATCH 11/22] btrfs: rename err to ret in btrfs_alloc_from_bitmap() David Sterba
2025-05-30 16:18 ` [PATCH 12/22] btrfs: rename err to ret in btrfs_init_inode_security() David Sterba
2025-05-30 16:18 ` [PATCH 13/22] btrfs: rename err to ret in btrfs_setattr() David Sterba
2025-05-30 16:18 ` [PATCH 14/22] btrfs: rename err to ret in btrfs_link() David Sterba
2025-05-30 16:18 ` [PATCH 15/22] btrfs: rename err to ret in btrfs_symlink() David Sterba
2025-05-30 16:18 ` [PATCH 16/22] btrfs: rename err to ret in calc_pct_ratio() David Sterba
2025-05-30 16:18 ` [PATCH 17/22] btrfs: rename err to ret in btrfs_fill_super() David Sterba
2025-05-30 16:18 ` [PATCH 18/22] btrfs: rename err to ret in quota_override_store() David Sterba
2025-05-30 16:18 ` [PATCH 19/22] btrfs: rename err to ret in btrfs_wait_extents() David Sterba
2025-05-30 16:18 ` [PATCH 20/22] btrfs: rename err to ret in btrfs_wait_tree_log_extents() David Sterba
2025-05-30 16:19 ` [PATCH 21/22] btrfs: rename err to ret in btrfs_create_common() David Sterba
2025-05-30 16:19 ` [PATCH 22/22] btrfs: rename err to ret in scrub_submit_extent_sector_read() David Sterba
2025-06-06 11:35 ` [PATCH 00/22] Return variable name unifications anand jain
2025-06-06 16:37   ` David Sterba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox