mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 18:41:48 +00:00
34112deddb
Do not require users of drm_trace.h to include other files just to let it build Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Acked-by: Daniel Vetter <daniel@ffwll.ch> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Maxime Ripard <maxime.ripard@bootlin.com> Cc: Sean Paul <sean@poorly.run> Cc: David Airlie <airlied@linux.ie> Link: https://patchwork.freedesktop.org/patch/msgid/20190526173535.32701-7-sam@ravnborg.org
69 lines
1.7 KiB
C
69 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#if !defined(_DRM_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _DRM_TRACE_H_
|
|
|
|
#include <linux/stringify.h>
|
|
#include <linux/types.h>
|
|
#include <linux/tracepoint.h>
|
|
|
|
struct drm_file;
|
|
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM drm
|
|
#define TRACE_INCLUDE_FILE drm_trace
|
|
|
|
TRACE_EVENT(drm_vblank_event,
|
|
TP_PROTO(int crtc, unsigned int seq),
|
|
TP_ARGS(crtc, seq),
|
|
TP_STRUCT__entry(
|
|
__field(int, crtc)
|
|
__field(unsigned int, seq)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->crtc = crtc;
|
|
__entry->seq = seq;
|
|
),
|
|
TP_printk("crtc=%d, seq=%u", __entry->crtc, __entry->seq)
|
|
);
|
|
|
|
TRACE_EVENT(drm_vblank_event_queued,
|
|
TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
|
|
TP_ARGS(file, crtc, seq),
|
|
TP_STRUCT__entry(
|
|
__field(struct drm_file *, file)
|
|
__field(int, crtc)
|
|
__field(unsigned int, seq)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->file = file;
|
|
__entry->crtc = crtc;
|
|
__entry->seq = seq;
|
|
),
|
|
TP_printk("file=%p, crtc=%d, seq=%u", __entry->file, __entry->crtc, \
|
|
__entry->seq)
|
|
);
|
|
|
|
TRACE_EVENT(drm_vblank_event_delivered,
|
|
TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
|
|
TP_ARGS(file, crtc, seq),
|
|
TP_STRUCT__entry(
|
|
__field(struct drm_file *, file)
|
|
__field(int, crtc)
|
|
__field(unsigned int, seq)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->file = file;
|
|
__entry->crtc = crtc;
|
|
__entry->seq = seq;
|
|
),
|
|
TP_printk("file=%p, crtc=%d, seq=%u", __entry->file, __entry->crtc, \
|
|
__entry->seq)
|
|
);
|
|
|
|
#endif /* _DRM_TRACE_H_ */
|
|
|
|
/* This part must be outside protection */
|
|
#undef TRACE_INCLUDE_PATH
|
|
#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm
|
|
#include <trace/define_trace.h>
|