All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged mm-stable] mm-secretmem-remove-reduntant-return-value.patch removed from -mm tree
@ 2022-10-03 21:10 Andrew Morton
  0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2022-10-03 21:10 UTC (permalink / raw)
  To: mm-commits, xiujianfeng, akpm


The quilt patch titled
     Subject: mm/secretmem: remove reduntant return value
has been removed from the -mm tree.  Its filename was
     mm-secretmem-remove-reduntant-return-value.patch

This patch was dropped because it was merged into the mm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm

------------------------------------------------------
From: Xiu Jianfeng <xiujianfeng@huawei.com>
Subject: mm/secretmem: remove reduntant return value
Date: Tue, 20 Sep 2022 09:22:05 +0800

The return value @ret is always 0, so remove it and return 0 directly.

Link: https://lkml.kernel.org/r/20220920012205.246217-1-xiujianfeng@huawei.com
Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/secretmem.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

--- a/mm/secretmem.c~mm-secretmem-remove-reduntant-return-value
+++ a/mm/secretmem.c
@@ -278,10 +278,8 @@ static struct file_system_type secretmem
 
 static int __init secretmem_init(void)
 {
-	int ret = 0;
-
 	if (!secretmem_enable)
-		return ret;
+		return 0;
 
 	secretmem_mnt = kern_mount(&secretmem_fs);
 	if (IS_ERR(secretmem_mnt))
@@ -290,6 +288,6 @@ static int __init secretmem_init(void)
 	/* prevent secretmem mappings from ever getting PROT_EXEC */
 	secretmem_mnt->mnt_flags |= MNT_NOEXEC;
 
-	return ret;
+	return 0;
 }
 fs_initcall(secretmem_init);
_

Patches currently in -mm which might be from xiujianfeng@huawei.com are



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-10-03 21:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-03 21:10 [merged mm-stable] mm-secretmem-remove-reduntant-return-value.patch removed from -mm tree 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.