summaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2013-11-12 15:47:29 -0800
committerKrishna Reddy <vdumpa@nvidia.com>2013-11-13 09:37:04 -0800
commit94c16f42fe617f001428bf711d71af94c4630bf0 (patch)
tree1553adc3b3a47b22f874505f242487e8680132b4 /include/trace
parentcd55fd9cfbfd1d81a70ead8de1bf43e931d567ee (diff)
video: tegra: Fix pin/unpin tracing
When the pin/unpin code in nvmap was rewritten the tracing for the pin and unpin ops was lost. This readds that tracing support. Bug 1390636 Change-Id: I70cfdb750b4992464f5961619986b96c6334e142 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/329893 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Krishna Reddy <vdumpa@nvidia.com>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/nvmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/trace/events/nvmap.h b/include/trace/events/nvmap.h
index 4dbb896800f5..fe50b0baaa85 100644
--- a/include/trace/events/nvmap.h
+++ b/include/trace/events/nvmap.h
@@ -331,7 +331,7 @@ DECLARE_EVENT_CLASS(pin_unpin,
__entry->h, __entry->pin_count)
);
-DEFINE_EVENT(pin_unpin, handle_pin,
+DEFINE_EVENT(pin_unpin, nvmap_pin,
TP_PROTO(struct nvmap_client *client,
const char *name,
struct nvmap_handle *h,
@@ -340,7 +340,7 @@ DEFINE_EVENT(pin_unpin, handle_pin,
TP_ARGS(client, name, h, pin_count)
);
-DEFINE_EVENT(pin_unpin, handle_unpin,
+DEFINE_EVENT(pin_unpin, nvmap_unpin,
TP_PROTO(struct nvmap_client *client,
const char *name,
struct nvmap_handle *h,