From: "Nirjhar Roy (IBM)" <nirjhar.roy.lists@gmail.com>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: Carlos Maiolino <cem@kernel.org>,
hch@infradead.org, david@fromorbit.com, zlang@kernel.org,
linux-xfs@vger.kernel.org, fstests@vger.kernel.org,
ritesh.list@gmail.com, ojaswin@linux.ibm.com,
hsiangkao@linux.alibaba.com
Subject: Re: [PATCH v1 0/7] Add multi rtgroup grow and shrink tests
Date: Fri, 20 Feb 2026 23:42:06 +0530 [thread overview]
Message-ID: <9f4acd07-b8dd-45ff-b40a-4d135be3155d@gmail.com> (raw)
In-Reply-To: <20260220161015.GV6490@frogsfrogsfrogs>
On 2/20/26 21:40, Darrick J. Wong wrote:
> On Fri, Feb 20, 2026 at 04:54:57PM +0530, Nirjhar Roy (IBM) wrote:
>> On Thu, 2026-02-19 at 07:49 -0800, Darrick J. Wong wrote:
>>> On Thu, Feb 19, 2026 at 03:55:02PM +0100, Carlos Maiolino wrote:
>>>> On Thu, Feb 19, 2026 at 08:10:50PM +0530, Nirjhar Roy (IBM) wrote:
>>>>> On 2/19/26 18:25, Carlos Maiolino wrote:
>>>>>> On Thu, Feb 19, 2026 at 06:10:48AM +0000, Nirjhar Roy (IBM) wrote:
>>>>>>> From: "Nirjhar Roy (IBM)" <nirjhar.roy.lists@gmail.com>
>>>>>>>
>>>>>>> This series adds several tests to validate the XFS realtime fs growth and
>>>>>>> shrink functionality.
>>>>>>> It begins with the introduction of some preconditions and helper
>>>>>>> functions, then some tests that validate realtime group growth, followed
>>>>>>> by realtime group shrink/removal tests and ends with a test that
>>>>>>> validates both growth and shrink functionality together.
>>>>>>> Individual patches have the details.
>>>>>> Please don't send new versions in reply to the old one, it just make
>>>>>> hard to pull patches from the list. b4 usually doesn't handle it
>>>>>> gracefully.
>>>>> This entire series is new i.e, the kernel changes, fstests and the xfsprogs
>>>>> changes. Can you please explain as to what do you mean by the old version?
>>>>> Which old are version are you referring to?
>>>> Sure, I said 'old version' but the same applies to sending them in reply
>>>> to other series/patches.
>>>>
>>>> This series was sent:
>>>>
>>>> In-Reply-To: <20260219055737.769860-1-nirjhar@linux.ibm.com>
>>>>
>>>> which is:
>>>>
>>>> Subject: xfs: Add support for multi rtgroup shrink+removal
>>>>
>>>>
>>>> In better wording, please don't nest series under other series/patches,
>>>> or things like that. It works in some point cases, but in general it
>>>> just makes my life difficult to pull them from the list.
>>> Pull requests, perhaps?
>>>
>>> Or is the problem here that you're using b4/korgalore/etc to download
>>> patchmails so that you can read them outside of a MUA?
>>>
>>> ((Again, I'll express a wish that people push their branches to
>>> git.kernel.org and send a link in the cover letter; that's much easier
>>> for me to pull and examine than reading emails or prying individual
>>> maybe-MTA-corrupted emails out of mutt into applyable form...))
>> Okay, I will keep this in mind. I was under the impression that only
>> maintainers can have their private branches in git.kernel.org. I will
> Anyone with a kernel.org account can push git repos.
https://korg.docs.kernel.org/accounts.html
It says the following:
Getting a kernel.org account
Kernel.org accounts are reserved for Linux kernel maintainers or
high-profile developers. If you do not fall under one of these two
categories, it’s unlikely that an account will be issued to you.
In that case, should I use GitHub?
>
> github kinda works too, though I am a Bad Microsoft Citizen(tm) so they
> arbitrarily claim on first access that I'm over a rate limit that they
> do not specify. Granted that makes them a Bad Provider(tm) but I doubt
> they hear me above all the AI noise.
Okay.
>
>> check on how to create a branch in git.kernel.org. For now, is it okay
>> to just send the branch link as a separate email reply and you can
>> take a look - next revision onwards I will have the link in the cover
>> letter itself?
> Sounds fine to me.
Thank you.
--NR
>
> --D
>
>> --NR
>>> --D
>>>
>>>>> --NR
>>>>>
>>>>>>> Nirjhar Roy (IBM) (7):
>>>>>>> xfs: Introduce _require_realtime_xfs_{shrink,grow} pre-condition
>>>>>>> xfs: Introduce helpers to count the number of bitmap and summary
>>>>>>> inodes
>>>>>>> xfs: Add realtime group grow tests
>>>>>>> xfs: Add multi rt group grow + shutdown + recovery tests
>>>>>>> xfs: Add realtime group shrink tests
>>>>>>> xfs: Add multi rt group shrink + shutdown + recovery tests
>>>>>>> xfs: Add parallel back to back grow/shrink tests
>>>>>>>
>>>>>>> common/xfs | 65 +++++++++++++++-
>>>>>>> tests/xfs/333 | 95 +++++++++++++++++++++++
>>>>>>> tests/xfs/333.out | 5 ++
>>>>>>> tests/xfs/539 | 190 ++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>> tests/xfs/539.out | 19 +++++
>>>>>>> tests/xfs/611 | 97 +++++++++++++++++++++++
>>>>>>> tests/xfs/611.out | 5 ++
>>>>>>> tests/xfs/654 | 90 ++++++++++++++++++++++
>>>>>>> tests/xfs/654.out | 5 ++
>>>>>>> tests/xfs/655 | 151 ++++++++++++++++++++++++++++++++++++
>>>>>>> tests/xfs/655.out | 13 ++++
>>>>>>> 11 files changed, 734 insertions(+), 1 deletion(-)
>>>>>>> create mode 100755 tests/xfs/333
>>>>>>> create mode 100644 tests/xfs/333.out
>>>>>>> create mode 100755 tests/xfs/539
>>>>>>> create mode 100644 tests/xfs/539.out
>>>>>>> create mode 100755 tests/xfs/611
>>>>>>> create mode 100644 tests/xfs/611.out
>>>>>>> create mode 100755 tests/xfs/654
>>>>>>> create mode 100644 tests/xfs/654.out
>>>>>>> create mode 100755 tests/xfs/655
>>>>>>> create mode 100644 tests/xfs/655.out
>>>>>>>
>>>>>>> --
>>>>>>> 2.34.1
>>>>>>>
>>>>>>>
>>>>> --
>>>>> Nirjhar Roy
>>>>> Linux Kernel Developer
>>>>> IBM, Bangalore
>>>>>
>>
--
Nirjhar Roy
Linux Kernel Developer
IBM, Bangalore
next prev parent reply other threads:[~2026-02-20 18:12 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-19 5:57 xfs: Add support for multi rtgroup shrink+removal Nirjhar Roy (IBM)
2026-02-19 6:03 ` [RFC v1 0/4] xfs: Add support to shrink multiple empty rtgroups Nirjhar Roy (IBM)
2026-02-19 6:03 ` [RFC v1 1/4] xfs: Re-introduce xg_active_wq field in struct xfs_group Nirjhar Roy (IBM)
2026-02-19 6:13 ` Christoph Hellwig
2026-02-19 6:03 ` [RFC v1 2/4] xfs: Introduce xfs_rtginodes_ensure_all() Nirjhar Roy (IBM)
2026-02-19 6:15 ` Christoph Hellwig
2026-02-25 5:18 ` Nirjhar Roy (IBM)
2026-02-19 6:03 ` [RFC v1 3/4] xfs: Add a new state for shrinking Nirjhar Roy (IBM)
2026-02-19 6:03 ` [RFC v1 4/4] xfs: Add support to shrink multiple empty realtime groups Nirjhar Roy (IBM)
2026-02-19 6:23 ` Christoph Hellwig
2026-02-25 5:17 ` Nirjhar Roy (IBM)
2026-02-25 14:24 ` Christoph Hellwig
2026-02-26 12:59 ` Nirjhar Roy (IBM)
2026-02-23 11:29 ` [RFC v1 0/4] xfs: Add support to shrink multiple empty rtgroups Nirjhar Roy (IBM)
2026-03-18 14:43 ` Nirjhar Roy (IBM)
2026-03-18 15:20 ` Christoph Hellwig
2026-02-19 6:08 ` [PATCH v1] xfs_growfs: Allow shrink of realtime XFS Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 0/7] Add multi rtgroup grow and shrink tests Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 1/7] xfs: Introduce _require_realtime_xfs_{shrink,grow} pre-condition Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 2/7] xfs: Introduce helpers to count the number of bitmap and summary inodes Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 3/7] xfs: Add realtime group grow tests Nirjhar Roy (IBM)
2026-02-19 6:40 ` Christoph Hellwig
2026-02-25 5:24 ` Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 4/7] xfs: Add multi rt group grow + shutdown + recovery tests Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 5/7] xfs: Add realtime group shrink tests Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 6/7] xfs: Add multi rt group shrink + shutdown + recovery tests Nirjhar Roy (IBM)
2026-02-19 6:10 ` [PATCH v1 7/7] xfs: Add parallel back to back grow/shrink tests Nirjhar Roy (IBM)
2026-02-19 12:55 ` [PATCH v1 0/7] Add multi rtgroup grow and shrink tests Carlos Maiolino
2026-02-19 14:40 ` Nirjhar Roy (IBM)
2026-02-19 14:55 ` Carlos Maiolino
2026-02-19 15:49 ` Darrick J. Wong
2026-02-19 16:35 ` Carlos Maiolino
2026-02-20 11:24 ` Nirjhar Roy (IBM)
2026-02-20 16:10 ` Darrick J. Wong
2026-02-20 18:12 ` Nirjhar Roy (IBM) [this message]
2026-02-24 13:04 ` Carlos Maiolino
2026-02-20 11:20 ` Nirjhar Roy (IBM)
2026-02-20 16:15 ` Darrick J. Wong
2026-02-19 14:56 ` Andrey Albershteyn
2026-02-20 14:07 ` Konstantin Ryabitsev
2026-02-24 13:02 ` Carlos Maiolino
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=9f4acd07-b8dd-45ff-b40a-4d135be3155d@gmail.com \
--to=nirjhar.roy.lists@gmail.com \
--cc=cem@kernel.org \
--cc=david@fromorbit.com \
--cc=djwong@kernel.org \
--cc=fstests@vger.kernel.org \
--cc=hch@infradead.org \
--cc=hsiangkao@linux.alibaba.com \
--cc=linux-xfs@vger.kernel.org \
--cc=ojaswin@linux.ibm.com \
--cc=ritesh.list@gmail.com \
--cc=zlang@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