Re: [PATCH] [PATCH v3] drm/i915: move struct_mutex from drm_device to drm_i915_private

2025-07-19 Thread kernel test robot
kernel.org/r/20250718195543.301391-1-luiz.mello%40estudante.ufscar.br patch subject: [PATCH] [PATCH v3] drm/i915: move struct_mutex from drm_device to drm_i915_private config: arm-randconfig-001-20250719 (https://download.01.org/0day-ci/archive/20250719/202507191538.4n49msm3-...@intel.com/config

[PATCH] [PATCH v3] drm/i915: move struct_mutex from drm_device to drm_i915_private

2025-07-18 Thread Luiz Otavio Mello
Includes the missing file drm_device.h, which was unintentionally omitted in v1. i915 is the only remaining user of struct_mutex lock. Move it from drm_device to drm_i915_private so it is only used within the i915 driver. Also update intel_guc_log.c to use the new location of struct_mutex. Sign