linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: 高翔 <gaoxiang17@xiaomi.com>
To: "Vlastimil Babka (SUSE)" <vbabka@kernel.org>,
	Xiang Gao <gxxa03070307@gmail.com>,
	"akpm@linux-foundation.org" <akpm@linux-foundation.org>
Cc: "surenb@google.com" <surenb@google.com>,
	"mhocko@suse.com" <mhocko@suse.com>,
	"jackmanb@google.com" <jackmanb@google.com>,
	"hannes@cmpxchg.org" <hannes@cmpxchg.org>,
	"ziy@nvidia.com" <ziy@nvidia.com>,
	"linux-mm@kvack.org" <linux-mm@kvack.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: 答复: [External Mail]Re: [PATCH] mm/page_alloc: fix spaces used for indentation instead of tabs
Date: Thu, 16 Apr 2026 06:51:59 +0000	[thread overview]
Message-ID: <e1d5f34930ce42acbf16c8bf20b641e5@xiaomi.com> (raw)
In-Reply-To: <0a578026-3bc8-480d-8992-c27c3496e15b@kernel.org>

[-- Attachment #1: Type: text/plain, Size: 3220 bytes --]

Thank you for the feedback. I understand ― checkpatch should only be used on patches, not to find and fix pre-existing style issues in existing code. I'll keep this in mind for future submissions. Sorry for the noise.

________________________________
发件人: Vlastimil Babka (SUSE) <vbabka@kernel.org>
发送时间: 2026年4月16日 14:40:31
收件人: Xiang Gao; akpm@linux-foundation.org
抄送: surenb@google.com; mhocko@suse.com; jackmanb@google.com; hannes@cmpxchg.org; ziy@nvidia.com; linux-mm@kvack.org; linux-kernel@vger.kernel.org; 高翔
主题: [External Mail]Re: [PATCH] mm/page_alloc: fix spaces used for indentation instead of tabs

[外部邮件] 此邮件来源于小米公司外部,请谨慎处理。若对邮件安全性存疑,请将邮件转发给misec@xiaomi.com进行反馈

On 4/16/26 04:19, Xiang Gao wrote:
> From: Xiang Gao <gaoxiang17@xiaomi.com>
>
> checkpatch.pl reports two indentation errors in page_alloc.c where
> spaces are used instead of tabs:

checkpatch should not be used on existing source files, only on patches
changing them for another reason. There are many pre-existing things that
would be flagged and we don't want the churn. So we only use checkpatch to
avoid introducing new mistakes, and only fix the pre-existing ones when
changing the code for another reason.

>   ERROR: code indent should use tabs where possible
>   #887: FILE: mm/page_alloc.c:887:
>   +        VM_WARN_ONCE(get_pageblock_migratetype(page) != migratetype,$
>
>   ERROR: code indent should use tabs where possible
>   #6626: FILE: mm/page_alloc.c:6626:
>   +                                                    sysctl_min_unmapped_ratio) / 100;$
>
> In __del_page_from_free_list(), the VM_WARN_ONCE at line 887 uses 8
> spaces for indentation instead of a tab. The identical VM_WARN_ONCE
> calls in __add_to_free_list() and move_to_free_list() both correctly
> use a tab.
>
> In setup_min_unmapped_ratio(), the continuation line at 6626 uses 6
> tabs + 9 spaces for alignment. Replace the excess spaces with 6 tabs
> + 1 space to correctly align with the opening parenthesis on the
> previous line.
>
> Signed-off-by: gaoxiang17 <gaoxiang17@xiaomi.com>
> ---
>  mm/page_alloc.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 2d4b6f1a554e..752673a9b43c 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -884,7 +884,7 @@ static inline void __del_page_from_free_list(struct page *page, struct zone *zon
>  {
>       int nr_pages = 1 << order;
>
> -        VM_WARN_ONCE(get_pageblock_migratetype(page) != migratetype,
> +     VM_WARN_ONCE(get_pageblock_migratetype(page) != migratetype,
>                    "page type is %d, passed migratetype is %d (nr=%d)\n",
>                    get_pageblock_migratetype(page), migratetype, nr_pages);
>
> @@ -6623,7 +6623,7 @@ static void setup_min_unmapped_ratio(void)
>
>       for_each_zone(zone)
>               zone->zone_pgdat->min_unmapped_pages += (zone_managed_pages(zone) *
> -                                                      sysctl_min_unmapped_ratio) / 100;
> +                                              sysctl_min_unmapped_ratio) / 100;
>  }
>
>


[-- Attachment #2: Type: text/html, Size: 5986 bytes --]

      reply	other threads:[~2026-04-16  6:52 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-16  2:19 Xiang Gao
2026-04-16  4:22 ` Donet Tom
2026-04-16  5:19   ` 答复: [External Mail]Re: " 高翔
2026-04-16  5:27 ` [PATCH v2] " Xiang Gao
2026-04-16  5:48   ` Donet Tom
2026-04-16  6:21     ` 答复: [External Mail]Re: " 高翔
2026-04-16  6:25     ` 高翔
2026-04-16  6:34   ` Dev Jain
2026-04-16  6:48     ` 答复: [External Mail]Re: " 高翔
2026-04-16  6:40 ` [PATCH] " Vlastimil Babka (SUSE)
2026-04-16  6:51   ` 高翔 [this message]

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=e1d5f34930ce42acbf16c8bf20b641e5@xiaomi.com \
    --to=gaoxiang17@xiaomi.com \
    --cc=akpm@linux-foundation.org \
    --cc=gxxa03070307@gmail.com \
    --cc=hannes@cmpxchg.org \
    --cc=jackmanb@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=surenb@google.com \
    --cc=vbabka@kernel.org \
    --cc=ziy@nvidia.com \
    /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