drbd: simplify condition in drbd_may_do_local_read()
authorLars Ellenberg <lars.ellenberg@linbit.com>
Fri, 18 Feb 2011 13:13:07 +0000 (14:13 +0100)
committerPhilipp Reisner <philipp.reisner@linbit.com>
Fri, 14 Oct 2011 14:47:39 +0000 (16:47 +0200)
fold
if (x >= (N+1))
return 0;
if (x < N)
return 0;
into
if (x != N)
return 0;

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>

No differences found