aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2015-02-27 16:56:28 -0500
committerRichard Weinberger <richard@nod.at>2015-03-26 18:27:48 -0400
commitaf9556586a906106453ff7df8bcacf795b2b7d0a (patch)
tree5a8e8d173a9422b3616d6f4418510fff7720ae03 /fs
parent69886e676e89534953b12df77382504a7731f7bb (diff)
hostfs: hostfs_file_open: Fix a fd leak in hostfs_file_open
In case of a race between to callers of hostfs_file_open() it can happen that a file describtor is leaked. Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs')
-rw-r--r--fs/hostfs/hostfs_kern.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c
index 104d58d2c78c..112ba5aa0848 100644
--- a/fs/hostfs/hostfs_kern.c
+++ b/fs/hostfs/hostfs_kern.c
@@ -329,6 +329,7 @@ retry:
329 /* somebody else had handled it first? */ 329 /* somebody else had handled it first? */
330 if ((mode & HOSTFS_I(ino)->mode) == mode) { 330 if ((mode & HOSTFS_I(ino)->mode) == mode) {
331 mutex_unlock(&HOSTFS_I(ino)->open_mutex); 331 mutex_unlock(&HOSTFS_I(ino)->open_mutex);
332 close_file(&fd);
332 return 0; 333 return 0;
333 } 334 }
334 if ((mode | HOSTFS_I(ino)->mode) != mode) { 335 if ((mode | HOSTFS_I(ino)->mode) != mode) {