[folded-merged] mm-shmem-downgrade-final-i_blocks-check-in-shmem_evict_inode-to-pr_warn-fix.patch removed from -mm tree
Andrew Morton <[email protected]> Tue, 04 Aug 2026 18:25:23 -0700
| Newsgroups | org.kernel.vger.mm-commits |
|---|---|
| Message-ID | <[email protected]> |
The quilt patch titled
Subject: mm-shmem-downgrade-final-i_blocks-check-in-shmem_evict_inode-to-pr_warn-fix
has been removed from the -mm tree. Its filename was
mm-shmem-downgrade-final-i_blocks-check-in-shmem_evict_inode-to-pr_warn-fix.patch
This patch was dropped because it was folded into mm-shmem-downgrade-final-i_blocks-check-in-shmem_evict_inode-to-pr_warn.patch
------------------------------------------------------
From: Jiacheng Yu <[email protected]>
Subject: mm-shmem-downgrade-final-i_blocks-check-in-shmem_evict_inode-to-pr_warn-fix
Date: Wed, 29 Jul 2026 12:12:00 +0000
drop redundant casts in shmem_evict_inode() pr_warn
blkcnt_t and i_ino are u64, %llu matches both directly, so drop the casts.
Link: https://lore.kernel.org/[email protected]
Signed-off-by: Jiacheng Yu <[email protected]>
Cc: Baolin Wang <[email protected]>
Cc: Christian Brauner <[email protected]>
Cc: Hugh Dickins <[email protected]>
Cc: Yongqiang Liu <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
---
mm/shmem.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--- a/mm/shmem.c~mm-shmem-downgrade-final-i_blocks-check-in-shmem_evict_inode-to-pr_warn-fix
+++ a/mm/shmem.c
@@ -1442,8 +1442,7 @@ static void shmem_evict_inode(struct ino
shmem_free_inode(inode->i_sb, freed);
if (inode->i_blocks)
pr_warn("%s: ino=%llu i_blocks=%llu alloced=%lu swapped=%lu nrpages=%lu\n",
- __func__, (unsigned long long)inode->i_ino,
- (unsigned long long)inode->i_blocks,
+ __func__, inode->i_ino, inode->i_blocks,
info->alloced, info->swapped, inode->i_mapping->nrpages);
clear_inode(inode);
#ifdef CONFIG_TMPFS_QUOTA
_
Patches currently in -mm which might be from [email protected] are
mm-shmem-downgrade-final-i_blocks-check-in-shmem_evict_inode-to-pr_warn.patch