Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31817
b: refs/heads/master
c: eb4542b
h: refs/heads/master
i:
  31815: e89b6d5
v: v3
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Jul 3, 2006
1 parent bf878af commit 91a252d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 243c7621aac4ed1aa79524c9a1cecf7c05a28124
refs/heads/master: eb4542b98c81e22e08587b747b21986a45360999
6 changes: 6 additions & 0 deletions trunk/include/linux/wait.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,15 @@ struct task_struct;
#define __WAIT_BIT_KEY_INITIALIZER(word, bit) \
{ .flags = word, .bit_nr = bit, }

/*
* lockdep: we want one lock-class for all waitqueue locks.
*/
extern struct lock_class_key waitqueue_lock_key;

static inline void init_waitqueue_head(wait_queue_head_t *q)
{
spin_lock_init(&q->lock);
lockdep_set_class(&q->lock, &waitqueue_lock_key);
INIT_LIST_HEAD(&q->task_list);
}

Expand Down
4 changes: 4 additions & 0 deletions trunk/kernel/wait.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
#include <linux/wait.h>
#include <linux/hash.h>

struct lock_class_key waitqueue_lock_key;

EXPORT_SYMBOL(waitqueue_lock_key);

void fastcall add_wait_queue(wait_queue_head_t *q, wait_queue_t *wait)
{
unsigned long flags;
Expand Down

0 comments on commit 91a252d

Please sign in to comment.