From: kernel test robot <lkp@intel.com>
To: Deepa Guthyappa Madivalara <deepa.madivalara@oss.qualcomm.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Vikash Garodia <vikash.garodia@oss.qualcomm.com>,
Dikshita Agarwal <dikshita.agarwal@oss.qualcomm.com>,
Abhinav Kumar <abhinav.kumar@linux.dev>,
Bryan O'Donoghue <bod@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, linux-media@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
Deepa Guthyappa Madivalara <deepa.madivalara@oss.qualcomm.com>
Subject: Re: [PATCH 3/5] media: iris: Add support for AV1 format in iris decoder
Date: Thu, 2 Oct 2025 16:57:33 +0800 [thread overview]
Message-ID: <202510021620.4BVCZwgf-lkp@intel.com> (raw)
In-Reply-To: <20251001-av1_irisdecoder-v1-3-9fb08f3b96a0@oss.qualcomm.com>
Hi Deepa,
kernel test robot noticed the following build errors:
[auto build test ERROR on afb100a5ea7a13d7e6937dcd3b36b19dc6cc9328]
url: https://github.com/intel-lab-lkp/linux/commits/Deepa-Guthyappa-Madivalara/media-uapi-videodev2-Add-support-for-AV1-stateful-decoder/20251002-030314
base: afb100a5ea7a13d7e6937dcd3b36b19dc6cc9328
patch link: https://lore.kernel.org/r/20251001-av1_irisdecoder-v1-3-9fb08f3b96a0%40oss.qualcomm.com
patch subject: [PATCH 3/5] media: iris: Add support for AV1 format in iris decoder
config: s390-randconfig-001-20251002 (https://download.01.org/0day-ci/archive/20251002/202510021620.4BVCZwgf-lkp@intel.com/config)
compiler: s390-linux-gcc (GCC) 14.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251002/202510021620.4BVCZwgf-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/202510021620.4BVCZwgf-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
>> drivers/media/platform/qcom/iris/iris_platform_sm8250.c:20:24: error: array type has incomplete element type 'struct iris_fmt'
20 | static struct iris_fmt platform_fmts_sm8250_dec[] = {
| ^~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/media/platform/qcom/iris/iris_platform_sm8250.c:21:10: error: 'IRIS_FMT_H264' undeclared here (not in a function)
21 | [IRIS_FMT_H264] = {
| ^~~~~~~~~~~~~
>> drivers/media/platform/qcom/iris/iris_platform_sm8250.c:25:10: error: 'IRIS_FMT_HEVC' undeclared here (not in a function)
25 | [IRIS_FMT_HEVC] = {
| ^~~~~~~~~~~~~
>> drivers/media/platform/qcom/iris/iris_platform_sm8250.c:29:10: error: 'IRIS_FMT_VP9' undeclared here (not in a function)
29 | [IRIS_FMT_VP9] = {
| ^~~~~~~~~~~~
In file included from include/linux/dev_printk.h:14,
from include/linux/device.h:15,
from include/linux/pm_domain.h:11,
from drivers/media/platform/qcom/iris/iris_core.h:10,
from drivers/media/platform/qcom/iris/iris_platform_sm8250.c:6:
include/linux/compiler.h:197:82: error: expression in static assertion is not an integer
197 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
| ^
include/linux/compiler.h:202:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
202 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
| ^~~~~~~~~~~~~~~~~~~~~~~
include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
| ^~~~~~~~~~~~~~~
drivers/media/platform/qcom/iris/iris_platform_sm8250.c:356:32: note: in expansion of macro 'ARRAY_SIZE'
356 | .inst_iris_fmts_size = ARRAY_SIZE(platform_fmts_sm8250_dec),
| ^~~~~~~~~~
>> drivers/media/platform/qcom/iris/iris_platform_sm8250.c:20:24: warning: 'platform_fmts_sm8250_dec' defined but not used [-Wunused-variable]
20 | static struct iris_fmt platform_fmts_sm8250_dec[] = {
| ^~~~~~~~~~~~~~~~~~~~~~~~
vim +20 drivers/media/platform/qcom/iris/iris_platform_sm8250.c
19
> 20 static struct iris_fmt platform_fmts_sm8250_dec[] = {
> 21 [IRIS_FMT_H264] = {
22 .pixfmt = V4L2_PIX_FMT_H264,
23 .type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE,
24 },
> 25 [IRIS_FMT_HEVC] = {
26 .pixfmt = V4L2_PIX_FMT_HEVC,
27 .type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE,
28 },
> 29 [IRIS_FMT_VP9] = {
30 .pixfmt = V4L2_PIX_FMT_VP9,
31 .type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE,
32 }
33 };
34
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-10-02 8:57 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-01 19:00 [PATCH 0/5] Enable support for AV1 stateful decoder Deepa Guthyappa Madivalara
2025-10-01 19:00 ` [PATCH 1/5] media: uapi: videodev2: Add " Deepa Guthyappa Madivalara
2025-10-02 19:42 ` Nicolas Dufresne
2025-10-02 21:52 ` Deepa Guthyappa Madivalara
2025-10-01 19:00 ` [PATCH 2/5] media: v4l2: Add description for V4L2_PIX_FMT_AV1 in v4l_fill_fmtdesc() Deepa Guthyappa Madivalara
2025-10-02 19:43 ` Nicolas Dufresne
2025-10-02 22:32 ` Deepa Guthyappa Madivalara
2025-10-01 19:00 ` [PATCH 3/5] media: iris: Add support for AV1 format in iris decoder Deepa Guthyappa Madivalara
2025-10-01 22:51 ` Bryan O'Donoghue
2025-10-02 8:57 ` kernel test robot [this message]
2025-10-01 19:00 ` [PATCH 4/5] media: iris: Define AV1-specific platform capabilities and properties Deepa Guthyappa Madivalara
2025-10-01 23:07 ` Bryan O'Donoghue
2025-10-01 19:00 ` [PATCH 5/5] media: iris: Add internal buffer calculation for AV1 decoder Deepa Guthyappa Madivalara
2025-10-01 23:30 ` Bryan O'Donoghue
2025-10-02 12:38 ` Nicolas Dufresne
2025-10-02 19:37 ` Deepa Guthyappa Madivalara
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=202510021620.4BVCZwgf-lkp@intel.com \
--to=lkp@intel.com \
--cc=abhinav.kumar@linux.dev \
--cc=bod@kernel.org \
--cc=deepa.madivalara@oss.qualcomm.com \
--cc=dikshita.agarwal@oss.qualcomm.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=vikash.garodia@oss.qualcomm.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