Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aceb4170 authored by Ryusuke Konishi's avatar Ryusuke Konishi Committed by Linus Torvalds
Browse files

nilfs2: do not use yield()

Use cond_resched() instead of yield() in the loop of
nilfs_transaction_lock() since the usage corresponds to the "be nice for
others" case that the comment of yield() says.

This removes the following checkpatch.pl warning:

 "WARNING: Using yield() is generally wrong. See yield() kernel-doc
  (sched/core.c)"

Link: http://lkml.kernel.org/r/1464875891-5443-8-git-send-email-konishi.ryusuke@lab.ntt.co.jp


Signed-off-by: default avatarRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 39a9dcca
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -373,7 +373,7 @@ static void nilfs_transaction_lock(struct super_block *sb,
		nilfs_segctor_do_immediate_flush(sci);
		nilfs_segctor_do_immediate_flush(sci);


		up_write(&nilfs->ns_segctor_sem);
		up_write(&nilfs->ns_segctor_sem);
		yield();
		cond_resched();
	}
	}
	if (gcflag)
	if (gcflag)
		ti->ti_flags |= NILFS_TI_GC;
		ti->ti_flags |= NILFS_TI_GC;