VisionFive2 Linux kernel

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

More than 9999 Commits   32 Branches   54 Tags
author: Paul E. McKenney <paulmck@linux.ibm.com> 2018-11-05 17:31:31 -0800 committer: Paul E. McKenney <paulmck@linux.ibm.com> 2018-11-27 09:21:39 -0800 commit: c93ffc15cceb057924410f9178e679120ee12353 parent: cc69b389fd7bfcd14ade19e302a771f0234e9c85
Commit Summary:
fs/file: Replace synchronize_sched() with synchronize_rcu()
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/file.c b/fs/file.c
index 7ffd6e9d103d..50304c7525ea 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -158,7 +158,7 @@ static int expand_fdtable(struct files_struct *files, unsigned int nr)
 	 * or have finished their rcu_read_lock_sched() section.
 	 */
 	if (atomic_read(&files->count) > 1)
-		synchronize_sched();
+		synchronize_rcu();
 
 	spin_lock(&files->file_lock);
 	if (!new_fdt)