Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d46ab3c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Fix the mmu pagefault tracepoint"

parents d18ce9af 8a238b46
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -820,14 +820,14 @@ TRACE_EVENT(kgsl_constraint,

TRACE_EVENT(kgsl_mmu_pagefault,

	TP_PROTO(struct kgsl_device *device, unsigned int page,
	TP_PROTO(struct kgsl_device *device, unsigned long page,
		 unsigned int pt, const char *op),

	TP_ARGS(device, page, pt, op),

	TP_STRUCT__entry(
		__string(device_name, device->name)
		__field(unsigned int, page)
		__field(unsigned long, page)
		__field(unsigned int, pt)
		__string(op, op)
	),
@@ -840,7 +840,7 @@ TRACE_EVENT(kgsl_mmu_pagefault,
	),

	TP_printk(
		"d_name=%s page=0x%08x pt=%u op=%s",
		"d_name=%s page=0x%lx pt=%u op=%s",
		__get_str(device_name), __entry->page, __entry->pt,
		__get_str(op)
	)