diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-07-01 19:48:09 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-07-02 00:03:24 -0400 |
commit | b9c2c9ae882f058084e13e339925dbf8d2d20271 (patch) | |
tree | 2c3baccc55ef03477a4fc3e08473ea35931e56ec /include/drm/drmP.h | |
parent | ac2874b980e05ed7a4ea8fed7b0a92428b51ce58 (diff) |
drm: add per-event vblank event trace points
Allows us to track each process that requests and completes events.
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drmP.h')
-rw-r--r-- | include/drm/drmP.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index c1b987158dfa..8364a705f125 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
@@ -403,6 +403,8 @@ struct drm_pending_event { | |||
403 | struct drm_event *event; | 403 | struct drm_event *event; |
404 | struct list_head link; | 404 | struct list_head link; |
405 | struct drm_file *file_priv; | 405 | struct drm_file *file_priv; |
406 | pid_t pid; /* pid of requester, no guarantee it's valid by the time | ||
407 | we deliver the event, for tracing only */ | ||
406 | void (*destroy)(struct drm_pending_event *event); | 408 | void (*destroy)(struct drm_pending_event *event); |
407 | }; | 409 | }; |
408 | 410 | ||