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/3] media: iris: Add ROI support framework for iris video encoder
Date: Wed, 17 Jun 2026 15:21:14 +0200 [thread overview]
Message-ID: <202606171554.03yt9utn-lkp@intel.com> (raw)
In-Reply-To: <20260616-enc_roi_enable-v1-3-fefcc4e76f33@oss.qualcomm.com>
Hi Deepa,
kernel test robot noticed the following build warnings:
[auto build test WARNING on 06cb687a5132fcffe624c0070576ab852ac6b568]
url: https://github.com/intel-lab-lkp/linux/commits/Deepa-Guthyappa-Madivalara/media-uapi-Introduce-new-control-for-video-encoder-ROI/20260617-074155
base: 06cb687a5132fcffe624c0070576ab852ac6b568
patch link: https://lore.kernel.org/r/20260616-enc_roi_enable-v1-3-fefcc4e76f33%40oss.qualcomm.com
patch subject: [PATCH 3/3] media: iris: Add ROI support framework for iris video encoder
compiler: clang version 22.1.8 (https://github.com/llvm/llvm-project ca7933e47d3a3451d81e72ac174dcb5aa28b59d1)
docutils: docutils (Docutils 0.21.2, Python 3.13.5, on linux)
reproduce: (https://download.01.org/0day-ci/archive/20260617/202606171554.03yt9utn-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/202606171554.03yt9utn-lkp@intel.com/
All warnings (new ones prefixed by >>):
Documentation/userspace-api/landlock:550: ./include/uapi/linux/landlock.h:50: ERROR: Unknown target name: "scope flags". [docutils]
Documentation/userspace-api/landlock:550: ./include/uapi/linux/landlock.h:24: ERROR: Unknown target name: "filesystem flags". [docutils]
Documentation/userspace-api/landlock:559: ./include/uapi/linux/landlock.h:168: ERROR: Unknown target name: "filesystem flags". [docutils]
Documentation/userspace-api/landlock:559: ./include/uapi/linux/landlock.h:191: ERROR: Unknown target name: "network flags". [docutils]
Documentation/networking/skbuff:36: ./include/linux/skbuff.h:181: WARNING: Failed to create a cross reference. A title or caption not found: 'crc' [ref.ref]
>> include/uapi/linux/videodev2.h:1998: WARNING: Invalid xref: std:ref:`v4l2-ctrl-type-s8`. Possible alternatives:
c:type:`V4L.v4l2_ctrl_type` (from userspace-api/media/v4l/vidioc-queryctrl)
c:struct:`v4l2_ctrl_type_ops` (from driver-api/media/v4l2-controls)
c:struct:`v4l2_ctrl_ops` (from driver-api/media/v4l2-controls) [ref.missing]
>> include/uapi/linux/videodev2.h:1998: WARNING: undefined label: 'v4l2-ctrl-type-s8' [ref.ref]
vim +1998 include/uapi/linux/videodev2.h
1944
1945 enum v4l2_ctrl_type {
1946 V4L2_CTRL_TYPE_INTEGER = 1,
1947 V4L2_CTRL_TYPE_BOOLEAN = 2,
1948 V4L2_CTRL_TYPE_MENU = 3,
1949 V4L2_CTRL_TYPE_BUTTON = 4,
1950 V4L2_CTRL_TYPE_INTEGER64 = 5,
1951 V4L2_CTRL_TYPE_CTRL_CLASS = 6,
1952 V4L2_CTRL_TYPE_STRING = 7,
1953 V4L2_CTRL_TYPE_BITMASK = 8,
1954 V4L2_CTRL_TYPE_INTEGER_MENU = 9,
1955
1956 /* Compound types are >= 0x0100 */
1957 V4L2_CTRL_COMPOUND_TYPES = 0x0100,
1958 V4L2_CTRL_TYPE_U8 = 0x0100,
1959 V4L2_CTRL_TYPE_U16 = 0x0101,
1960 V4L2_CTRL_TYPE_U32 = 0x0102,
1961 V4L2_CTRL_TYPE_AREA = 0x0106,
1962 V4L2_CTRL_TYPE_RECT = 0x0107,
1963
1964 V4L2_CTRL_TYPE_HDR10_CLL_INFO = 0x0110,
1965 V4L2_CTRL_TYPE_HDR10_MASTERING_DISPLAY = 0x0111,
1966
1967 V4L2_CTRL_TYPE_H264_SPS = 0x0200,
1968 V4L2_CTRL_TYPE_H264_PPS = 0x0201,
1969 V4L2_CTRL_TYPE_H264_SCALING_MATRIX = 0x0202,
1970 V4L2_CTRL_TYPE_H264_SLICE_PARAMS = 0x0203,
1971 V4L2_CTRL_TYPE_H264_DECODE_PARAMS = 0x0204,
1972 V4L2_CTRL_TYPE_H264_PRED_WEIGHTS = 0x0205,
1973
1974 V4L2_CTRL_TYPE_FWHT_PARAMS = 0x0220,
1975
1976 V4L2_CTRL_TYPE_VP8_FRAME = 0x0240,
1977
1978 V4L2_CTRL_TYPE_MPEG2_QUANTISATION = 0x0250,
1979 V4L2_CTRL_TYPE_MPEG2_SEQUENCE = 0x0251,
1980 V4L2_CTRL_TYPE_MPEG2_PICTURE = 0x0252,
1981
1982 V4L2_CTRL_TYPE_VP9_COMPRESSED_HDR = 0x0260,
1983 V4L2_CTRL_TYPE_VP9_FRAME = 0x0261,
1984
1985 V4L2_CTRL_TYPE_HEVC_SPS = 0x0270,
1986 V4L2_CTRL_TYPE_HEVC_PPS = 0x0271,
1987 V4L2_CTRL_TYPE_HEVC_SLICE_PARAMS = 0x0272,
1988 V4L2_CTRL_TYPE_HEVC_SCALING_MATRIX = 0x0273,
1989 V4L2_CTRL_TYPE_HEVC_DECODE_PARAMS = 0x0274,
1990 V4L2_CTRL_TYPE_HEVC_EXT_SPS_ST_RPS = 0x0275,
1991 V4L2_CTRL_TYPE_HEVC_EXT_SPS_LT_RPS = 0x0276,
1992
1993 V4L2_CTRL_TYPE_AV1_SEQUENCE = 0x280,
1994 V4L2_CTRL_TYPE_AV1_TILE_GROUP_ENTRY = 0x281,
1995 V4L2_CTRL_TYPE_AV1_FRAME = 0x282,
1996 V4L2_CTRL_TYPE_AV1_FILM_GRAIN = 0x283,
1997
> 1998 V4L2_CTRL_TYPE_S8 = 0x284,
1999 };
2000
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
parent reply other threads:[~2026-06-17 13:22 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <20260616-enc_roi_enable-v1-3-fefcc4e76f33@oss.qualcomm.com>]
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=202606171554.03yt9utn-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