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

Commit a34e8def authored by Shuo Liu's avatar Shuo Liu Committed by Zhenyu Wang
Browse files

drm/i915/gvt: Use dyndbg for gvt debug info



It's better enable/disable and classify gvt debug info dynamically.
This patch change it to dyndbg so can be dynamically enable/disable
each item. All gvt log can be enabled by,
 $ echo 'file *gvt* +p' > /sys/kernel/debug/dynamic_debug/control

Signed-off-by: default avatarShuo Liu <shuo.a.liu@intel.com>
Signed-off-by: default avatarZhenyu Wang <zhenyuw@linux.intel.com>
parent 24f8a29a
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -25,41 +25,41 @@
#define __GVT_DEBUG_H__

#define gvt_err(fmt, args...) \
	DRM_ERROR("gvt: "fmt, ##args)
	pr_err("gvt: "fmt, ##args)

#define gvt_vgpu_err(fmt, args...)					\
do {									\
	if (IS_ERR_OR_NULL(vgpu))					\
		DRM_DEBUG_DRIVER("gvt: "fmt, ##args);			\
		pr_debug("gvt: "fmt, ##args);			\
	else								\
		DRM_DEBUG_DRIVER("gvt: vgpu %d: "fmt, vgpu->id, ##args);\
		pr_debug("gvt: vgpu %d: "fmt, vgpu->id, ##args);\
} while (0)

#define gvt_dbg_core(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: core: "fmt, ##args)
	pr_debug("gvt: core: "fmt, ##args)

#define gvt_dbg_irq(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: irq: "fmt, ##args)
	pr_debug("gvt: irq: "fmt, ##args)

#define gvt_dbg_mm(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: mm: "fmt, ##args)
	pr_debug("gvt: mm: "fmt, ##args)

#define gvt_dbg_mmio(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: mmio: "fmt, ##args)
	pr_debug("gvt: mmio: "fmt, ##args)

#define gvt_dbg_dpy(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: dpy: "fmt, ##args)
	pr_debug("gvt: dpy: "fmt, ##args)

#define gvt_dbg_el(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: el: "fmt, ##args)
	pr_debug("gvt: el: "fmt, ##args)

#define gvt_dbg_sched(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: sched: "fmt, ##args)
	pr_debug("gvt: sched: "fmt, ##args)

#define gvt_dbg_render(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: render: "fmt, ##args)
	pr_debug("gvt: render: "fmt, ##args)

#define gvt_dbg_cmd(fmt, args...) \
	DRM_DEBUG_DRIVER("gvt: cmd: "fmt, ##args)
	pr_debug("gvt: cmd: "fmt, ##args)

#endif