* [PATCH] xfs: fix spacing style issues in xfs_alloc.c
@ 2026-01-23 15:04 Shin Seong-jun
2026-01-26 19:44 ` Darrick J. Wong
2026-01-29 11:30 ` Carlos Maiolino
0 siblings, 2 replies; 3+ messages in thread
From: Shin Seong-jun @ 2026-01-23 15:04 UTC (permalink / raw)
To: linux-xfs
Cc: cem, sandeen, willy, djwong, dchinner, linux-kernel,
Shin Seong-jun
Fix checkpatch.pl errors regarding missing spaces around assignment
operators in xfs_alloc_compute_diff() and xfs_alloc_fixup_trees().
Adhere to the Linux kernel coding style by ensuring spaces are placed
around the assignment operator '='.
Signed-off-by: Shin Seong-jun <shinsj4653@gmail.com>
---
fs/xfs/libxfs/xfs_alloc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c
index ad381c73abc4..c64e6c13f70d 100644
--- a/fs/xfs/libxfs/xfs_alloc.c
+++ b/fs/xfs/libxfs/xfs_alloc.c
@@ -376,8 +376,8 @@ xfs_alloc_compute_diff(
xfs_agblock_t freeend; /* end of freespace extent */
xfs_agblock_t newbno1; /* return block number */
xfs_agblock_t newbno2; /* other new block number */
- xfs_extlen_t newlen1=0; /* length with newbno1 */
- xfs_extlen_t newlen2=0; /* length with newbno2 */
+ xfs_extlen_t newlen1 = 0; /* length with newbno1 */
+ xfs_extlen_t newlen2 = 0; /* length with newbno2 */
xfs_agblock_t wantend; /* end of target extent */
bool userdata = datatype & XFS_ALLOC_USERDATA;
@@ -577,8 +577,8 @@ xfs_alloc_fixup_trees(
int i; /* operation results */
xfs_agblock_t nfbno1; /* first new free startblock */
xfs_agblock_t nfbno2; /* second new free startblock */
- xfs_extlen_t nflen1=0; /* first new free length */
- xfs_extlen_t nflen2=0; /* second new free length */
+ xfs_extlen_t nflen1 = 0; /* first new free length */
+ xfs_extlen_t nflen2 = 0; /* second new free length */
struct xfs_mount *mp;
bool fixup_longest = false;
--
2.47.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] xfs: fix spacing style issues in xfs_alloc.c
2026-01-23 15:04 [PATCH] xfs: fix spacing style issues in xfs_alloc.c Shin Seong-jun
@ 2026-01-26 19:44 ` Darrick J. Wong
2026-01-29 11:30 ` Carlos Maiolino
1 sibling, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2026-01-26 19:44 UTC (permalink / raw)
To: Shin Seong-jun; +Cc: linux-xfs, cem, sandeen, willy, dchinner, linux-kernel
On Sat, Jan 24, 2026 at 12:04:32AM +0900, Shin Seong-jun wrote:
> Fix checkpatch.pl errors regarding missing spaces around assignment
> operators in xfs_alloc_compute_diff() and xfs_alloc_fixup_trees().
>
> Adhere to the Linux kernel coding style by ensuring spaces are placed
> around the assignment operator '='.
>
> Signed-off-by: Shin Seong-jun <shinsj4653@gmail.com>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
--D
> ---
> fs/xfs/libxfs/xfs_alloc.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c
> index ad381c73abc4..c64e6c13f70d 100644
> --- a/fs/xfs/libxfs/xfs_alloc.c
> +++ b/fs/xfs/libxfs/xfs_alloc.c
> @@ -376,8 +376,8 @@ xfs_alloc_compute_diff(
> xfs_agblock_t freeend; /* end of freespace extent */
> xfs_agblock_t newbno1; /* return block number */
> xfs_agblock_t newbno2; /* other new block number */
> - xfs_extlen_t newlen1=0; /* length with newbno1 */
> - xfs_extlen_t newlen2=0; /* length with newbno2 */
> + xfs_extlen_t newlen1 = 0; /* length with newbno1 */
> + xfs_extlen_t newlen2 = 0; /* length with newbno2 */
> xfs_agblock_t wantend; /* end of target extent */
> bool userdata = datatype & XFS_ALLOC_USERDATA;
>
> @@ -577,8 +577,8 @@ xfs_alloc_fixup_trees(
> int i; /* operation results */
> xfs_agblock_t nfbno1; /* first new free startblock */
> xfs_agblock_t nfbno2; /* second new free startblock */
> - xfs_extlen_t nflen1=0; /* first new free length */
> - xfs_extlen_t nflen2=0; /* second new free length */
> + xfs_extlen_t nflen1 = 0; /* first new free length */
> + xfs_extlen_t nflen2 = 0; /* second new free length */
> struct xfs_mount *mp;
> bool fixup_longest = false;
>
> --
> 2.47.3
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] xfs: fix spacing style issues in xfs_alloc.c
2026-01-23 15:04 [PATCH] xfs: fix spacing style issues in xfs_alloc.c Shin Seong-jun
2026-01-26 19:44 ` Darrick J. Wong
@ 2026-01-29 11:30 ` Carlos Maiolino
1 sibling, 0 replies; 3+ messages in thread
From: Carlos Maiolino @ 2026-01-29 11:30 UTC (permalink / raw)
To: linux-xfs, Shin Seong-jun; +Cc: sandeen, willy, djwong, dchinner, linux-kernel
On Sat, 24 Jan 2026 00:04:32 +0900, Shin Seong-jun wrote:
> Fix checkpatch.pl errors regarding missing spaces around assignment
> operators in xfs_alloc_compute_diff() and xfs_alloc_fixup_trees().
>
> Adhere to the Linux kernel coding style by ensuring spaces are placed
> around the assignment operator '='.
>
>
> [...]
Applied to for-next, thanks!
[1/1] xfs: fix spacing style issues in xfs_alloc.c
commit: 0ead3b72469e52ca02946b2e5b35fff38bfa061f
Best regards,
--
Carlos Maiolino <cem@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-01-29 11:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-23 15:04 [PATCH] xfs: fix spacing style issues in xfs_alloc.c Shin Seong-jun
2026-01-26 19:44 ` Darrick J. Wong
2026-01-29 11:30 ` Carlos Maiolino
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox