From: kernel test robot <lkp@intel.com>
To: Akhil P Oommen <akhilpo@codeaurora.org>,
freedreno <freedreno@lists.freedesktop.org>,
dri-devel@lists.freedesktop.org, linux-arm-msm@vger.kernel.org,
Rob Clark <robdclark@gmail.com>
Cc: kbuild-all@lists.01.org, Douglas Anderson <dianders@chromium.org>,
Jordan Crouse <jordan@cosmicpenguin.net>,
Matthias Kaehlcke <mka@chromium.org>,
Jonathan Marek <jonathan@marek.ca>,
Daniel Vetter <daniel@ffwll.ch>, David Airlie <airlied@linux.ie>
Subject: Re: [PATCH v2 6/6] drm/msm/a6xx: Add a few gmu buffers to coredump
Date: Wed, 24 Nov 2021 16:12:15 +0800 [thread overview]
Message-ID: <202111241604.cGzD1KB0-lkp@intel.com> (raw)
In-Reply-To: <20211124024436.v2.6.Ibfca354efaf274142593a6dbfbedb3de31918ff6@changeid>
Hi Akhil,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on drm/drm-next]
[also build test WARNING on drm-intel/for-linux-next drm-tip/drm-tip v5.16-rc2 next-20211124]
[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]
url: https://github.com/0day-ci/linux/commits/Akhil-P-Oommen/drm-msm-Increase-gpu-boost-interval/20211124-052303
base: git://anongit.freedesktop.org/drm/drm drm-next
config: xtensa-allyesconfig (https://download.01.org/0day-ci/archive/20211124/202111241604.cGzD1KB0-lkp@intel.com/config)
compiler: xtensa-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/9bb31a2940567b37d0eead980d4bef5f4cef7d24
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Akhil-P-Oommen/drm-msm-Increase-gpu-boost-interval/20211124-052303
git checkout 9bb31a2940567b37d0eead980d4bef5f4cef7d24
# save the config file to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=xtensa
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/msm/adreno/a6xx_gpu_state.c:1244:6: warning: no previous prototype for 'a6xx_gmu_show' [-Wmissing-prototypes]
1244 | void a6xx_gmu_show(struct a6xx_gmu_state *gmu_state, struct drm_printer *p)
| ^~~~~~~~~~~~~
vim +/a6xx_gmu_show +1244 drivers/gpu/drm/msm/adreno/a6xx_gpu_state.c
1243
> 1244 void a6xx_gmu_show(struct a6xx_gmu_state *gmu_state, struct drm_printer *p)
1245 {
1246 int i;
1247
1248 drm_puts(p, "gmu-log:\n");
1249 if (gmu_state->log_bo) {
1250 struct msm_gpu_state_bo *log_bo = gmu_state->log_bo;
1251
1252 drm_printf(p, " iova: 0x%016llx\n", log_bo->iova);
1253 drm_printf(p, " size: %zu\n", log_bo->size);
1254 adreno_show_object(p, &log_bo->data, log_bo->size,
1255 &log_bo->encoded);
1256 }
1257
1258 drm_puts(p, "gmu-hfi:\n");
1259 if (gmu_state->hfi_bo) {
1260 struct msm_gpu_state_bo *hfi_bo = gmu_state->hfi_bo;
1261
1262 drm_printf(p, " iova: 0x%016llx\n", hfi_bo->iova);
1263 drm_printf(p, " size: %zu\n", hfi_bo->size);
1264 adreno_show_object(p, &hfi_bo->data, hfi_bo->size,
1265 &hfi_bo->encoded);
1266 }
1267
1268 drm_puts(p, "gmu-debug:\n");
1269 if (gmu_state->debug_bo) {
1270 struct msm_gpu_state_bo *debug_bo = gmu_state->debug_bo;
1271
1272 drm_printf(p, " iova: 0x%016llx\n", debug_bo->iova);
1273 drm_printf(p, " size: %zu\n", debug_bo->size);
1274 adreno_show_object(p, &debug_bo->data, debug_bo->size,
1275 &debug_bo->encoded);
1276 }
1277
1278 drm_puts(p, "registers-gmu:\n");
1279 for (i = 0; i < gmu_state->nr_registers; i++) {
1280 struct a6xx_gpu_state_obj *obj = &gmu_state->registers[i];
1281 const struct a6xx_registers *regs = obj->handle;
1282
1283 if (!obj->handle)
1284 continue;
1285
1286 a6xx_show_registers(regs->registers, obj->data, regs->count, p);
1287 }
1288 }
1289
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
next prev parent reply other threads:[~2021-11-24 8:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-23 21:17 [PATCH v2 1/6] drm/msm: Increase gpu boost interval Akhil P Oommen
2021-11-23 21:17 ` [PATCH v2 2/6] drm/msm: Fix null ptr dereference in msm_ioctl_gem_submit() Akhil P Oommen
2021-11-23 21:17 ` [PATCH v2 3/6] drm/msm/a6xx: Fix smatch warning for gpu_scid Akhil P Oommen
2021-11-23 21:17 ` [PATCH v2 4/6] drm/msm/a6xx: Capture gmu log in devcoredump Akhil P Oommen
2021-11-23 23:03 ` Bjorn Andersson
2021-11-24 10:20 ` Akhil P Oommen
2021-11-23 21:17 ` [PATCH v2 5/6] drm/msm: Add a module param to force coredump Akhil P Oommen
2021-11-23 21:17 ` [PATCH v2 6/6] drm/msm/a6xx: Add a few gmu buffers to coredump Akhil P Oommen
2021-11-23 21:36 ` Akhil P Oommen
2021-11-24 8:12 ` kernel test robot [this message]
2021-11-24 12:28 ` kernel test robot
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=202111241604.cGzD1KB0-lkp@intel.com \
--to=lkp@intel.com \
--cc=airlied@linux.ie \
--cc=akhilpo@codeaurora.org \
--cc=daniel@ffwll.ch \
--cc=dianders@chromium.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jonathan@marek.ca \
--cc=jordan@cosmicpenguin.net \
--cc=kbuild-all@lists.01.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=mka@chromium.org \
--cc=robdclark@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox