From: kernel test robot <lkp@intel.com>
To: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>,
amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
kernel-dev@igalia.com,
"Tvrtko Ursulin" <tvrtko.ursulin@igalia.com>,
"Christian König" <christian.koenig@amd.com>,
"Danilo Krummrich" <dakr@kernel.org>,
"Matthew Brost" <matthew.brost@intel.com>,
"Philipp Stanner" <phasta@kernel.org>,
"Pierre-Eric Pelloux-Prayer" <pierre-eric.pelloux-prayer@amd.com>
Subject: Re: [PATCH v6 06/31] drm/sched: Add some scheduling quality unit tests
Date: Thu, 29 Jan 2026 23:31:09 +0800 [thread overview]
Message-ID: <202601292335.YI2PBzhs-lkp@intel.com> (raw)
In-Reply-To: <20260128110806.38350-7-tvrtko.ursulin@igalia.com>
Hi Tvrtko,
kernel test robot noticed the following build errors:
[auto build test ERROR on drm-misc/drm-misc-next]
[also build test ERROR on drm-xe/drm-xe-next daeinki-drm-exynos/exynos-drm-next drm/drm-next drm-i915/for-linux-next drm-i915/for-linux-next-fixes drm-tip/drm-tip linus/master v6.19-rc7 next-20260128]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Tvrtko-Ursulin/drm-amdgpu-Reject-impossible-entities-early/20260128-191117
base: https://gitlab.freedesktop.org/drm/misc/kernel.git drm-misc-next
patch link: https://lore.kernel.org/r/20260128110806.38350-7-tvrtko.ursulin%40igalia.com
patch subject: [PATCH v6 06/31] drm/sched: Add some scheduling quality unit tests
config: riscv-allyesconfig (https://download.01.org/0day-ci/archive/20260129/202601292335.YI2PBzhs-lkp@intel.com/config)
compiler: clang version 16.0.6 (https://github.com/llvm/llvm-project 7cbf1a2591520c2491aa35339f227775f4d3adf6)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260129/202601292335.YI2PBzhs-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202601292335.YI2PBzhs-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/gpu/drm/scheduler/tests/tests_scheduler.c:676:10: error: initializer element is not a compile-time constant
drm_sched_scheduler_two_clients_attr),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/kunit/test.h:224:13: note: expanded from macro 'KUNIT_CASE_PARAM_ATTR'
.attr = attributes, .module_name = KBUILD_MODNAME}
^~~~~~~~~~
1 error generated.
vim +676 drivers/gpu/drm/scheduler/tests/tests_scheduler.c
672
673 static struct kunit_case drm_sched_scheduler_two_clients_tests[] = {
674 KUNIT_CASE_PARAM_ATTR(drm_sched_scheduler_two_clients_test,
675 drm_sched_scheduler_two_clients_gen_params,
> 676 drm_sched_scheduler_two_clients_attr),
677 {}
678 };
679
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-01-29 15:32 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-28 11:07 [PATCH v6 00/31] Fair(er) DRM scheduler Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 01/31] drm/amdgpu: Reject impossible entities early Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 02/31] drm/amdgpu: Remove redundant missing hw ip handling Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 03/31] drm/sched: Disallow initializing entities with no schedulers Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 04/31] drm/sched: Consolidate entity run queue management Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 05/31] drm/sched: Move run queue related code into a separate file Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 06/31] drm/sched: Add some scheduling quality unit tests Tvrtko Ursulin
2026-01-29 15:31 ` kernel test robot [this message]
2026-02-11 10:56 ` Philipp Stanner
2026-02-12 9:44 ` Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 07/31] drm/sched: Add some more " Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 08/31] drm/sched: Implement RR via FIFO Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 09/31] drm/sched: Free all finished jobs at once Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 10/31] drm/sched: Account entity GPU time Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 11/31] drm/sched: Remove idle entity from tree Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 12/31] drm/sched: Add fair scheduling policy Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 13/31] drm/sched: Favour interactive clients slightly Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 14/31] drm/sched: Switch default policy to fair Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 15/31] drm/sched: Remove FIFO and RR and simplify to a single run queue Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 16/31] drm/sched: Embed run queue singleton into the scheduler Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 17/31] accel/amdxdna: Remove drm_sched_init_args->num_rqs usage Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 18/31] accel/rocket: " Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 19/31] accel/ethosu: " Tvrtko Ursulin
2026-02-18 22:06 ` Rob Herring
2026-01-28 11:07 ` [PATCH v6 20/31] drm/amdgpu: " Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 21/31] drm/etnaviv: " Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 22/31] drm/imagination: " Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 23/31] drm/lima: " Tvrtko Ursulin
2026-01-28 11:07 ` [PATCH v6 24/31] drm/msm: " Tvrtko Ursulin
2026-01-28 11:08 ` [PATCH v6 25/31] drm/nouveau: " Tvrtko Ursulin
2026-01-28 11:08 ` Tvrtko Ursulin
2026-01-28 11:08 ` [PATCH v6 26/31] drm/panfrost: " Tvrtko Ursulin
2026-01-28 11:08 ` [PATCH v6 27/31] drm/panthor: " Tvrtko Ursulin
2026-01-28 11:08 ` [PATCH v6 28/31] drm/sched: " Tvrtko Ursulin
2026-01-28 11:08 ` [PATCH v6 29/31] drm/v3d: " Tvrtko Ursulin
2026-01-28 11:08 ` [PATCH v6 30/31] drm/xe: " Tvrtko Ursulin
2026-01-28 11:08 ` [PATCH v6 31/31] drm/sched: Remove drm_sched_init_args->num_rqs Tvrtko Ursulin
2026-02-11 11:08 ` [PATCH v6 00/31] Fair(er) DRM scheduler Philipp Stanner
2026-02-12 9:56 ` Tvrtko Ursulin
2026-02-12 10:04 ` Philipp Stanner
2026-02-12 10:29 ` Danilo Krummrich
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=202601292335.YI2PBzhs-lkp@intel.com \
--to=lkp@intel.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=christian.koenig@amd.com \
--cc=dakr@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=kernel-dev@igalia.com \
--cc=llvm@lists.linux.dev \
--cc=matthew.brost@intel.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=phasta@kernel.org \
--cc=pierre-eric.pelloux-prayer@amd.com \
--cc=tvrtko.ursulin@igalia.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.