Pārlūkot izejas kodu

nfsd: remove /proc/fs/nfs when create /proc/fs/nfs/exports error

when create /proc/fs/nfs/exports error, we should remove /proc/fs/nfs,
if don't do it, it maybe cause Memory leak.

 Signed-off-by: fanchaoting <fanchaoting@cn.fujitsu.com>
 Reviewed-by: chendt.fnst <chendt.fnst@cn.fujitsu.com>

Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fanchaoting 12 gadi atpakaļ
vecāks
revīzija
ff7c4b3693
1 mainītis faili ar 3 papildinājumiem un 1 dzēšanām
  1. 3 1
      fs/nfsd/nfsctl.c

+ 3 - 1
fs/nfsd/nfsctl.c

@@ -1111,8 +1111,10 @@ static int create_proc_exports_entry(void)
 		return -ENOMEM;
 		return -ENOMEM;
 	entry = proc_create("exports", 0, entry,
 	entry = proc_create("exports", 0, entry,
 				 &exports_proc_operations);
 				 &exports_proc_operations);
-	if (!entry)
+	if (!entry) {
+		remove_proc_entry("fs/nfs", NULL);
 		return -ENOMEM;
 		return -ENOMEM;
+	}
 	return 0;
 	return 0;
 }
 }
 #else /* CONFIG_PROC_FS */
 #else /* CONFIG_PROC_FS */