VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Andrew Morton <akpm@osdl.org> 2006-09-29 02:01:44 -0700 committer: Linus Torvalds <torvalds@g5.osdl.org> 2006-09-29 09:18:25 -0700 commit: 327dcaadc0bc08ad081aa8e36b6ec7ad7aa45e30 parent: 74d392aaabfc890cc1f0e80fc5ff13e5d3bcf4c9
Commit Summary:
[PATCH] expand_fdtable(): remove pointless unlock+lock
Diffstat:
1 file changed, 0 insertions, 2 deletions
diff --git a/fs/file.c b/fs/file.c
index 2a991ac8e562..8e81775c5dc8 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -317,9 +317,7 @@ static int expand_fdtable(struct files_struct *files, int nr)
 		free_fdtable(cur_fdt);
 	} else {
 		/* Somebody else expanded, so undo our attempt */
-		spin_unlock(&files->file_lock);
 		__free_fdtable(new_fdt);
-		spin_lock(&files->file_lock);
 	}
 	return 1;
 }