Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191325
b: refs/heads/master
c: 9313543
h: refs/heads/master
i:
  191323: a8f49fc
v: v3
  • Loading branch information
Frederic Weisbecker committed May 9, 2010
1 parent 18f5e74 commit 8fadc24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 883a2a3189dae9d2912c417e47152f51cb922a3f
refs/heads/master: 93135439459920c4d856f4ab8f068c030085c8df
4 changes: 2 additions & 2 deletions trunk/include/trace/events/lock.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ TRACE_EVENT(lock_acquire,

TRACE_EVENT(lock_release,

TP_PROTO(struct lockdep_map *lock, int nested, unsigned long ip),
TP_PROTO(struct lockdep_map *lock, unsigned long ip),

TP_ARGS(lock, nested, ip),
TP_ARGS(lock, ip),

TP_STRUCT__entry(
__string(name, lock->name)
Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/lockdep.c
Original file line number Diff line number Diff line change
Expand Up @@ -3227,7 +3227,7 @@ void lock_release(struct lockdep_map *lock, int nested,
raw_local_irq_save(flags);
check_flags(flags);
current->lockdep_recursion = 1;
trace_lock_release(lock, nested, ip);
trace_lock_release(lock, ip);
__lock_release(lock, nested, ip);
current->lockdep_recursion = 0;
raw_local_irq_restore(flags);
Expand Down

0 comments on commit 8fadc24

Please sign in to comment.