Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 3 | * Copyright (C) International Business Machines Corp., 2000-2001 |
| 4 | * Portions Copyright (C) Christoph Hellwig, 2001-2002 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | #ifndef _H_JFS_LOCK |
| 7 | #define _H_JFS_LOCK |
| 8 | |
| 9 | #include <linux/spinlock.h> |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 10 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/sched.h> |
| 12 | |
| 13 | /* |
| 14 | * jfs_lock.h |
| 15 | */ |
| 16 | |
| 17 | /* |
| 18 | * Conditional sleep where condition is protected by spinlock |
| 19 | * |
| 20 | * lock_cmd and unlock_cmd take and release the spinlock |
| 21 | */ |
| 22 | #define __SLEEP_COND(wq, cond, lock_cmd, unlock_cmd) \ |
| 23 | do { \ |
| 24 | DECLARE_WAITQUEUE(__wait, current); \ |
| 25 | \ |
| 26 | add_wait_queue(&wq, &__wait); \ |
| 27 | for (;;) { \ |
| 28 | set_current_state(TASK_UNINTERRUPTIBLE);\ |
| 29 | if (cond) \ |
| 30 | break; \ |
| 31 | unlock_cmd; \ |
Dave Kleikamp | 4aa0d23 | 2007-01-17 21:18:35 -0600 | [diff] [blame] | 32 | io_schedule(); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | lock_cmd; \ |
| 34 | } \ |
Milind Arun Choudhary | 3cbb1c8 | 2007-04-26 07:30:29 -0500 | [diff] [blame] | 35 | __set_current_state(TASK_RUNNING); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | remove_wait_queue(&wq, &__wait); \ |
| 37 | } while (0) |
| 38 | |
| 39 | #endif /* _H_JFS_LOCK */ |