Forráskód Böngészése

[GFS2] vfree should be kfree

This was missed in an earlier patch when changing over from vmalloc
to kmalloc for the superblock.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Steven Whitehouse 18 éve
szülő
commit
a2c4580797
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      fs/gfs2/ops_fstype.c

+ 1 - 1
fs/gfs2/ops_fstype.c

@@ -769,7 +769,7 @@ fail_lm:
 fail_sys:
 	gfs2_sys_fs_del(sdp);
 fail:
-	vfree(sdp);
+	kfree(sdp);
 	sb->s_fs_info = NULL;
 	return error;
 }