* + jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3.patch added to mm-unstable branch
@ 2025-05-09 0:10 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-05-09 0:10 UTC (permalink / raw)
To: mm-commits, ziy, willy, wangkefeng.wang, shaggy, lkp, jane.chu,
donettom, david, dan.carpenter, apopple, shivankg, akpm
The patch titled
Subject: jfs: remove redundant NULL check in __metapage_migrate_folio()
has been added to the -mm mm-unstable branch. Its filename is
jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3.patch
This patch will shortly appear at
https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3.patch
This patch will later appear in the mm-unstable branch at
git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next via the mm-everything
branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
and is updated there every 2-3 working days
------------------------------------------------------
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
jfs-implement-migrate_folio-for-jfs_metapage_aops-fix.patch
jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-05-09 0:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-09 0:10 + jfs-implement-migrate_folio-for-jfs_metapage_aops-fix-3.patch added to mm-unstable branch Andrew Morton
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.