public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Chandan Babu R <chandan.babu@oracle.com>
To: djwong@kernel.org
Cc: chandan.babu@oracle.com, linux-xfs@vger.kernel.org,
	amir73il@gmail.com, leah.rumancik@gmail.com
Subject: [PATCH 5.4 CANDIDATE 00/17] xfs stable candidate patches for 5.4.y (from v5.11 & v5.12)
Date: Tue, 11 Apr 2023 09:04:57 +0530	[thread overview]
Message-ID: <20230411033514.58024-1-chandan.babu@oracle.com> (raw)

Hi Darrick,

This 5.4.y backport series contains fixes from v5.11 & v5.12 release.

This patchset has been tested by executing fstests (via kdevops) using
the following XFS configurations,

1. No CRC (with 512 and 4k block size).
2. Reflink/Rmapbt (1k and 4k block size).
3. Reflink without Rmapbt.
4. External log device.

The following is the list of commits along with corresponding
dependent commits.

1. xfs: fix up non-directory creation in SGID directories
   1. xfs: show the proper user quota options
   2. xfs: merge the projid fields in struct xfs_icdinode
   3. xfs: ensure that the inode uid/gid match values match the icdinode ones
   4. xfs: remove the icdinode di_uid/di_gid members
   5. xfs: remove the kuid/kgid conversion wrappers
   6. xfs: add a new xfs_sb_version_has_v3inode helper
   7. xfs: only check the superblock version for dinode size calculation
   8. xfs: simplify di_flags2 inheritance in xfs_ialloc
   9. xfs: simplify a check in xfs_ioctl_setattr_check_cowextsize
   10. xfs: remove the di_version field from struct icdinode
2. xfs: set inode size after creating symlink
3. xfs: shut down the filesystem if we screw up quota reservation
   1. xfs: report corruption only as a regular error
4. xfs: consider shutdown in bmapbt cursor delete assert
5. xfs: don't reuse busy extents on extent trim
6. xfs: force log and push AIL to clear pinned inodes when aborting mount

Brian Foster (2):
  xfs: consider shutdown in bmapbt cursor delete assert
  xfs: don't reuse busy extents on extent trim

Christoph Hellwig (10):
  xfs: merge the projid fields in struct xfs_icdinode
  xfs: ensure that the inode uid/gid match values match the icdinode
    ones
  xfs: remove the icdinode di_uid/di_gid members
  xfs: remove the kuid/kgid conversion wrappers
  xfs: add a new xfs_sb_version_has_v3inode helper
  xfs: only check the superblock version for dinode size calculation
  xfs: simplify di_flags2 inheritance in xfs_ialloc
  xfs: simplify a check in xfs_ioctl_setattr_check_cowextsize
  xfs: remove the di_version field from struct icdinode
  xfs: fix up non-directory creation in SGID directories

Darrick J. Wong (3):
  xfs: report corruption only as a regular error
  xfs: shut down the filesystem if we screw up quota reservation
  xfs: force log and push AIL to clear pinned inodes when aborting mount

Jeffrey Mitchell (1):
  xfs: set inode size after creating symlink

Kaixu Xia (1):
  xfs: show the proper user quota options

 fs/xfs/libxfs/xfs_attr_leaf.c  |  5 +-
 fs/xfs/libxfs/xfs_bmap.c       | 10 ++--
 fs/xfs/libxfs/xfs_btree.c      | 30 +++++-------
 fs/xfs/libxfs/xfs_format.h     | 33 ++++++++++---
 fs/xfs/libxfs/xfs_ialloc.c     |  6 +--
 fs/xfs/libxfs/xfs_inode_buf.c  | 54 +++++++-------------
 fs/xfs/libxfs/xfs_inode_buf.h  |  8 +--
 fs/xfs/libxfs/xfs_inode_fork.c |  2 +-
 fs/xfs/libxfs/xfs_inode_fork.h |  9 +---
 fs/xfs/libxfs/xfs_log_format.h | 10 ++--
 fs/xfs/libxfs/xfs_trans_resv.c |  2 +-
 fs/xfs/xfs_acl.c               | 12 +++--
 fs/xfs/xfs_bmap_util.c         | 16 +++---
 fs/xfs/xfs_buf_item.c          |  2 +-
 fs/xfs/xfs_dquot.c             |  6 +--
 fs/xfs/xfs_error.c             |  2 +-
 fs/xfs/xfs_extent_busy.c       | 14 ------
 fs/xfs/xfs_icache.c            |  8 ++-
 fs/xfs/xfs_inode.c             | 61 ++++++++---------------
 fs/xfs/xfs_inode.h             | 21 +-------
 fs/xfs/xfs_inode_item.c        | 20 ++++----
 fs/xfs/xfs_ioctl.c             | 22 ++++-----
 fs/xfs/xfs_iops.c              | 11 +----
 fs/xfs/xfs_itable.c            |  8 +--
 fs/xfs/xfs_linux.h             | 32 +++---------
 fs/xfs/xfs_log_recover.c       |  6 +--
 fs/xfs/xfs_mount.c             | 90 +++++++++++++++++-----------------
 fs/xfs/xfs_qm.c                | 43 +++++++++-------
 fs/xfs/xfs_qm_bhv.c            |  2 +-
 fs/xfs/xfs_quota.h             |  4 +-
 fs/xfs/xfs_super.c             | 10 ++--
 fs/xfs/xfs_symlink.c           |  7 ++-
 fs/xfs/xfs_trans_dquot.c       | 16 ++++--
 33 files changed, 248 insertions(+), 334 deletions(-)

-- 
2.39.1


             reply	other threads:[~2023-04-11  3:35 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-11  3:34 Chandan Babu R [this message]
2023-04-11  3:34 ` [PATCH 5.4 CANDIDATE 01/17] xfs: show the proper user quota options Chandan Babu R
2023-04-11  3:34 ` [PATCH 5.4 CANDIDATE 02/17] xfs: merge the projid fields in struct xfs_icdinode Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 03/17] xfs: ensure that the inode uid/gid match values match the icdinode ones Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 04/17] xfs: remove the icdinode di_uid/di_gid members Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 05/17] xfs: remove the kuid/kgid conversion wrappers Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 06/17] xfs: add a new xfs_sb_version_has_v3inode helper Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 07/17] xfs: only check the superblock version for dinode size calculation Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 08/17] xfs: simplify di_flags2 inheritance in xfs_ialloc Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 09/17] xfs: simplify a check in xfs_ioctl_setattr_check_cowextsize Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 10/17] xfs: remove the di_version field from struct icdinode Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 11/17] xfs: fix up non-directory creation in SGID directories Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 12/17] xfs: set inode size after creating symlink Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 13/17] xfs: report corruption only as a regular error Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 14/17] xfs: shut down the filesystem if we screw up quota reservation Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 15/17] xfs: consider shutdown in bmapbt cursor delete assert Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 16/17] xfs: don't reuse busy extents on extent trim Chandan Babu R
2023-04-11  3:35 ` [PATCH 5.4 CANDIDATE 17/17] xfs: force log and push AIL to clear pinned inodes when aborting mount Chandan Babu R
2023-04-11 18:15 ` [PATCH 5.4 CANDIDATE 00/17] xfs stable candidate patches for 5.4.y (from v5.11 & v5.12) Darrick J. Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230411033514.58024-1-chandan.babu@oracle.com \
    --to=chandan.babu@oracle.com \
    --cc=amir73il@gmail.com \
    --cc=djwong@kernel.org \
    --cc=leah.rumancik@gmail.com \
    --cc=linux-xfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox