-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andi Kleen
authored and
Al Viro
committed
May 30, 2012
1 parent
88c23e5
commit 31dd6f1
Showing
6 changed files
with
118 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 9dd6fa03ab31bb57cee4623a689d058d222fbe68 | ||
refs/heads/master: eea62f831b8030b0eeea8314eed73b6132d1de26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* See include/linux/lglock.h for description */ | ||
#include <linux/module.h> | ||
#include <linux/lglock.h> | ||
#include <linux/cpu.h> | ||
#include <linux/string.h> | ||
|
||
/* | ||
* Note there is no uninit, so lglocks cannot be defined in | ||
* modules (but it's fine to use them from there) | ||
* Could be added though, just undo lg_lock_init | ||
*/ | ||
|
||
void lg_lock_init(struct lglock *lg, char *name) | ||
{ | ||
LOCKDEP_INIT_MAP(&lg->lock_dep_map, name, &lg->lock_key, 0); | ||
} | ||
EXPORT_SYMBOL(lg_lock_init); | ||
|
||
void lg_local_lock(struct lglock *lg) | ||
{ | ||
arch_spinlock_t *lock; | ||
|
||
preempt_disable(); | ||
rwlock_acquire_read(&lg->lock_dep_map, 0, 0, _RET_IP_); | ||
lock = this_cpu_ptr(lg->lock); | ||
arch_spin_lock(lock); | ||
} | ||
EXPORT_SYMBOL(lg_local_lock); | ||
|
||
void lg_local_unlock(struct lglock *lg) | ||
{ | ||
arch_spinlock_t *lock; | ||
|
||
rwlock_release(&lg->lock_dep_map, 1, _RET_IP_); | ||
lock = this_cpu_ptr(lg->lock); | ||
arch_spin_unlock(lock); | ||
preempt_enable(); | ||
} | ||
EXPORT_SYMBOL(lg_local_unlock); | ||
|
||
void lg_local_lock_cpu(struct lglock *lg, int cpu) | ||
{ | ||
arch_spinlock_t *lock; | ||
|
||
preempt_disable(); | ||
rwlock_acquire_read(&lg->lock_dep_map, 0, 0, _RET_IP_); | ||
lock = per_cpu_ptr(lg->lock, cpu); | ||
arch_spin_lock(lock); | ||
} | ||
EXPORT_SYMBOL(lg_local_lock_cpu); | ||
|
||
void lg_local_unlock_cpu(struct lglock *lg, int cpu) | ||
{ | ||
arch_spinlock_t *lock; | ||
|
||
rwlock_release(&lg->lock_dep_map, 1, _RET_IP_); | ||
lock = per_cpu_ptr(lg->lock, cpu); | ||
arch_spin_unlock(lock); | ||
preempt_enable(); | ||
} | ||
EXPORT_SYMBOL(lg_local_unlock_cpu); | ||
|
||
void lg_global_lock(struct lglock *lg) | ||
{ | ||
int i; | ||
|
||
preempt_disable(); | ||
rwlock_acquire(&lg->lock_dep_map, 0, 0, _RET_IP_); | ||
for_each_possible_cpu(i) { | ||
arch_spinlock_t *lock; | ||
lock = per_cpu_ptr(lg->lock, i); | ||
arch_spin_lock(lock); | ||
} | ||
} | ||
EXPORT_SYMBOL(lg_global_lock); | ||
|
||
void lg_global_unlock(struct lglock *lg) | ||
{ | ||
int i; | ||
|
||
rwlock_release(&lg->lock_dep_map, 1, _RET_IP_); | ||
for_each_possible_cpu(i) { | ||
arch_spinlock_t *lock; | ||
lock = per_cpu_ptr(lg->lock, i); | ||
arch_spin_unlock(lock); | ||
} | ||
preempt_enable(); | ||
} | ||
EXPORT_SYMBOL(lg_global_unlock); |