diff options
author | Michal Hocko <mhocko@suse.com> | 2016-04-07 11:12:31 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-04-22 02:58:33 -0400 |
commit | 916633a403702549d37ea353e63a68e5b0dc27ad (patch) | |
tree | 2e36d9a73b0b8781aac44e2b99fa749b7122d2ce /include/linux/lockdep.h | |
parent | 664b4e24c6145830885e854195376351b0eb3eee (diff) |
locking/rwsem: Provide down_write_killable()
Now that all the architectures implement the necessary glue code
we can introduce down_write_killable(). The only difference wrt. regular
down_write() is that the slow path waits in TASK_KILLABLE state and the
interruption by the fatal signal is reported as -EINTR to the caller.
Signed-off-by: Michal Hocko <mhocko@suse.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Chris Zankel <chris@zankel.net>
Cc: David S. Miller <davem@davemloft.net>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Cc: Signed-off-by: Jason Low <jason.low2@hp.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tony Luck <tony.luck@intel.com>
Cc: linux-alpha@vger.kernel.org
Cc: linux-arch@vger.kernel.org
Cc: linux-ia64@vger.kernel.org
Cc: linux-s390@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Cc: linux-xtensa@linux-xtensa.org
Cc: sparclinux@vger.kernel.org
Link: http://lkml.kernel.org/r/1460041951-22347-12-git-send-email-mhocko@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux/lockdep.h')
-rw-r--r-- | include/linux/lockdep.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h index d026b190c530..accfe56d8c51 100644 --- a/include/linux/lockdep.h +++ b/include/linux/lockdep.h | |||
@@ -444,6 +444,18 @@ do { \ | |||
444 | lock_acquired(&(_lock)->dep_map, _RET_IP_); \ | 444 | lock_acquired(&(_lock)->dep_map, _RET_IP_); \ |
445 | } while (0) | 445 | } while (0) |
446 | 446 | ||
447 | #define LOCK_CONTENDED_RETURN(_lock, try, lock) \ | ||
448 | ({ \ | ||
449 | int ____err = 0; \ | ||
450 | if (!try(_lock)) { \ | ||
451 | lock_contended(&(_lock)->dep_map, _RET_IP_); \ | ||
452 | ____err = lock(_lock); \ | ||
453 | } \ | ||
454 | if (!____err) \ | ||
455 | lock_acquired(&(_lock)->dep_map, _RET_IP_); \ | ||
456 | ____err; \ | ||
457 | }) | ||
458 | |||
447 | #else /* CONFIG_LOCK_STAT */ | 459 | #else /* CONFIG_LOCK_STAT */ |
448 | 460 | ||
449 | #define lock_contended(lockdep_map, ip) do {} while (0) | 461 | #define lock_contended(lockdep_map, ip) do {} while (0) |
@@ -452,6 +464,9 @@ do { \ | |||
452 | #define LOCK_CONTENDED(_lock, try, lock) \ | 464 | #define LOCK_CONTENDED(_lock, try, lock) \ |
453 | lock(_lock) | 465 | lock(_lock) |
454 | 466 | ||
467 | #define LOCK_CONTENDED_RETURN(_lock, try, lock) \ | ||
468 | lock(_lock) | ||
469 | |||
455 | #endif /* CONFIG_LOCK_STAT */ | 470 | #endif /* CONFIG_LOCK_STAT */ |
456 | 471 | ||
457 | #ifdef CONFIG_LOCKDEP | 472 | #ifdef CONFIG_LOCKDEP |