From: kernel test robot <lkp@intel.com>
To: oe-kbuild@lists.linux.dev
Cc: lkp@intel.com
Subject: Re: [PATCH] drm/vkms: add module parameter to set background color
Date: Fri, 7 Apr 2023 08:10:33 +0800 [thread overview]
Message-ID: <202304070814.lkxMsg96-lkp@intel.com> (raw)
::::::
:::::: Manual check reason: "low confidence static check warning: drivers/gpu/drm/vkms/vkms_composer.c:93:62: sparse: sparse: shift too big (32) for type unsigned long"
::::::
BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20230406172002.124456-1-mcanal@igalia.com>
References: <20230406172002.124456-1-mcanal@igalia.com>
TO: "Maíra Canal" <mcanal@igalia.com>
TO: David Airlie <airlied@gmail.com>
TO: Daniel Vetter <daniel@ffwll.ch>
TO: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
TO: Melissa Wen <mwen@igalia.com>
TO: Haneen Mohammed <hamohammed.sa@gmail.com>
TO: Igor Matheus Andrade Torrente <igormtorrente@gmail.com>
CC: "Maíra Canal" <mcanal@igalia.com>
CC: dri-devel@lists.freedesktop.org
Hi Maíra,
kernel test robot noticed the following build warnings:
[auto build test WARNING on drm-misc/drm-misc-next]
[also build test WARNING on drm-intel/for-linux-next drm-intel/for-linux-next-fixes drm-tip/drm-tip linus/master v6.3-rc5 next-20230406]
[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/Ma-ra-Canal/drm-vkms-add-module-parameter-to-set-background-color/20230407-012233
base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
patch link: https://lore.kernel.org/r/20230406172002.124456-1-mcanal%40igalia.com
patch subject: [PATCH] drm/vkms: add module parameter to set background color
:::::: branch date: 7 hours ago
:::::: commit date: 7 hours ago
config: i386-randconfig-s001-20230403 (https://download.01.org/0day-ci/archive/20230407/202304070814.lkxMsg96-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-8) 11.3.0
reproduce:
# apt-get install sparse
# sparse version: v0.6.4-39-gce1a6720-dirty
# https://github.com/intel-lab-lkp/linux/commit/d725068207852d3b6a0dd795bf224422804101e1
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Ma-ra-Canal/drm-vkms-add-module-parameter-to-set-background-color/20230407-012233
git checkout d725068207852d3b6a0dd795bf224422804101e1
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=i386 olddefconfig
make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=i386 SHELL=/bin/bash drivers/gpu/drm/vkms/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/r/202304070814.lkxMsg96-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/vkms/vkms_composer.c:93:62: sparse: sparse: shift too big (32) for type unsigned long
vim +93 drivers/gpu/drm/vkms/vkms_composer.c
bc0d7fdefec62e0 drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 70
32a1648aca44090 drivers/gpu/drm/vkms/vkms_composer.c Melissa Wen 2021-04-24 71 /**
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 72 * @wb_frame_info: The writeback frame buffer metadata
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 73 * @crtc_state: The crtc state
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 74 * @crc32: The crc output of the final frame
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 75 * @output_buffer: A buffer of a row that will receive the result of the blend(s)
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 76 * @stage_buffer: The line with the pixels from plane being blend to the output
32a1648aca44090 drivers/gpu/drm/vkms/vkms_composer.c Melissa Wen 2021-04-24 77 *
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 78 * This function blends the pixels (Using the `pre_mul_alpha_blend`)
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 79 * from all planes, calculates the crc32 of the output from the former step,
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 80 * and, if necessary, convert and store the output to the writeback buffer.
32a1648aca44090 drivers/gpu/drm/vkms/vkms_composer.c Melissa Wen 2021-04-24 81 */
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 82 static void blend(struct vkms_device *vkms_dev,
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 83 struct vkms_writeback_job *wb,
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 84 struct vkms_crtc_state *crtc_state,
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 85 u32 *crc32, struct line_buffer *stage_buffer,
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 86 struct line_buffer *output_buffer, size_t row_size)
39cba5cf8c2c23c drivers/gpu/drm/vkms/vkms_composer.c Melissa Wen 2020-08-25 87 {
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 88 struct vkms_plane_state **plane = crtc_state->active_planes;
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 89 u32 n_active_planes = crtc_state->num_active_planes;
39cba5cf8c2c23c drivers/gpu/drm/vkms/vkms_composer.c Melissa Wen 2020-08-25 90
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 91 const struct pixel_argb_u16 background_color = {
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 92 .a = 0xffff,
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 @93 .r = (*vkms_dev->config->background_color >> 32) & 0xffff,
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 94 .g = (*vkms_dev->config->background_color >> 16) & 0xffff,
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 95 .b = *vkms_dev->config->background_color & 0xffff,
d725068207852d3 drivers/gpu/drm/vkms/vkms_composer.c Maíra Canal 2023-04-06 96 };
32a1648aca44090 drivers/gpu/drm/vkms/vkms_composer.c Melissa Wen 2021-04-24 97
bc0d7fdefec62e0 drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 98 size_t crtc_y_limit = crtc_state->base.crtc->mode.vdisplay;
39cba5cf8c2c23c drivers/gpu/drm/vkms/vkms_composer.c Melissa Wen 2020-08-25 99
bc0d7fdefec62e0 drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 100 for (size_t y = 0; y < crtc_y_limit; y++) {
bc0d7fdefec62e0 drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 101 fill_background(&background_color, output_buffer);
bc0d7fdefec62e0 drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 102
bc0d7fdefec62e0 drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 103 /* The active planes are composed associatively in z-order. */
bc0d7fdefec62e0 drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 104 for (size_t i = 0; i < n_active_planes; i++) {
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 105 if (!check_y_limit(plane[i]->frame_info, y))
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 106 continue;
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 107
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 108 plane[i]->plane_read(stage_buffer, plane[i]->frame_info, y);
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 109 pre_mul_alpha_blend(plane[i]->frame_info, stage_buffer,
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 110 output_buffer);
db7f419c06d7cce drivers/gpu/drm/vkms/vkms_crc.c Haneen Mohammed 2018-09-06 111 }
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 112
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 113 *crc32 = crc32_le(*crc32, (void *)output_buffer->pixels, row_size);
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 114
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 115 if (wb)
8ba1648567e289c drivers/gpu/drm/vkms/vkms_composer.c Igor Torrente 2022-09-05 116 wb->wb_write(&wb->wb_frame_info, output_buffer, y);
db7f419c06d7cce drivers/gpu/drm/vkms/vkms_crc.c Haneen Mohammed 2018-09-06 117 }
db7f419c06d7cce drivers/gpu/drm/vkms/vkms_crc.c Haneen Mohammed 2018-09-06 118 }
db7f419c06d7cce drivers/gpu/drm/vkms/vkms_crc.c Haneen Mohammed 2018-09-06 119
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next reply other threads:[~2023-04-07 0:11 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-07 0:10 kernel test robot [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-04-08 12:20 [PATCH] drm/vkms: add module parameter to set background color kernel test robot
2023-04-06 17:20 Maíra Canal
2023-04-06 17:28 ` Daniel Vetter
2023-04-06 18:06 ` Maíra Canal
2023-04-06 18:23 ` Daniel Vetter
2023-04-06 18:48 ` Maíra Canal
2023-04-06 21:06 ` kernel test robot
2023-04-06 21:06 ` kernel test robot
2023-04-11 8:26 ` Dan Carpenter
2023-04-11 8:26 ` Dan Carpenter
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=202304070814.lkxMsg96-lkp@intel.com \
--to=lkp@intel.com \
--cc=oe-kbuild@lists.linux.dev \
/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.