From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org,ziy@nvidia.com,willy@infradead.org,wangkefeng.wang@huawei.com,shaggy@kernel.org,lkp@intel.com,jane.chu@oracle.com,donettom@linux.ibm.com,david@redhat.com,dan.carpenter@linaro.org,apopple@nvidia.com,shivankg@amd.com,akpm@linux-foundation.org
Subject: [folded-merged] jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3.patch removed from -mm tree
Date: Mon, 12 May 2025 23:41:22 -0700 [thread overview]
Message-ID: <20250513064122.DDE18C4CEEF@smtp.kernel.org> (raw)
The quilt patch titled
Subject: jfs: remove redundant NULL check in __metapage_migrate_folio()
has been removed from the -mm tree. Its filename was
jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3.patch
This patch was dropped because it was folded into jfs-implement-migrate_folio-for-jfs_metapage_aops.patch
------------------------------------------------------
From: Shivank Garg <shivankg@amd.com>
Subject: jfs: remove redundant NULL check in __metapage_migrate_folio()
Date: Thu, 8 May 2025 06:00:33 +0000
Link: https://lkml.kernel.org/r/a67db238-0ca6-4725-abb2-dc092de87e1b@amd.com
Signed-off-by: Shivank Garg <shivankg@amd.com>
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/r/202505071850.XaOkcCkX-lkp@intel.com/
Cc: Alistair Popple <apopple@nvidia.com>
Cc: Dave Kleikamp <shaggy@kernel.org>
Cc: David Hildenbrand <david@redhat.com>
Cc: Donet Tom <donettom@linux.ibm.com>
Cc: Jane Chu <jane.chu@oracle.com>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Zi Yan <ziy@nvidia.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
fs/jfs/jfs_metapage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/fs/jfs/jfs_metapage.c~jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3
+++ a/fs/jfs/jfs_metapage.c
@@ -238,7 +238,7 @@ static int __metapage_migrate_folio(stru
int rc;
mp = folio_to_mp(src, 0);
- if (mp && metapage_locked(mp))
+ if (metapage_locked(mp))
return -EAGAIN;
rc = filemap_migrate_folio(mapping, dst, src, mode);
_
Patches currently in -mm which might be from shivankg@amd.com are
mm-add-folio_expected_ref_count-for-reference-count-calculation.patch
jfs-implement-migrate_folio-for-jfs_metapage_aops.patch
reply other threads:[~2025-05-13 6:41 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20250513064122.DDE18C4CEEF@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=apopple@nvidia.com \
--cc=dan.carpenter@linaro.org \
--cc=david@redhat.com \
--cc=donettom@linux.ibm.com \
--cc=jane.chu@oracle.com \
--cc=lkp@intel.com \
--cc=mm-commits@vger.kernel.org \
--cc=shaggy@kernel.org \
--cc=shivankg@amd.com \
--cc=wangkefeng.wang@huawei.com \
--cc=willy@infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.