Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175752
b: refs/heads/master
c: 346b276
h: refs/heads/master
v: v3
  • Loading branch information
Alexander Graf authored and Benjamin Herrenschmidt committed Nov 5, 2009
1 parent a50cb9b commit b45181e
Show file tree
Hide file tree
Showing 2 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: c4f9c779f1019c7d5c61961a7c0aaaf1420d8f90
refs/heads/master: 346b2762a72c60e97d2825e60423c84a869f3266
6 changes: 3 additions & 3 deletions trunk/arch/powerpc/kvm/trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
* Tracepoint for guest mode entry.
*/
TRACE_EVENT(kvm_ppc_instr,
TP_PROTO(unsigned int inst, unsigned long pc, unsigned int emulate),
TP_ARGS(inst, pc, emulate),
TP_PROTO(unsigned int inst, unsigned long _pc, unsigned int emulate),
TP_ARGS(inst, _pc, emulate),

TP_STRUCT__entry(
__field( unsigned int, inst )
Expand All @@ -23,7 +23,7 @@ TRACE_EVENT(kvm_ppc_instr,

TP_fast_assign(
__entry->inst = inst;
__entry->pc = pc;
__entry->pc = _pc;
__entry->emulate = emulate;
),

Expand Down

0 comments on commit b45181e

Please sign in to comment.