Skip to content

Commit

Permalink
fs/fscache: remove spin_lock() from the condition in while()
Browse files Browse the repository at this point in the history
The spinlock() within the condition in while() will cause a compile error
if it is not a function. This is not a problem on mainline but it does not
look pretty and there is no reason to do it that way.
That patch writes it a little differently and avoids the double condition.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: David Howells <dhowells@redhat.com>
Tested-By: Milosz Tanski <milosz@adfin.com>
Acked-by: Jeff Layton <jlayton@redhat.com>
  • Loading branch information
Sebastian Andrzej Siewior authored and David Howells committed Jun 19, 2013
1 parent cb65537 commit ee8be57
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions fs/fscache/page.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,11 +796,16 @@ void fscache_invalidate_writes(struct fscache_cookie *cookie)

_enter("");

while (spin_lock(&cookie->stores_lock),
n = radix_tree_gang_lookup_tag(&cookie->stores, results, 0,
ARRAY_SIZE(results),
FSCACHE_COOKIE_PENDING_TAG),
n > 0) {
for (;;) {
spin_lock(&cookie->stores_lock);
n = radix_tree_gang_lookup_tag(&cookie->stores, results, 0,
ARRAY_SIZE(results),
FSCACHE_COOKIE_PENDING_TAG);
if (n == 0) {
spin_unlock(&cookie->stores_lock);
break;
}

for (i = n - 1; i >= 0; i--) {
page = results[i];
radix_tree_delete(&cookie->stores, page->index);
Expand All @@ -812,7 +817,6 @@ void fscache_invalidate_writes(struct fscache_cookie *cookie)
page_cache_release(results[i]);
}

spin_unlock(&cookie->stores_lock);
_leave("");
}

Expand Down

0 comments on commit ee8be57

Please sign in to comment.