Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67946f12 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm: slub: avoid return code from slab_sysfs_init if debugfs is off"

parents f4a66ea8 d12e3506
Loading
Loading
Loading
Loading
+3 −10
Original line number Diff line number Diff line
@@ -6323,16 +6323,9 @@ static int __init slab_sysfs_init(void)
#ifdef CONFIG_SLUB_DEBUG
	if (slub_debug) {
		slab_debugfs_top = debugfs_create_dir("slab", NULL);
		if (!slab_debugfs_top) {
			pr_err("Couldn't create slab debugfs directory\n");
			return -ENODEV;
		}

		if (!debugfs_create_file("alloc_trace", 0400, slab_debugfs_top,
					NULL, &slab_debug_alloc_fops)) {
			pr_err("Couldn't create slab/tests debugfs directory\n");
			return -ENODEV;
		}
		if (!IS_ERR(slab_debugfs_top))
			debugfs_create_file("alloc_trace", 0400, slab_debugfs_top,
					NULL, &slab_debug_alloc_fops);
	}
#endif