linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: robert.foss@collabora.com
Cc: kbuild-all@01.org, akpm@linux-foundation.org,
	kirill.shutemov@linux.intel.com, vbabka@suse.cz, mhocko@suse.com,
	mingo@kernel.org, dave.hansen@linux.intel.com,
	hannes@cmpxchg.org, dan.j.williams@intel.com,
	iamjoonsoo.kim@lge.com, acme@redhat.com, keescook@chromium.org,
	mgorman@techsingularity.net, atomlin@redhat.com,
	hughd@google.com, dyoung@redhat.com, viro@zeniv.linux.org.uk,
	dcashman@google.com, w@1wt.eu, idryomov@gmail.com,
	yang.shi@linaro.org, wad@chromium.org, vkuznets@redhat.com,
	vdavydov@virtuozzo.com, vitalywool@gmail.com, oleg@redhat.com,
	gang.chen.5i5j@gmail.com, koct9i@gmail.com, aarcange@redhat.com,
	aryabinin@virtuozzo.com, kuleshovmail@gmail.com,
	minchan@kernel.org, mguzik@redhat.com, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org, krasin@google.com,
	Roland McGrath <mcgrathr@chromium.org>,
	Mandeep Singh Baines <msb@chromium.org>,
	Ben Zhang <benzh@chromium.org>,
	Filipe Brandenburger <filbranden@chromium.org>
Subject: Re: [PATCH v1] mm, sysctl: Add sysctl for controlling VM_MAYEXEC taint
Date: Sat, 27 Aug 2016 01:17:05 +0800	[thread overview]
Message-ID: <201608270104.7xTlu0Hk%fengguang.wu@intel.com> (raw)
In-Reply-To: <1472229004-9658-1-git-send-email-robert.foss@collabora.com>

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

Hi Will,

[auto build test ERROR on mmotm/master]
[also build test ERROR on v4.8-rc3 next-20160825]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]

url:    https://github.com/0day-ci/linux/commits/robert-foss-collabora-com/mm-sysctl-Add-sysctl-for-controlling-VM_MAYEXEC-taint/20160827-003416
base:   git://git.cmpxchg.org/linux-mmotm.git master
config: sh-rsk7269_defconfig (attached as .config)
compiler: sh4-linux-gnu-gcc (Debian 5.4.0-6) 5.4.0 20160609
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=sh 

All errors (new ones prefixed by >>):

>> mm/util.c:433:46: error: 'CONFIG_MMAP_NOEXEC_TAINT' undeclared here (not in a function)
    int sysctl_mmap_noexec_taint __read_mostly = CONFIG_MMAP_NOEXEC_TAINT;
                                                 ^

vim +/CONFIG_MMAP_NOEXEC_TAINT +433 mm/util.c

   427	EXPORT_SYMBOL_GPL(__page_mapcount);
   428	
   429	int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS;
   430	int sysctl_overcommit_ratio __read_mostly = 50;
   431	unsigned long sysctl_overcommit_kbytes __read_mostly;
   432	int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
 > 433	int sysctl_mmap_noexec_taint __read_mostly = CONFIG_MMAP_NOEXEC_TAINT;
   434	unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */
   435	unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */
   436	

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

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 10558 bytes --]

  reply	other threads:[~2016-08-26 17:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-26 16:30 [PATCH v1] mm, sysctl: Add sysctl for controlling VM_MAYEXEC taint robert.foss
2016-08-26 17:17 ` kbuild test robot [this message]
2016-08-26 21:32 ` Kirill A. Shutemov
2016-08-29 15:25   ` Will Drewry
2016-08-29 15:31     ` Robert Foss

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=201608270104.7xTlu0Hk%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=aarcange@redhat.com \
    --cc=acme@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=aryabinin@virtuozzo.com \
    --cc=atomlin@redhat.com \
    --cc=benzh@chromium.org \
    --cc=dan.j.williams@intel.com \
    --cc=dave.hansen@linux.intel.com \
    --cc=dcashman@google.com \
    --cc=dyoung@redhat.com \
    --cc=filbranden@chromium.org \
    --cc=gang.chen.5i5j@gmail.com \
    --cc=hannes@cmpxchg.org \
    --cc=hughd@google.com \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=idryomov@gmail.com \
    --cc=kbuild-all@01.org \
    --cc=keescook@chromium.org \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=koct9i@gmail.com \
    --cc=krasin@google.com \
    --cc=kuleshovmail@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mcgrathr@chromium.org \
    --cc=mgorman@techsingularity.net \
    --cc=mguzik@redhat.com \
    --cc=mhocko@suse.com \
    --cc=minchan@kernel.org \
    --cc=mingo@kernel.org \
    --cc=msb@chromium.org \
    --cc=oleg@redhat.com \
    --cc=robert.foss@collabora.com \
    --cc=vbabka@suse.cz \
    --cc=vdavydov@virtuozzo.com \
    --cc=viro@zeniv.linux.org.uk \
    --cc=vitalywool@gmail.com \
    --cc=vkuznets@redhat.com \
    --cc=w@1wt.eu \
    --cc=wad@chromium.org \
    --cc=yang.shi@linaro.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).