[PATCH 1/1] mm/cleancache.c __init init_cleancache(void) incorrectreturn value.

From: kordex
Date: Wed Sep 07 2011 - 18:35:18 EST


Most likely solution bellow should be applied.

Br,
Mikko Kortelainen
Fail-Safe IT Solutions Oy

lain:/usr/src# diff -Naur a/mm/cleancache.c b/mm/cleancache.c
--- a/mm/cleancache.c 2011-08-29 23:56:30.000000000 +0300
+++ b/mm/cleancache.c 2011-09-08 01:24:15.000000000 +0300
@@ -234,11 +234,10 @@

static int __init init_cleancache(void)
{
+ int err = 0;
#ifdef CONFIG_SYSFS
- int err;
-
err = sysfs_create_group(mm_kobj, &cleancache_attr_group);
#endif /* CONFIG_SYSFS */
- return 0;
+ return err;
}
module_init(init_cleancache)

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/