From: Zhanjun Dong <zhanjun.dong@intel.com>
To: intel-xe@lists.freedesktop.org
Cc: Zhanjun Dong <zhanjun.dong@intel.com>
Subject: [PATCH 0/7] FOR-CI: test null pointer fix
Date: Wed, 18 Sep 2024 09:40:39 -0700 [thread overview]
Message-ID: <20240918164046.1086803-1-zhanjun.dong@intel.com> (raw)
Do not review.
This is for CI to trigger null pointer fix test.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Zhanjun Dong (7):
drm/xe: Add null pointer check for xe_migrate_copy
drm/xe/guc: Prepare GuC register list and update ADS size for error
capture
drm/xe/guc: Add XE_LP steered register lists
drm/xe/guc: Add capture size check in GuC log buffer
drm/xe/guc: Extract GuC error capture lists
drm/xe/guc: Plumb GuC-capture into dev coredump
drm/xe/guc: Save manual engine capture into capture list
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/abi/guc_actions_abi.h | 8 +
drivers/gpu/drm/xe/abi/guc_capture_abi.h | 186 ++
drivers/gpu/drm/xe/abi/guc_log_abi.h | 75 +
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 2 +
drivers/gpu/drm/xe/xe_bo.c | 4 +-
drivers/gpu/drm/xe/xe_devcoredump.c | 20 +-
drivers/gpu/drm/xe/xe_devcoredump_types.h | 8 +
drivers/gpu/drm/xe/xe_gt_mcr.c | 13 +
drivers/gpu/drm/xe/xe_gt_mcr.h | 1 +
drivers/gpu/drm/xe/xe_guc.c | 5 +
drivers/gpu/drm/xe/xe_guc.h | 5 +
drivers/gpu/drm/xe/xe_guc_ads.c | 157 +-
drivers/gpu/drm/xe/xe_guc_ads_types.h | 2 +
drivers/gpu/drm/xe/xe_guc_capture.c | 1938 +++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_capture.h | 61 +
drivers/gpu/drm/xe/xe_guc_capture_types.h | 68 +
drivers/gpu/drm/xe/xe_guc_ct.c | 2 +
drivers/gpu/drm/xe/xe_guc_fwif.h | 26 +-
drivers/gpu/drm/xe/xe_guc_log.c | 101 ++
drivers/gpu/drm/xe/xe_guc_log.h | 10 +-
drivers/gpu/drm/xe/xe_guc_log_types.h | 7 +
drivers/gpu/drm/xe/xe_guc_submit.c | 83 +-
drivers/gpu/drm/xe/xe_guc_submit.h | 2 +
drivers/gpu/drm/xe/xe_guc_types.h | 2 +
drivers/gpu/drm/xe/xe_hw_engine.c | 251 +--
drivers/gpu/drm/xe/xe_hw_engine.h | 6 +-
drivers/gpu/drm/xe/xe_hw_engine_types.h | 66 +-
drivers/gpu/drm/xe/xe_lrc.c | 18 -
drivers/gpu/drm/xe/xe_lrc.h | 19 +-
drivers/gpu/drm/xe/xe_migrate.c | 24 +-
31 files changed, 2781 insertions(+), 390 deletions(-)
create mode 100644 drivers/gpu/drm/xe/abi/guc_capture_abi.h
create mode 100644 drivers/gpu/drm/xe/abi/guc_log_abi.h
create mode 100644 drivers/gpu/drm/xe/xe_guc_capture.c
create mode 100644 drivers/gpu/drm/xe/xe_guc_capture.h
create mode 100644 drivers/gpu/drm/xe/xe_guc_capture_types.h
--
2.34.1
next reply other threads:[~2024-09-18 16:40 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-18 16:40 Zhanjun Dong [this message]
2024-09-18 16:40 ` [PATCH 1/7] drm/xe: Add null pointer check for xe_migrate_copy Zhanjun Dong
2024-09-18 16:40 ` [PATCH 2/7] drm/xe/guc: Prepare GuC register list and update ADS size for error capture Zhanjun Dong
2024-09-18 16:40 ` [PATCH 3/7] drm/xe/guc: Add XE_LP steered register lists Zhanjun Dong
2024-09-18 16:40 ` [PATCH 4/7] drm/xe/guc: Add capture size check in GuC log buffer Zhanjun Dong
2024-09-18 16:40 ` [PATCH 5/7] drm/xe/guc: Extract GuC error capture lists Zhanjun Dong
2024-09-18 16:40 ` [PATCH 6/7] drm/xe/guc: Plumb GuC-capture into dev coredump Zhanjun Dong
2024-09-18 16:40 ` [PATCH 7/7] drm/xe/guc: Save manual engine capture into capture list Zhanjun Dong
2024-09-18 20:58 ` ✓ CI.Patch_applied: success for FOR-CI: test null pointer fix (rev2) Patchwork
2024-09-18 20:58 ` ✗ CI.checkpatch: warning " Patchwork
2024-09-18 20:59 ` ✓ CI.KUnit: success " Patchwork
2024-09-18 21:11 ` ✓ CI.Build: " Patchwork
2024-09-18 21:13 ` ✓ CI.Hooks: " Patchwork
2024-09-18 21:15 ` ✓ CI.checksparse: " Patchwork
2024-09-18 21:33 ` ✓ CI.BAT: " Patchwork
2024-09-19 10:11 ` ✗ CI.FULL: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-09-17 17:43 [PATCH 0/7] FOR-CI: test null pointer fix Zhanjun Dong
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=20240918164046.1086803-1-zhanjun.dong@intel.com \
--to=zhanjun.dong@intel.com \
--cc=intel-xe@lists.freedesktop.org \
/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