The patch titled Subject: ocfs2: fix error path kobject memory leak has been removed from the -mm tree. Its filename was ocfs2-fix-error-path-kobject-memory-leak.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: "Tobin C. Harding" <tobin@xxxxxxxxxx> Subject: ocfs2: fix error path kobject memory leak If a call to kobject_init_and_add() fails we should call kobject_put() otherwise we leak memory. Add call to kobject_put() in the error path of call to kobject_init_and_add(). Please note, this has the side effect that the release method is called if kobject_init_and_add() fails. Link: http://lkml.kernel.org/r/20190513033458.2824-1-tobin@xxxxxxxxxx Signed-off-by: Tobin C. Harding <tobin@xxxxxxxxxx> Reviewed-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Reviewed-by: Joseph Qi <joseph.qi@xxxxxxxxxxxxxxxxx> Cc: Mark Fasheh <mark@xxxxxxxxxx> Cc: Joel Becker <jlbec@xxxxxxxxxxxx> Cc: Junxiao Bi <junxiao.bi@xxxxxxxxxx> Cc: Changwei Ge <gechangwei@xxxxxxx> Cc: Gang He <ghe@xxxxxxxx> Cc: Jun Piao <piaojun@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ocfs2/filecheck.c | 1 + 1 file changed, 1 insertion(+) --- a/fs/ocfs2/filecheck.c~ocfs2-fix-error-path-kobject-memory-leak +++ a/fs/ocfs2/filecheck.c @@ -193,6 +193,7 @@ int ocfs2_filecheck_create_sysfs(struct ret = kobject_init_and_add(&entry->fs_kobj, &ocfs2_ktype_filecheck, NULL, "filecheck"); if (ret) { + kobject_put(&entry->fs_kobj); kfree(fcheck); return ret; } _ Patches currently in -mm which might be from tobin@xxxxxxxxxx are tools-vm-slabinfo-order-command-line-options.patch tools-vm-slabinfo-add-partial-slab-listing-to-x.patch tools-vm-slabinfo-add-option-to-sort-by-partial-slabs.patch tools-vm-slabinfo-add-sorting-info-to-help-menu.patch