From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EA35CCE7A81 for ; Mon, 25 Sep 2023 14:56:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232492AbjIYO4p (ORCPT ); Mon, 25 Sep 2023 10:56:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58296 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231502AbjIYO4n (ORCPT ); Mon, 25 Sep 2023 10:56:43 -0400 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.100]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5D0BA103; Mon, 25 Sep 2023 07:56:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695653796; x=1727189796; h=date:from:to:cc:subject:message-id:mime-version; bh=a6827gPuavvfahrs3++OAZrS8oURq6/e0qMe/+jqp5A=; b=K+v/lVGb9U45HYy3QV1s7VFqJvT1egSKpbnG6U3Yl9uCnhMw9hshu6KB g/PfPs1ZiCV4MWPjR7r95tkCWe+OvnrN1Y5g3EqXh4kyuMiais5PoPhw4 tEubzsbgHFn46YD1tL5d0c+1Q0t+B4iimXtFfhdCpvhGArlkqM72Nqex+ o4zwPt1LfEAilsYLbF383uNM1pb9WOUtcjv6gg71UzaSwzzq8njRhVGGP tHc9Oo/G1t+/IZmD/thWaajzfSBVNDRi2umWk0aiI4D8SA6Uw0+qDg7nE z03wdPrMpfrSECvO1jJuoXw37O/cScN0MI62jB7L5AD1C7f9uETxi2zAA Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10843"; a="447761334" X-IronPort-AV: E=Sophos;i="6.03,175,1694761200"; d="scan'208";a="447761334" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Sep 2023 07:56:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10843"; a="777671146" X-IronPort-AV: E=Sophos;i="6.03,175,1694761200"; d="scan'208";a="777671146" Received: from lkp-server02.sh.intel.com (HELO 32c80313467c) ([10.239.97.151]) by orsmga008.jf.intel.com with ESMTP; 25 Sep 2023 07:56:25 -0700 Received: from kbuild by 32c80313467c with local (Exim 4.96) (envelope-from ) id 1qkn0Y-0001cV-1f; Mon, 25 Sep 2023 14:56:22 +0000 Date: Mon, 25 Sep 2023 22:55:27 +0800 From: kernel test robot To: Yunfei Dong Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org, Mauro Carvalho Chehab , linux-media@vger.kernel.org, George Sun , Hans Verkuil Subject: drivers/media/v4l2-core/v4l2-vp9.c:1834:1: warning: the frame size of 1420 bytes is larger than 1024 bytes Message-ID: <202309252201.HKvcjHQ6-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Yunfei, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 6465e260f48790807eef06b583b38ca9789b6072 commit: 5d418351ca8f17defa1170d968df161c35b810e3 media: mediatek: vcodec: support stateless VP9 decoding date: 1 year, 4 months ago config: csky-randconfig-r012-20220120 (https://download.01.org/0day-ci/archive/20230925/202309252201.HKvcjHQ6-lkp@intel.com/config) compiler: csky-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230925/202309252201.HKvcjHQ6-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 | Closes: https://lore.kernel.org/oe-kbuild-all/202309252201.HKvcjHQ6-lkp@intel.com/ All warnings (new ones prefixed by >>): drivers/media/v4l2-core/v4l2-vp9.c: In function 'v4l2_vp9_adapt_noncoef_probs': >> drivers/media/v4l2-core/v4l2-vp9.c:1834:1: warning: the frame size of 1420 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1834 | } | ^ vim +1834 drivers/media/v4l2-core/v4l2-vp9.c 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1757 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1758 /* 8.4.4 Non coefficient probability adaptation process */ 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1759 void v4l2_vp9_adapt_noncoef_probs(struct v4l2_vp9_frame_context *probs, 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1760 struct v4l2_vp9_frame_symbol_counts *counts, 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1761 u8 reference_mode, u8 interpolation_filter, u8 tx_mode, 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1762 u32 flags) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1763 { 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1764 unsigned int i, j; 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1765 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1766 for (i = 0; i < ARRAY_SIZE(probs->is_inter); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1767 probs->is_inter[i] = adapt_prob(probs->is_inter[i], (*counts->intra_inter)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1768 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1769 for (i = 0; i < ARRAY_SIZE(probs->comp_mode); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1770 probs->comp_mode[i] = adapt_prob(probs->comp_mode[i], (*counts->comp)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1771 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1772 for (i = 0; i < ARRAY_SIZE(probs->comp_ref); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1773 probs->comp_ref[i] = adapt_prob(probs->comp_ref[i], (*counts->comp_ref)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1774 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1775 if (reference_mode != V4L2_VP9_REFERENCE_MODE_COMPOUND_REFERENCE) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1776 for (i = 0; i < ARRAY_SIZE(probs->single_ref); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1777 for (j = 0; j < ARRAY_SIZE(probs->single_ref[0]); j++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1778 probs->single_ref[i][j] = adapt_prob(probs->single_ref[i][j], 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1779 (*counts->single_ref)[i][j]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1780 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1781 for (i = 0; i < ARRAY_SIZE(probs->inter_mode); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1782 adapt_probs_variant_c(probs->inter_mode[i], (*counts->mv_mode)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1783 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1784 for (i = 0; i < ARRAY_SIZE(probs->y_mode); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1785 adapt_probs_variant_d(probs->y_mode[i], (*counts->y_mode)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1786 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1787 for (i = 0; i < ARRAY_SIZE(probs->uv_mode); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1788 adapt_probs_variant_d(probs->uv_mode[i], (*counts->uv_mode)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1789 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1790 for (i = 0; i < ARRAY_SIZE(probs->partition); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1791 adapt_probs_variant_e(probs->partition[i], (*counts->partition)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1792 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1793 for (i = 0; i < ARRAY_SIZE(probs->skip); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1794 probs->skip[i] = adapt_prob(probs->skip[i], (*counts->skip)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1795 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1796 if (interpolation_filter == V4L2_VP9_INTERP_FILTER_SWITCHABLE) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1797 for (i = 0; i < ARRAY_SIZE(probs->interp_filter); i++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1798 adapt_probs_variant_f(probs->interp_filter[i], (*counts->filter)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1799 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1800 if (tx_mode == V4L2_VP9_TX_MODE_SELECT) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1801 for (i = 0; i < ARRAY_SIZE(probs->tx8); i++) { 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1802 adapt_probs_variant_b(probs->tx8[i], (*counts->tx8p)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1803 adapt_probs_variant_f(probs->tx16[i], (*counts->tx16p)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1804 adapt_probs_variant_e(probs->tx32[i], (*counts->tx32p)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1805 } 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1806 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1807 adapt_probs_variant_e(probs->mv.joint, *counts->mv_joint); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1808 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1809 for (i = 0; i < ARRAY_SIZE(probs->mv.sign); i++) { 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1810 probs->mv.sign[i] = adapt_prob(probs->mv.sign[i], (*counts->sign)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1811 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1812 adapt_probs_variant_g(probs->mv.classes[i], (*counts->classes)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1813 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1814 probs->mv.class0_bit[i] = adapt_prob(probs->mv.class0_bit[i], (*counts->class0)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1815 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1816 for (j = 0; j < ARRAY_SIZE(probs->mv.bits[0]); j++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1817 probs->mv.bits[i][j] = adapt_prob(probs->mv.bits[i][j], 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1818 (*counts->bits)[i][j]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1819 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1820 for (j = 0; j < ARRAY_SIZE(probs->mv.class0_fr[0]); j++) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1821 adapt_probs_variant_e(probs->mv.class0_fr[i][j], 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1822 (*counts->class0_fp)[i][j]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1823 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1824 adapt_probs_variant_e(probs->mv.fr[i], (*counts->fp)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1825 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1826 if (!(flags & V4L2_VP9_FRAME_FLAG_ALLOW_HIGH_PREC_MV)) 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1827 continue; 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1828 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1829 probs->mv.class0_hp[i] = adapt_prob(probs->mv.class0_hp[i], 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1830 (*counts->class0_hp)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1831 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1832 probs->mv.hp[i] = adapt_prob(probs->mv.hp[i], (*counts->hp)[i]); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1833 } 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 @1834 } 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1835 EXPORT_SYMBOL_GPL(v4l2_vp9_adapt_noncoef_probs); 3e3b1fb0e5d95c Andrzej Pietrasiewicz 2021-11-16 1836 :::::: The code at line 1834 was first introduced by commit :::::: 3e3b1fb0e5d95c0cd7278717185ca3fb00f5d771 media: Add VP9 v4l2 library :::::: TO: Andrzej Pietrasiewicz :::::: CC: Mauro Carvalho Chehab -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki