All of lore.kernel.org
 help / color / mirror / Atom feed
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: 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>
Subject: Re: [PATCH v5 14/16] drm/sched: Remove FIFO and RR and simplify to a single run queue
Date: Tue, 24 Jun 2025 15:33:35 +0800	[thread overview]
Message-ID: <202506241518.ufRm4IS8-lkp@intel.com> (raw)
In-Reply-To: <20250623122746.46478-15-tvrtko.ursulin@igalia.com>

Hi Tvrtko,

kernel test robot noticed the following build warnings:

[auto build test WARNING on drm/drm-next]
[also build test WARNING on next-20250623]
[cannot apply to linus/master drm-exynos/exynos-drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes drm-misc/drm-misc-next drm-tip/drm-tip v6.16-rc3]
[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-sched-Add-some-scheduling-quality-unit-tests/20250623-202942
base:   git://anongit.freedesktop.org/drm/drm drm-next
patch link:    https://lore.kernel.org/r/20250623122746.46478-15-tvrtko.ursulin%40igalia.com
patch subject: [PATCH v5 14/16] drm/sched: Remove FIFO and RR and simplify to a single run queue
config: i386-buildonly-randconfig-002-20250624 (https://download.01.org/0day-ci/archive/20250624/202506241518.ufRm4IS8-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250624/202506241518.ufRm4IS8-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/202506241518.ufRm4IS8-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> Warning: drivers/gpu/drm/scheduler/sched_rq.c:96 Excess function parameter 'ts' description in 'drm_sched_rq_add_entity'

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2025-06-24  7:33 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 12:27 [PATCH v5 00/16] Fair DRM scheduler Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 01/16] drm/sched: Add some scheduling quality unit tests Tvrtko Ursulin
2025-06-24  8:27   ` kernel test robot
2025-06-23 12:27 ` [PATCH v5 02/16] drm/sched: Add some more " Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 03/16] drm/sched: De-clutter drm_sched_init Tvrtko Ursulin
2025-07-04 12:59   ` Philipp Stanner
2025-07-04 13:02     ` Tvrtko Ursulin
2025-07-04 13:08   ` Maíra Canal
2025-06-23 12:27 ` [PATCH v5 04/16] drm/sched: Avoid double re-lock on the job free path Tvrtko Ursulin
2025-07-04 12:29   ` Maíra Canal
2025-07-04 12:56     ` Philipp Stanner
2025-07-04 13:30       ` Tvrtko Ursulin
2025-07-04 13:59         ` Philipp Stanner
2025-07-04 15:14           ` Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 05/16] drm/sched: Consolidate drm_sched_job_timedout Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 06/16] drm/sched: Consolidate drm_sched_rq_select_entity_rr Tvrtko Ursulin
2025-07-04 13:32   ` Maíra Canal
2025-07-04 13:43     ` Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 07/16] drm/sched: Implement RR via FIFO Tvrtko Ursulin
2025-07-04 13:18   ` Maíra Canal
2025-07-04 13:37     ` Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 08/16] drm/sched: Consolidate entity run queue management Tvrtko Ursulin
2025-07-04 13:51   ` Maíra Canal
2025-07-04 15:32     ` Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 09/16] drm/sched: Move run queue related code into a separate file Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 10/16] drm/sched: Free all finished jobs at once Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 11/16] drm/sched: Account entity GPU time Tvrtko Ursulin
2025-07-04 14:18   ` Maíra Canal
2025-07-07  7:41     ` Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 12/16] drm/sched: Remove idle entity from tree Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 13/16] drm/sched: Add fair scheduling policy Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 14/16] drm/sched: Remove FIFO and RR and simplify to a single run queue Tvrtko Ursulin
2025-06-24  7:33   ` kernel test robot [this message]
2025-06-23 12:27 ` [PATCH v5 15/16] drm/sched: Queue all free credits in one worker invocation Tvrtko Ursulin
2025-06-23 12:27 ` [PATCH v5 16/16] drm/sched: Embed run queue singleton into the scheduler Tvrtko Ursulin

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=202506241518.ufRm4IS8-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=matthew.brost@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=phasta@kernel.org \
    --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.