linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: qiang.zhang@windriver.com, axboe@kernel.dk, viro@zeniv.linux.org.uk
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
	linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH v2] eventfd: convert global percpu eventfd_wake_count to ctx percpu eventfd_wake_count
Date: Thu, 10 Jun 2021 02:23:14 +0800	[thread overview]
Message-ID: <202106100227.wWAmWLGC-lkp@intel.com> (raw)
In-Reply-To: <20210609032314.27232-1-qiang.zhang@windriver.com>

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

Hi,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on v5.13-rc5 next-20210609]
[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]

url:    https://github.com/0day-ci/linux/commits/qiang-zhang-windriver-com/eventfd-convert-global-percpu-eventfd_wake_count-to-ctx-percpu-eventfd_wake_count/20210609-112354
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 368094df48e680fa51cedb68537408cfa64b788e
config: x86_64-randconfig-a015-20210608 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project d2012d965d60c3258b3a69d024491698f8aec386)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://github.com/0day-ci/linux/commit/e11cefc5baf3f6cfb1ec8cd99b80422b6f592517
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review qiang-zhang-windriver-com/eventfd-convert-global-percpu-eventfd_wake_count-to-ctx-percpu-eventfd_wake_count/20210609-112354
        git checkout e11cefc5baf3f6cfb1ec8cd99b80422b6f592517
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

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

All errors (new ones prefixed by >>):

   In file included from drivers/vhost/net.c:9:
>> include/linux/eventfd.h:37:14: error: field has incomplete type 'struct kref'
           struct kref kref;
                       ^
   include/linux/eventfd.h:37:9: note: forward declaration of 'struct kref'
           struct kref kref;
                  ^
   1 error generated.


vim +37 include/linux/eventfd.h

    35	
    36	struct eventfd_ctx {
  > 37		struct kref kref;
    38		wait_queue_head_t wqh;
    39	       /*
    40		* Every time that a write(2) is performed on an eventfd, the
    41		* value of the __u64 being written is added to "count" and a
    42		* wakeup is performed on "wqh". A read(2) will return the "count"
    43		* value to userspace, and will reset "count" to zero. The kernel
    44		* side eventfd_signal() also, adds to the "count" counter and
    45		* issue a wakeup.
    46		*/
    47		__u64 count;
    48		unsigned int flags;
    49		int id;
    50		int __percpu *eventfd_wake_count;
    51	};
    52	

---
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: 34442 bytes --]

      parent reply	other threads:[~2021-06-09 18:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-09  3:23 [PATCH v2] eventfd: convert global percpu eventfd_wake_count to ctx percpu eventfd_wake_count qiang.zhang
2021-06-09  6:55 ` kernel test robot
2021-06-09 18:23 ` kernel test robot [this message]

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=202106100227.wWAmWLGC-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=axboe@kernel.dk \
    --cc=clang-built-linux@googlegroups.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=qiang.zhang@windriver.com \
    --cc=viro@zeniv.linux.org.uk \
    /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;
as well as URLs for NNTP newsgroup(s).