From: Jie Liu <jeff.liu@xxxxxxxxxx> Return the actual error code if call kset_create_and_add() failed Cc: Theodore Ts'o <tytso@xxxxxxx> Cc: Andreas Dilger <adilger.kernel@xxxxxxxxx> Signed-off-by: Jie Liu <jeff.liu@xxxxxxxxxx> --- fs/ext4/super.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/ext4/super.c b/fs/ext4/super.c index b9b9aab..5912193 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -5545,8 +5545,8 @@ static int __init ext4_init_fs(void) if (err) goto out6; ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj); - if (!ext4_kset) { - err = -ENOMEM; + if (IS_ERR(ext4_kset)) { + err = PTR_ERR(ext4_kset); goto out5; } ext4_proc_root = proc_mkdir("fs/ext4", NULL); -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html