diff options
author | Peter Zijlstra <peterz@infradead.org> | 2018-03-15 06:43:43 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2018-03-20 03:23:21 -0400 |
commit | dc5d4afbb0bf7b7746ff5e56e1a5688ad7f29b32 (patch) | |
tree | aab1e218aa98304737514a9c46416c0d44c200e6 | |
parent | 4625956a4ec20c623acbbb0c6d60fcb388387ba8 (diff) |
sched/wait, fs/fscache: Convert wait_on_atomic_t() usage to the new wait_var_event() API
The old wait_on_atomic_t() is going to get removed, use the more
flexible wait_var_event() API instead.
No change in functionality.
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: David Howells <dhowells@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | fs/fscache/cookie.c | 7 | ||||
-rw-r--r-- | include/linux/fscache-cache.h | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/fs/fscache/cookie.c b/fs/fscache/cookie.c index ff84258132bb..d705125665f0 100644 --- a/fs/fscache/cookie.c +++ b/fs/fscache/cookie.c | |||
@@ -557,9 +557,10 @@ void __fscache_disable_cookie(struct fscache_cookie *cookie, bool invalidate) | |||
557 | * n_active reaches 0). This makes sure outstanding reads and writes | 557 | * n_active reaches 0). This makes sure outstanding reads and writes |
558 | * have completed. | 558 | * have completed. |
559 | */ | 559 | */ |
560 | if (!atomic_dec_and_test(&cookie->n_active)) | 560 | if (!atomic_dec_and_test(&cookie->n_active)) { |
561 | wait_on_atomic_t(&cookie->n_active, atomic_t_wait, | 561 | wait_var_event(&cookie->n_active, |
562 | TASK_UNINTERRUPTIBLE); | 562 | !atomic_read(&cookie->n_active)); |
563 | } | ||
563 | 564 | ||
564 | /* Make sure any pending writes are cancelled. */ | 565 | /* Make sure any pending writes are cancelled. */ |
565 | if (cookie->def->type != FSCACHE_COOKIE_TYPE_INDEX) | 566 | if (cookie->def->type != FSCACHE_COOKIE_TYPE_INDEX) |
diff --git a/include/linux/fscache-cache.h b/include/linux/fscache-cache.h index 4c467ef50159..3b03e29e2f1a 100644 --- a/include/linux/fscache-cache.h +++ b/include/linux/fscache-cache.h | |||
@@ -496,7 +496,7 @@ static inline bool __fscache_unuse_cookie(struct fscache_cookie *cookie) | |||
496 | 496 | ||
497 | static inline void __fscache_wake_unused_cookie(struct fscache_cookie *cookie) | 497 | static inline void __fscache_wake_unused_cookie(struct fscache_cookie *cookie) |
498 | { | 498 | { |
499 | wake_up_atomic_t(&cookie->n_active); | 499 | wake_up_var(&cookie->n_active); |
500 | } | 500 | } |
501 | 501 | ||
502 | /** | 502 | /** |