public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Nitin Gupta <nitin.m.gupta@oracle.com>
Cc: kbuild-all@01.org, "David S. Miller" <davem@davemloft.net>,
	Nitin Gupta <nitin.m.gupta@oracle.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	"Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
	Khalid Aziz <khalid.aziz@oracle.com>,
	Minchan Kim <minchan@kernel.org>,
	"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
	Zhang Zhen <zhenzhang.zhang@huawei.com>,
	Stephen Rothwell <sfr@canb.auug.org.au>,
	Ingo Molnar <mingo@kernel.org>,
	Chris Hyser <chris.hyser@oracle.com>,
	David Hildenbrand <dahi@linux.vnet.ibm.com>,
	Toshi Kani <toshi.kani@hpe.com>, Tony Luck <tony.luck@intel.com>,
	sparclinux@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3] sparc64: Reduce TLB flushes during hugepte changes
Date: Wed, 30 Mar 2016 05:25:44 +0800	[thread overview]
Message-ID: <201603300519.bs8H10eW%fengguang.wu@intel.com> (raw)
In-Reply-To: <1459285913-141365-1-git-send-email-nitin.m.gupta@oracle.com>

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

Hi Nitin,

[auto build test ERROR on sparc/master]
[also build test ERROR on v4.6-rc1 next-20160329]
[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/Nitin-Gupta/sparc64-Reduce-TLB-flushes-during-hugepte-changes/20160330-051327
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git master
config: sparc64-allyesconfig (attached as .config)
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=sparc64 

All errors (new ones prefixed by >>):

   arch/sparc/mm/tlb.c: In function 'tlb_batch_pmd_scan':
>> arch/sparc/mm/tlb.c:158:4: error: too few arguments to function 'tlb_batch_add_one'
       tlb_batch_add_one(mm, vaddr, exec);
       ^
   arch/sparc/mm/tlb.c:69:13: note: declared here
    static void tlb_batch_add_one(struct mm_struct *mm, unsigned long vaddr,
                ^
   arch/sparc/mm/tlb.c: In function 'set_pmd_at':
   arch/sparc/mm/tlb.c:198:4: error: too few arguments to function 'tlb_batch_add_one'
       tlb_batch_add_one(mm, addr, exec);
       ^
   arch/sparc/mm/tlb.c:69:13: note: declared here
    static void tlb_batch_add_one(struct mm_struct *mm, unsigned long vaddr,
                ^
   arch/sparc/mm/tlb.c:199:4: error: too few arguments to function 'tlb_batch_add_one'
       tlb_batch_add_one(mm, addr + REAL_HPAGE_SIZE, exec);
       ^
   arch/sparc/mm/tlb.c:69:13: note: declared here
    static void tlb_batch_add_one(struct mm_struct *mm, unsigned long vaddr,
                ^

vim +/tlb_batch_add_one +158 arch/sparc/mm/tlb.c

9e695d2e David Miller    2012-10-08  152  	pte = pte_offset_map(&pmd, vaddr);
9e695d2e David Miller    2012-10-08  153  	end = vaddr + HPAGE_SIZE;
9e695d2e David Miller    2012-10-08  154  	while (vaddr < end) {
5b1e94fa David S. Miller 2014-04-20  155  		if (pte_val(*pte) & _PAGE_VALID) {
5b1e94fa David S. Miller 2014-04-20  156  			bool exec = pte_exec(*pte);
5b1e94fa David S. Miller 2014-04-20  157  
9e695d2e David Miller    2012-10-08 @158  			tlb_batch_add_one(mm, vaddr, exec);
5b1e94fa David S. Miller 2014-04-20  159  		}
9e695d2e David Miller    2012-10-08  160  		pte++;
9e695d2e David Miller    2012-10-08  161  		vaddr += PAGE_SIZE;

:::::: The code at line 158 was first introduced by commit
:::::: 9e695d2ecc8451cc2c1603d60b5c8e7f5581923a sparc64: Support transparent huge pages.

:::::: TO: David Miller <davem@davemloft.net>
:::::: CC: Linus Torvalds <torvalds@linux-foundation.org>

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

  reply	other threads:[~2016-03-29 21:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-29 21:11 [PATCH v3] sparc64: Reduce TLB flushes during hugepte changes Nitin Gupta
2016-03-29 21:25 ` kbuild test robot [this message]
2016-03-29 22:38 ` kbuild test robot
2016-03-29 23:41 ` David Miller

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=201603300519.bs8H10eW%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=aneesh.kumar@linux.vnet.ibm.com \
    --cc=chris.hyser@oracle.com \
    --cc=dahi@linux.vnet.ibm.com \
    --cc=davem@davemloft.net \
    --cc=kbuild-all@01.org \
    --cc=khalid.aziz@oracle.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=minchan@kernel.org \
    --cc=mingo@kernel.org \
    --cc=nitin.m.gupta@oracle.com \
    --cc=sfr@canb.auug.org.au \
    --cc=sparclinux@vger.kernel.org \
    --cc=tony.luck@intel.com \
    --cc=toshi.kani@hpe.com \
    --cc=zhenzhang.zhang@huawei.com \
    /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