[Intel-gfx] [PATCH] drm/i915/gt: Schedule request retirement when submission idles
kbuild test robot
lkp at intel.com
Mon Nov 18 21:30:45 UTC 2019
Hi Chris,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on next-20191118]
[cannot apply to v5.4-rc8]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/Chris-Wilson/drm-i915-gt-Schedule-request-retirement-when-submission-idles/20191119-023819
base: git://anongit.freedesktop.org/drm-intel for-linux-next
config: i386-defconfig (attached as .config)
compiler: gcc-7 (Debian 7.4.0-14) 7.4.0
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp at intel.com>
All errors (new ones prefixed by >>):
drivers/gpu/drm/i915/gt/intel_lrc.c: In function 'execlists_submission_tasklet':
>> drivers/gpu/drm/i915/gt/intel_lrc.c:2235:7: error: implicit declaration of function 'execlists_execlists'; did you mean 'execlists_active'? [-Werror=implicit-function-declaration]
if (!execlists_execlists(&engine->execlists))
^~~~~~~~~~~~~~~~~~~
execlists_active
cc1: some warnings being treated as errors
vim +2235 drivers/gpu/drm/i915/gt/intel_lrc.c
2205
2206 /*
2207 * Check the unread Context Status Buffers and manage the submission of new
2208 * contexts to the ELSP accordingly.
2209 */
2210 static void execlists_submission_tasklet(unsigned long data)
2211 {
2212 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
2213 bool timeout = preempt_timeout(engine);
2214
2215 process_csb(engine);
2216 if (!READ_ONCE(engine->execlists.pending[0]) || timeout) {
2217 unsigned long flags;
2218
2219 spin_lock_irqsave(&engine->active.lock, flags);
2220 __execlists_submission_tasklet(engine);
2221 spin_unlock_irqrestore(&engine->active.lock, flags);
2222
2223 /* Recheck after serialising with direct-submission */
2224 if (timeout && preempt_timeout(engine))
2225 preempt_reset(engine);
2226 }
2227
2228 /*
2229 * If the GPU is currently idle, retire the outstanding completed
2230 * requests. This will allow us to enter soft-rc6 as soon as possible,
2231 * albeit at the cost of running the retire worker much more frequently
2232 * (over the entire GT not just this engine) and emitting more idle
2233 * barriers (i.e. kernel context switches) which may some extra latency.
2234 */
> 2235 if (!execlists_execlists(&engine->execlists))
2236 intel_gt_schedule_retire_requests(engine->gt);
2237 }
2238
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org Intel Corporation
-------------- next part --------------
A non-text attachment was scrubbed...
Name: .config.gz
Type: application/gzip
Size: 28187 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/intel-gfx/attachments/20191119/f81c6a03/attachment-0001.gz>
More information about the Intel-gfx
mailing list