Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] FOR-CI: test null pointer fix
@ 2024-09-18 16:40 Zhanjun Dong
  2024-09-18 16:40 ` [PATCH 1/7] drm/xe: Add null pointer check for xe_migrate_copy Zhanjun Dong
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Zhanjun Dong @ 2024-09-18 16:40 UTC (permalink / raw)
  To: intel-xe; +Cc: Zhanjun Dong

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


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/7] FOR-CI: test null pointer fix
@ 2024-09-17 17:43 Zhanjun Dong
  2024-09-17 17:43 ` [PATCH 4/7] drm/xe/guc: Add capture size check in GuC log buffer Zhanjun Dong
  0 siblings, 1 reply; 17+ messages in thread
From: Zhanjun Dong @ 2024-09-17 17:43 UTC (permalink / raw)
  To: intel-xe; +Cc: Zhanjun Dong

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_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 +-
 30 files changed, 2779 insertions(+), 388 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


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2024-09-19 10:11 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-18 16:40 [PATCH 0/7] FOR-CI: test null pointer fix Zhanjun Dong
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
2024-09-17 17:43 ` [PATCH 4/7] drm/xe/guc: Add capture size check in GuC log buffer Zhanjun Dong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox