From: Zhanjun Dong <zhanjun.dong@intel.com>
To: intel-xe@lists.freedesktop.org
Cc: Zhanjun Dong <zhanjun.dong@intel.com>,
Julia Filipchuk <julia.filipchuk@intel.com>
Subject: [PATCH v3 1/2] drm/xe: Remove extra newlines from LRC snapshot dump
Date: Mon, 29 Jun 2026 13:22:38 -0400 [thread overview]
Message-ID: <20260629172239.2377117-2-zhanjun.dong@intel.com> (raw)
In-Reply-To: <20260629172239.2377117-1-zhanjun.dong@intel.com>
The LRC snapshot printer adds an extra newline before the replay
offset and replay length lines. This leaves blank lines in the
HWCTX section of the dump.
Remove the stray newlines so the snapshot output remains compact
and consistently formatted.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Julia Filipchuk <julia.filipchuk@intel.com>
---
drivers/gpu/drm/xe/xe_lrc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..0b5f0a6d7d13 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -2593,8 +2593,8 @@ void xe_lrc_snapshot_print(struct xe_lrc_snapshot *snapshot, struct drm_printer
}
drm_printf(p, "\n\t[HWCTX].length: 0x%lx\n", snapshot->lrc_size - LRC_PPHWSP_SIZE);
- drm_printf(p, "\n\t[HWCTX].replay_offset: 0x%lx\n", snapshot->replay_offset);
- drm_printf(p, "\n\t[HWCTX].replay_length: 0x%lx\n", snapshot->replay_size);
+ drm_printf(p, "\t[HWCTX].replay_offset: 0x%lx\n", snapshot->replay_offset);
+ drm_printf(p, "\t[HWCTX].replay_length: 0x%lx\n", snapshot->replay_size);
drm_puts(p, "\t[HWCTX].data: ");
for (; i < snapshot->lrc_size; i += sizeof(u32)) {
--
2.34.1
next prev parent reply other threads:[~2026-06-29 17:22 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 17:22 [PATCH v3 0/2] drm/xe/guc: shrink and compress GuC snapshot dumps Zhanjun Dong
2026-06-29 17:22 ` Zhanjun Dong [this message]
2026-06-29 17:22 ` [PATCH v3 2/2] drm/xe/guc: Compress GuC log and CTB dump with zstd Zhanjun Dong
2026-06-30 4:32 ` Matthew Brost
2026-06-30 17:35 ` Dong, Zhanjun
2026-07-13 18:13 ` Dong, Zhanjun
2026-07-13 18:29 ` Matthew Brost
2026-06-30 1:26 ` ✗ CI.checkpatch: warning for drm/xe/guc: shrink and compress GuC snapshot dumps Patchwork
2026-06-30 1:27 ` ✓ CI.KUnit: success " Patchwork
2026-06-30 2:02 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-30 14:34 ` ✗ Xe.CI.FULL: failure " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260629172239.2377117-2-zhanjun.dong@intel.com \
--to=zhanjun.dong@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=julia.filipchuk@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox