From: lkp@intel.com (kbuild test robot)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv2 14/14] treewide: Decouple cacheflush.h and set_memory.h
Date: Sun, 5 Mar 2017 08:03:08 +0800 [thread overview]
Message-ID: <201703050744.8FbsoMEB%fengguang.wu@intel.com> (raw)
In-Reply-To: <1488413706-9739-15-git-send-email-labbott@redhat.com>
Hi Laura,
[auto build test ERROR on linus/master]
[also build test ERROR on next-20170303]
[cannot apply to tip/x86/core drm/drm-next v4.10]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Laura-Abbott/set_memory_-functions-header-refactor/20170305-062939
config: i386-allmodconfig (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All errors (new ones prefixed by >>):
sound/pci/intel8x0.c: In function 'fill_nocache':
>> sound/pci/intel8x0.c:736:3: error: implicit declaration of function 'set_pages_uc' [-Werror=implicit-function-declaration]
set_pages_uc(virt_to_page(buf), size);
^~~~~~~~~~~~
>> sound/pci/intel8x0.c:738:3: error: implicit declaration of function 'set_pages_wb' [-Werror=implicit-function-declaration]
set_pages_wb(virt_to_page(buf), size);
^~~~~~~~~~~~
cc1: some warnings being treated as errors
--
sound/x86/intel_hdmi_audio.c: In function 'had_pcm_hw_params':
>> sound/x86/intel_hdmi_audio.c:1135:11: error: implicit declaration of function 'set_memory_uc' [-Werror=implicit-function-declaration]
retval = set_memory_uc(addr, pages);
^~~~~~~~~~~~~
sound/x86/intel_hdmi_audio.c: In function 'had_pcm_hw_free':
>> sound/x86/intel_hdmi_audio.c:1163:3: error: implicit declaration of function 'set_memory_wb' [-Werror=implicit-function-declaration]
set_memory_wb(addr, pages);
^~~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +/set_pages_uc +736 sound/pci/intel8x0.c
631dd1a8 Justin P. Mattock 2010-10-18 730 * http://download.intel.com/design/chipsets/specupdt/24505108.pdf
^1da177e Linus Torvalds 2005-04-16 731 */
^1da177e Linus Torvalds 2005-04-16 732 static void fill_nocache(void *buf, int size, int nocache)
^1da177e Linus Torvalds 2005-04-16 733 {
^1da177e Linus Torvalds 2005-04-16 734 size = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
6d238cc4 Arjan van de Ven 2008-01-30 735 if (nocache)
6d238cc4 Arjan van de Ven 2008-01-30 @736 set_pages_uc(virt_to_page(buf), size);
6d238cc4 Arjan van de Ven 2008-01-30 737 else
6d238cc4 Arjan van de Ven 2008-01-30 @738 set_pages_wb(virt_to_page(buf), size);
^1da177e Linus Torvalds 2005-04-16 739 }
^1da177e Linus Torvalds 2005-04-16 740 #else
6d238cc4 Arjan van de Ven 2008-01-30 741 #define fill_nocache(buf, size, nocache) do { ; } while (0)
:::::: The code at line 736 was first introduced by commit
:::::: 6d238cc4dc8a36a3915c26202fe49f58a0683fb9 x86: convert CPA users to the new set_page_ API
:::::: TO: Arjan van de Ven <arjan@infradead.org>
:::::: CC: Ingo Molnar <mingo@elte.hu>
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
-------------- next part --------------
A non-text attachment was scrubbed...
Name: .config.gz
Type: application/gzip
Size: 58978 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20170305/d6f4df6d/attachment-0001.gz>
next prev parent reply other threads:[~2017-03-05 0:03 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-02 0:14 [PATCHv2 00/14] set_memory_* functions header refactor Laura Abbott
2017-03-02 0:14 ` [PATCHv2 01/14] treewide: Move set_memory_* functions away from cacheflush.h Laura Abbott
2017-03-02 12:07 ` Russell King - ARM Linux
2017-03-02 14:11 ` Mark Rutland
2017-03-02 0:14 ` [PATCHv2 02/14] arm: Use set_memory.h header Laura Abbott
2017-03-02 12:01 ` Russell King - ARM Linux
2017-03-02 0:14 ` [PATCHv2 03/14] arm64: " Laura Abbott
2017-03-02 14:07 ` Mark Rutland
2017-03-02 15:06 ` Catalin Marinas
2017-03-02 0:14 ` [PATCHv2 04/14] s390: " Laura Abbott
2017-03-02 0:14 ` [PATCHv2 05/14] x86: " Laura Abbott
2017-03-02 8:01 ` Ingo Molnar
2017-03-02 0:14 ` [PATCHv2 06/14] agp: " Laura Abbott
2017-03-02 0:14 ` [PATCHv2 07/14] drm: " Laura Abbott
2017-03-05 1:08 ` kbuild test robot
2017-03-02 0:15 ` [PATCHv2 08/14] intel_th: " Laura Abbott
2017-03-02 11:06 ` Alexander Shishkin
2017-03-02 0:15 ` [PATCHv2 09/14] watchdog: hpwdt: " Laura Abbott
2017-03-02 14:48 ` Guenter Roeck
2017-03-02 0:15 ` [PATCHv2 10/14] bpf: " Laura Abbott
2017-03-02 20:26 ` Daniel Borkmann
2017-03-05 3:01 ` kbuild test robot
2017-03-02 0:15 ` [PATCHv2 11/14] module: " Laura Abbott
2017-03-02 17:09 ` Jessica Yu
2017-03-02 0:15 ` [PATCHv2 12/14] PM / hibernate: " Laura Abbott
2017-03-02 0:15 ` [PATCHv2 13/14] ALSA: hda: " Laura Abbott
2017-03-02 0:15 ` [PATCHv2 14/14] treewide: Decouple cacheflush.h and set_memory.h Laura Abbott
2017-03-02 12:06 ` Russell King - ARM Linux
2017-03-02 14:12 ` Mark Rutland
2017-03-02 15:05 ` Catalin Marinas
2017-03-04 22:57 ` kbuild test robot
2017-03-05 0:03 ` kbuild test robot [this message]
2017-03-02 7:34 ` [PATCHv2 00/14] set_memory_* functions header refactor Heiko Carstens
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=201703050744.8FbsoMEB%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).