* [merged mm-nonmm-stable] lib-error-inject-remove-error-checking-for-debugfs_create_dir.patch removed from -mm tree
@ 2023-08-12 22:05 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2023-08-12 22:05 UTC (permalink / raw)
To: mm-commits, gregkh, machel, akpm
The quilt patch titled
Subject: lib: error-inject: remove error checking for debugfs_create_dir()
has been removed from the -mm tree. Its filename was
lib-error-inject-remove-error-checking-for-debugfs_create_dir.patch
This patch was dropped because it was merged into the mm-nonmm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: Wang Ming <machel@vivo.com>
Subject: lib: error-inject: remove error checking for debugfs_create_dir()
Date: Wed, 19 Jul 2023 14:44:10 +0000
It is expected that most callers should _ignore_ the errors return by
debugfs_create_dir() in ei_debugfs_init().
Link: https://lkml.kernel.org/r/20230719144355.6720-1-machel@vivo.com
Signed-off-by: Wang Ming <machel@vivo.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
lib/error-inject.c | 2 --
1 file changed, 2 deletions(-)
--- a/lib/error-inject.c~lib-error-inject-remove-error-checking-for-debugfs_create_dir
+++ a/lib/error-inject.c
@@ -217,8 +217,6 @@ static int __init ei_debugfs_init(void)
struct dentry *dir, *file;
dir = debugfs_create_dir("error_injection", NULL);
- if (!dir)
- return -ENOMEM;
file = debugfs_create_file("list", 0444, dir, NULL, &ei_fops);
if (!file) {
_
Patches currently in -mm which might be from machel@vivo.com are
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-08-12 22:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-12 22:05 [merged mm-nonmm-stable] lib-error-inject-remove-error-checking-for-debugfs_create_dir.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.