linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Lance Yang <ioworker0@gmail.com>
To: Jiaqi Yan <jiaqiyan@google.com>
Cc: nao.horiguchi@gmail.com, linmiaohe@huawei.com,
	jane.chu@oracle.com,  muchun.song@linux.dev,
	akpm@linux-foundation.org, shuah@kernel.org,
	 rdunlap@infradead.org, corbet@lwn.net, osalvador@suse.de,
	rientjes@google.com,  duenwen@google.com, fvdl@google.com,
	ak@linux.intel.com, linux-mm@kvack.org,
	 linux-kselftest@vger.kernel.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH v7 1/4] mm/memory-failure: refactor log format in soft offline code
Date: Sun, 30 Jun 2024 18:44:12 +0800	[thread overview]
Message-ID: <CAK1f24n_SftNx2WG0UE_d-1tZGieR6VDfeFx9DGjakHQ0VpZuA@mail.gmail.com> (raw)
In-Reply-To: <20240628205958.2845610-2-jiaqiyan@google.com>

On Sat, Jun 29, 2024 at 5:00 AM Jiaqi Yan <jiaqiyan@google.com> wrote:
>
> Logs from soft_offline_page and soft_offline_in_use_page have
> different formats than majority of the memory failure code:
>
>   "Memory failure: 0x${pfn}: ${lower_case_message}"
>
> Convert them to the following format:
>
>   "Soft offline: 0x${pfn}: ${lower_case_message}"
>
> No functional change in this commit.
>
> Acked-by: Miaohe Lin <linmiaohe@huawei.com>
> Signed-off-by: Jiaqi Yan <jiaqiyan@google.com>

LGTM. Feel free to add:
Reviewed-by: Lance Yang <ioworker0@gmail.com>

Thanks,
Lance


> ---
>  mm/memory-failure.c | 15 +++++++++------
>  1 file changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/mm/memory-failure.c b/mm/memory-failure.c
> index 2cf7acc286de..685ab9a77966 100644
> --- a/mm/memory-failure.c
> +++ b/mm/memory-failure.c
> @@ -2640,6 +2640,9 @@ int unpoison_memory(unsigned long pfn)
>  }
>  EXPORT_SYMBOL(unpoison_memory);
>
> +#undef pr_fmt
> +#define pr_fmt(fmt) "Soft offline: " fmt
> +
>  static bool mf_isolate_folio(struct folio *folio, struct list_head *pagelist)
>  {
>         bool isolated = false;
> @@ -2695,7 +2698,7 @@ static int soft_offline_in_use_page(struct page *page)
>
>         if (!huge && folio_test_large(folio)) {
>                 if (try_to_split_thp_page(page, true)) {
> -                       pr_info("soft offline: %#lx: thp split failed\n", pfn);
> +                       pr_info("%#lx: thp split failed\n", pfn);
>                         return -EBUSY;
>                 }
>                 folio = page_folio(page);
> @@ -2707,7 +2710,7 @@ static int soft_offline_in_use_page(struct page *page)
>         if (PageHWPoison(page)) {
>                 folio_unlock(folio);
>                 folio_put(folio);
> -               pr_info("soft offline: %#lx page already poisoned\n", pfn);
> +               pr_info("%#lx: page already poisoned\n", pfn);
>                 return 0;
>         }
>
> @@ -2720,7 +2723,7 @@ static int soft_offline_in_use_page(struct page *page)
>         folio_unlock(folio);
>
>         if (ret) {
> -               pr_info("soft_offline: %#lx: invalidated\n", pfn);
> +               pr_info("%#lx: invalidated\n", pfn);
>                 page_handle_poison(page, false, true);
>                 return 0;
>         }
> @@ -2737,13 +2740,13 @@ static int soft_offline_in_use_page(struct page *page)
>                         if (!list_empty(&pagelist))
>                                 putback_movable_pages(&pagelist);
>
> -                       pr_info("soft offline: %#lx: %s migration failed %ld, type %pGp\n",
> +                       pr_info("%#lx: %s migration failed %ld, type %pGp\n",
>                                 pfn, msg_page[huge], ret, &page->flags);
>                         if (ret > 0)
>                                 ret = -EBUSY;
>                 }
>         } else {
> -               pr_info("soft offline: %#lx: %s isolation failed, page count %d, type %pGp\n",
> +               pr_info("%#lx: %s isolation failed, page count %d, type %pGp\n",
>                         pfn, msg_page[huge], page_count(page), &page->flags);
>                 ret = -EBUSY;
>         }
> @@ -2795,7 +2798,7 @@ int soft_offline_page(unsigned long pfn, int flags)
>         mutex_lock(&mf_mutex);
>
>         if (PageHWPoison(page)) {
> -               pr_info("%s: %#lx page already poisoned\n", __func__, pfn);
> +               pr_info("%#lx: page already poisoned\n", pfn);
>                 put_ref_page(pfn, flags);
>                 mutex_unlock(&mf_mutex);
>                 return 0;
> --
> 2.45.2.803.g4e1b14247a-goog
>


  reply	other threads:[~2024-06-30 10:44 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-28 20:59 [PATCH v7 0/4] Userspace controls soft-offline pages Jiaqi Yan
2024-06-28 20:59 ` [PATCH v7 1/4] mm/memory-failure: refactor log format in soft offline code Jiaqi Yan
2024-06-30 10:44   ` Lance Yang [this message]
2024-06-28 20:59 ` [PATCH v7 2/4] mm/memory-failure: userspace controls soft-offlining pages Jiaqi Yan
2024-06-28 20:59 ` [PATCH v7 3/4] selftest/mm: test enable_soft_offline behaviors Jiaqi Yan
2024-06-30  9:52   ` David Rientjes
2024-06-28 20:59 ` [PATCH v7 4/4] docs: mm: add enable_soft_offline sysctl Jiaqi Yan
2024-06-30  9:53   ` David Rientjes

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=CAK1f24n_SftNx2WG0UE_d-1tZGieR6VDfeFx9DGjakHQ0VpZuA@mail.gmail.com \
    --to=ioworker0@gmail.com \
    --cc=ak@linux.intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=corbet@lwn.net \
    --cc=duenwen@google.com \
    --cc=fvdl@google.com \
    --cc=jane.chu@oracle.com \
    --cc=jiaqiyan@google.com \
    --cc=linmiaohe@huawei.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=muchun.song@linux.dev \
    --cc=nao.horiguchi@gmail.com \
    --cc=osalvador@suse.de \
    --cc=rdunlap@infradead.org \
    --cc=rientjes@google.com \
    --cc=shuah@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