aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/mmio-mod.c
diff options
context:
space:
mode:
authorPekka Paalanen <pq@iki.fi>2008-05-12 15:21:03 -0400
committerThomas Gleixner <tglx@linutronix.de>2008-05-24 05:27:41 -0400
commita50445d76c22a34ae149704ea5adaef171c8acb7 (patch)
treeab176b85f7894e32185ebc385e3586016527b623 /arch/x86/mm/mmio-mod.c
parentdee310d0adf41019aca476052ac3085ff286d9be (diff)
mmiotrace: rename kmmio_probe::user_data to :private.
Signed-off-by: Pekka Paalanen <pq@iki.fi> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/mmio-mod.c')
-rw-r--r--arch/x86/mm/mmio-mod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/mmio-mod.c b/arch/x86/mm/mmio-mod.c
index 3b04a0126121..ed0e0e90b3ef 100644
--- a/arch/x86/mm/mmio-mod.c
+++ b/arch/x86/mm/mmio-mod.c
@@ -191,7 +191,7 @@ static void pre(struct kmmio_probe *p, struct pt_regs *regs,
191 struct mmiotrace_rw *my_trace = &get_cpu_var(cpu_trace); 191 struct mmiotrace_rw *my_trace = &get_cpu_var(cpu_trace);
192 const unsigned long instptr = instruction_pointer(regs); 192 const unsigned long instptr = instruction_pointer(regs);
193 const enum reason_type type = get_ins_type(instptr); 193 const enum reason_type type = get_ins_type(instptr);
194 struct remap_trace *trace = p->user_data; 194 struct remap_trace *trace = p->private;
195 195
196 /* it doesn't make sense to have more than one active trace per cpu */ 196 /* it doesn't make sense to have more than one active trace per cpu */
197 if (my_reason->active_traces) 197 if (my_reason->active_traces)
@@ -299,7 +299,7 @@ static void ioremap_trace_core(resource_size_t offset, unsigned long size,
299 .len = size, 299 .len = size,
300 .pre_handler = pre, 300 .pre_handler = pre,
301 .post_handler = post, 301 .post_handler = post,
302 .user_data = trace 302 .private = trace
303 }, 303 },
304 .phys = offset, 304 .phys = offset,
305 .id = atomic_inc_return(&next_id) 305 .id = atomic_inc_return(&next_id)