Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1300685

Re: [PATCH] xen/events: use virt_xxx barriers

From kbuild test robot <lkp@intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH] xen/events: use virt_xxx barriers
Date 2016-01-04 13:00 +0100
Message-ID <qNbXS-2ZX-59@gated-at.bofh.it> (permalink)
References <qNbOa-2VD-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Hi Michael,

[auto build test ERROR on v4.4-rc8]
[also build test ERROR on next-20151231]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/Michael-S-Tsirkin/xen-events-use-virt_xxx-barriers/20160104-194916
config: x86_64-randconfig-x008-01040711 (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/xen/events/events_fifo.c: In function 'consume_one_event':
>> drivers/xen/events/events_fifo.c:300:3: error: implicit declaration of function 'virt_rmb' [-Werror=implicit-function-declaration]
      virt_rmb(); /* Ensure word is up-to-date before reading head. */
      ^
   cc1: some warnings being treated as errors

vim +/virt_rmb +300 drivers/xen/events/events_fifo.c

   294	
   295		/*
   296		 * Reached the tail last time?  Read the new HEAD from the
   297		 * control block.
   298		 */
   299		if (head == 0) {
 > 300			virt_rmb(); /* Ensure word is up-to-date before reading head. */
   301			head = control_block->head[priority];
   302		}
   303	

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] xen/events: use virt_xxx barriers "Michael S. Tsirkin" <mst@redhat.com> - 2016-01-04 12:50 +0100
  Re: [PATCH] xen/events: use virt_xxx barriers kbuild test robot <lkp@intel.com> - 2016-01-04 13:00 +0100

csiph-web