* [PATCH] common: cleanup scratch_mkfs_sized
@ 2024-12-10 6:54 Christoph Hellwig
2024-12-11 17:44 ` Darrick J. Wong
0 siblings, 1 reply; 2+ messages in thread
From: Christoph Hellwig @ 2024-12-10 6:54 UTC (permalink / raw)
To: zlang; +Cc: djwong, fstests
Move the XFS RT specific code into the file system type switch
statement.
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
common/rc | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/common/rc b/common/rc
index 1b2e4508d767..906905daa92d 100644
--- a/common/rc
+++ b/common/rc
@@ -1152,7 +1152,6 @@ _try_scratch_mkfs_sized()
shift
local def_blksz
local blocksize_opt
- local rt_ops
case $FSTYP in
xfs)
@@ -1202,14 +1201,18 @@ _try_scratch_mkfs_sized()
[ "$fssize" -gt "$devsize" ] && _notrun "Scratch device too small"
fi
- if [ "$FSTYP" = "xfs" ] && [ -b "$SCRATCH_RTDEV" ]; then
- local rtdevsize=`blockdev --getsize64 $SCRATCH_RTDEV`
- [ "$fssize" -gt "$rtdevsize" ] && _notrun "Scratch rt device too small"
- rt_ops="-r size=$fssize"
- fi
-
case $FSTYP in
xfs)
+ local rt_ops
+
+ if [ -b "$SCRATCH_RTDEV" ]; then
+ local rtdevsize=`blockdev --getsize64 $SCRATCH_RTDEV`
+ if [ "$fssize" -gt "$rtdevsize" ]; then
+ _notrun "Scratch rt device too small"
+ fi
+ rt_ops="-r size=$fssize"
+ fi
+
# don't override MKFS_OPTIONS that set a block size.
echo $MKFS_OPTIONS |grep -E -q "b\s*size="
if [ $? -eq 0 ]; then
--
2.45.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] common: cleanup scratch_mkfs_sized
2024-12-10 6:54 [PATCH] common: cleanup scratch_mkfs_sized Christoph Hellwig
@ 2024-12-11 17:44 ` Darrick J. Wong
0 siblings, 0 replies; 2+ messages in thread
From: Darrick J. Wong @ 2024-12-11 17:44 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: zlang, fstests
On Tue, Dec 10, 2024 at 07:54:35AM +0100, Christoph Hellwig wrote:
> Move the XFS RT specific code into the file system type switch
> statement.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
Looks good to me,
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
--D
> ---
> common/rc | 17 ++++++++++-------
> 1 file changed, 10 insertions(+), 7 deletions(-)
>
> diff --git a/common/rc b/common/rc
> index 1b2e4508d767..906905daa92d 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -1152,7 +1152,6 @@ _try_scratch_mkfs_sized()
> shift
> local def_blksz
> local blocksize_opt
> - local rt_ops
>
> case $FSTYP in
> xfs)
> @@ -1202,14 +1201,18 @@ _try_scratch_mkfs_sized()
> [ "$fssize" -gt "$devsize" ] && _notrun "Scratch device too small"
> fi
>
> - if [ "$FSTYP" = "xfs" ] && [ -b "$SCRATCH_RTDEV" ]; then
> - local rtdevsize=`blockdev --getsize64 $SCRATCH_RTDEV`
> - [ "$fssize" -gt "$rtdevsize" ] && _notrun "Scratch rt device too small"
> - rt_ops="-r size=$fssize"
> - fi
> -
> case $FSTYP in
> xfs)
> + local rt_ops
> +
> + if [ -b "$SCRATCH_RTDEV" ]; then
> + local rtdevsize=`blockdev --getsize64 $SCRATCH_RTDEV`
> + if [ "$fssize" -gt "$rtdevsize" ]; then
> + _notrun "Scratch rt device too small"
> + fi
> + rt_ops="-r size=$fssize"
> + fi
> +
> # don't override MKFS_OPTIONS that set a block size.
> echo $MKFS_OPTIONS |grep -E -q "b\s*size="
> if [ $? -eq 0 ]; then
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-12-11 17:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-10 6:54 [PATCH] common: cleanup scratch_mkfs_sized Christoph Hellwig
2024-12-11 17:44 ` Darrick J. Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox