x86/kvm/tracing: Use helper function trace_seq_buffer_ptr()
authorSteven Rostedt (Red Hat) <[email protected]>
Wed, 24 Sep 2014 22:52:39 +0000 (18:52 -0400)
committerSteven Rostedt <[email protected]>
Wed, 19 Nov 2014 20:25:36 +0000 (15:25 -0500)
To allow for the restructiong of the trace_seq code, we need users
of it to use the helper functions instead of accessing the internals
of the trace_seq structure itself.

Link: http://lkml.kernel.org/r/[email protected]
Tested-by: Jiri Kosina <[email protected]>
Acked-by: Jiri Kosina <[email protected]>
Acked-by: Paolo Bonzini <[email protected]>
Acked-by: Mark Rustad <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
Cc: Jeff Kirsher <[email protected]>
Signed-off-by: Steven Rostedt <[email protected]>
arch/x86/kvm/mmutrace.h

index 5aaf356417682f2d2c666f187d68d307b5a71d99..ce463a9cc8fb253d426bfabb9bb786a69a26fc55 100644 (file)
@@ -22,7 +22,7 @@
        __entry->unsync = sp->unsync;
 
 #define KVM_MMU_PAGE_PRINTK() ({                                       \
-       const u32 saved_len = p->len;                                   \
+       const char *saved_ptr = trace_seq_buffer_ptr(p);                \
        static const char *access_str[] = {                             \
                "---", "--x", "w--", "w-x", "-u-", "-ux", "wu-", "wux"  \
        };                                                              \
@@ -41,7 +41,7 @@
                         role.nxe ? "" : "!",                           \
                         __entry->root_count,                           \
                         __entry->unsync ? "unsync" : "sync", 0);       \
-       p->buffer + saved_len;                                          \
+       saved_ptr;                                                      \
                })
 
 #define kvm_mmu_trace_pferr_flags       \