* [PATCH] i915: reuse %ph to dump small buffers
@ 2015-01-15 11:45 Andy Shevchenko
2015-01-16 10:42 ` shuang.he
0 siblings, 1 reply; 2+ messages in thread
From: Andy Shevchenko @ 2015-01-15 11:45 UTC (permalink / raw)
To: intel-gfx, Daniel Vetter; +Cc: Andy Shevchenko
Instead of pushing each byte via stack the specifier allows to supply the
pointer and length to dump buffers up to 64 bytes long.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/gpu/drm/i915/intel_dp.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 88d81a8..df7b558 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -3773,7 +3773,7 @@ go_again:
intel_dp_stop_link_train(intel_dp);
}
- DRM_DEBUG_KMS("got esi %02x %02x %02x\n", esi[0], esi[1], esi[2]);
+ DRM_DEBUG_KMS("got esi %3ph\n", esi);
ret = drm_dp_mst_hpd_irq(&intel_dp->mst_mgr, esi, &handled);
if (handled) {
@@ -3789,7 +3789,7 @@ go_again:
bret = intel_dp_get_sink_irq_esi(intel_dp, esi);
if (bret == true) {
- DRM_DEBUG_KMS("got esi2 %02x %02x %02x\n", esi[0], esi[1], esi[2]);
+ DRM_DEBUG_KMS("got esi2 %3ph\n", esi);
goto go_again;
}
} else
--
2.1.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] i915: reuse %ph to dump small buffers
2015-01-15 11:45 [PATCH] i915: reuse %ph to dump small buffers Andy Shevchenko
@ 2015-01-16 10:42 ` shuang.he
0 siblings, 0 replies; 2+ messages in thread
From: shuang.he @ 2015-01-16 10:42 UTC (permalink / raw)
To: shuang.he, ethan.gao, intel-gfx, andriy.shevchenko
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang.he@intel.com)
Task id: 5588
-------------------------------------Summary-------------------------------------
Platform Delta drm-intel-nightly Series Applied
PNV 353/353 353/353
ILK 353/353 353/353
SNB -1 400/422 399/422
IVB 487/487 487/487
BYT 296/296 296/296
HSW +21-2 487/508 506/508
BDW 401/402 401/402
-------------------------------------Detailed-------------------------------------
Platform Test drm-intel-nightly Series Applied
*SNB igt_kms_flip_single-buffer-flip-vs-dpms-off-vs-modeset PASS(2, M35M22) NSPT(1, M22)
HSW igt_kms_cursor_crc_cursor-size-change NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_kms_fence_pin_leak NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_kms_flip_dpms-vs-vblank-race DMESG_WARN(1, M20)PASS(1, M19) DMESG_WARN(1, M20)
*HSW igt_kms_flip_flip-vs-dpms-off-vs-modeset PASS(2, M19M20) DMESG_WARN(1, M20)
HSW igt_kms_mmio_vs_cs_flip_setcrtc_vs_cs_flip NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_kms_mmio_vs_cs_flip_setplane_vs_cs_flip NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_lpsp_non-edp NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_cursor NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_cursor-dpms NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_dpms-mode-unset-non-lpsp NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_dpms-non-lpsp NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_drm-resources-equal NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_fences NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_fences-dpms NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_gem-execbuf NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_gem-mmap-cpu NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_gem-mmap-gtt NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_gem-pread NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_i2c NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_modeset-non-lpsp NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_modeset-non-lpsp-stress-no-wait NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_pci-d3-state NSPT(1, M19)PASS(1, M20) PASS(1, M20)
HSW igt_pm_rpm_rte NSPT(1, M19)PASS(1, M20) PASS(1, M20)
Note: You need to pay more attention to line start with '*'
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-01-16 10:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-15 11:45 [PATCH] i915: reuse %ph to dump small buffers Andy Shevchenko
2015-01-16 10:42 ` shuang.he
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox