linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: kbuild-all@lists.01.org,
	Linux Memory Management List <linux-mm@kvack.org>
Subject: [linux-next:master 3158/4257] drivers/soc/fsl/dpio/dpio-service.c:495:1: warning: the frame size of 1036 bytes is larger than 1024 bytes
Date: Tue, 25 Feb 2020 10:27:32 +0800	[thread overview]
Message-ID: <202002251030.NJMJAY0x%lkp@intel.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2183 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   bdc5461b23ca293a2a83c851423aae0dd32a48c0
commit: 9d98809711ae0ebcfb8115a0bc54604c59908710 [3158/4257] soc: fsl: dpio: Adding QMAN multiple enqueue interface
config: i386-randconfig-d003-20200225 (attached as .config)
compiler: gcc-7 (Debian 7.5.0-5) 7.5.0
reproduce:
        git checkout 9d98809711ae0ebcfb8115a0bc54604c59908710
        # save the attached .config to linux build tree
        make ARCH=i386 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   drivers/soc/fsl/dpio/dpio-service.c: In function 'dpaa2_io_service_enqueue_multiple_desc_fq':
>> drivers/soc/fsl/dpio/dpio-service.c:495:1: warning: the frame size of 1036 bytes is larger than 1024 bytes [-Wframe-larger-than=]
    }
    ^

vim +495 drivers/soc/fsl/dpio/dpio-service.c

   464	
   465	/**
   466	 * dpaa2_io_service_enqueue_multiple_desc_fq() - Enqueue multiple frames
   467	 * to different frame queue using a list of fqids.
   468	 * @d: the given DPIO service.
   469	 * @fqid: the given list of frame queue ids.
   470	 * @fd: the frame descriptor which is enqueued.
   471	 * @nb: number of frames to be enqueud
   472	 *
   473	 * Return 0 for successful enqueue, -EBUSY if the enqueue ring is not ready,
   474	 * or -ENODEV if there is no dpio service.
   475	 */
   476	int dpaa2_io_service_enqueue_multiple_desc_fq(struct dpaa2_io *d,
   477					u32 *fqid,
   478					const struct dpaa2_fd *fd,
   479					int nb)
   480	{
   481		int i;
   482		struct qbman_eq_desc ed[32];
   483	
   484		d = service_select(d);
   485		if (!d)
   486			return -ENODEV;
   487	
   488		for (i = 0; i < nb; i++) {
   489			qbman_eq_desc_clear(&ed[i]);
   490			qbman_eq_desc_set_no_orp(&ed[i], 0);
   491			qbman_eq_desc_set_fq(&ed[i], fqid[i]);
   492		}
   493	
   494		return qbman_swp_enqueue_multiple_desc(d->swp, &ed[0], fd, nb);
 > 495	}
   496	EXPORT_SYMBOL(dpaa2_io_service_enqueue_multiple_desc_fq);
   497	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 42682 bytes --]

                 reply	other threads:[~2020-02-25  2:27 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=202002251030.NJMJAY0x%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-mm@kvack.org \
    /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