linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Xuefeng Wang <wxf.wang@hisilicon.com>
Cc: wxf.wang@hisilicon.com, catalin.marinas@arm.com,
	will.deacon@arm.com, linux-kernel@vger.kernel.org,
	kbuild-all@01.org, guohanjun@huawei.com,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] Use flush tlb last level when change protection
Date: Mon, 25 Feb 2019 22:38:37 +0800	[thread overview]
Message-ID: <201902252238.Q8vwDUB8%fengguang.wu@intel.com> (raw)
In-Reply-To: <1550904447-45567-1-git-send-email-wxf.wang@hisilicon.com>

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

Hi Xuefeng,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on v5.0-rc8 next-20190225]
[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/Xuefeng-Wang/Use-flush-tlb-last-level-when-change-protection/20190225-214747
config: x86_64-randconfig-x017-201908 (attached as .config)
compiler: gcc-8 (Debian 8.2.0-21) 8.2.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   mm/mprotect.c: In function 'change_protection_range':
>> mm/mprotect.c:290:3: error: implicit declaration of function '__flush_tlb_range'; did you mean 'flush_tlb_range'? [-Werror=implicit-function-declaration]
      __flush_tlb_range(vma, start, end, PAGE_SIZE, true);
      ^~~~~~~~~~~~~~~~~
      flush_tlb_range
   cc1: some warnings being treated as errors

vim +290 mm/mprotect.c

   265	
   266	static unsigned long change_protection_range(struct vm_area_struct *vma,
   267			unsigned long addr, unsigned long end, pgprot_t newprot,
   268			int dirty_accountable, int prot_numa)
   269	{
   270		struct mm_struct *mm = vma->vm_mm;
   271		pgd_t *pgd;
   272		unsigned long next;
   273		unsigned long start = addr;
   274		unsigned long pages = 0;
   275	
   276		BUG_ON(addr >= end);
   277		pgd = pgd_offset(mm, addr);
   278		flush_cache_range(vma, addr, end);
   279		inc_tlb_flush_pending(mm);
   280		do {
   281			next = pgd_addr_end(addr, end);
   282			if (pgd_none_or_clear_bad(pgd))
   283				continue;
   284			pages += change_p4d_range(vma, pgd, addr, next, newprot,
   285					 dirty_accountable, prot_numa);
   286		} while (pgd++, addr = next, addr != end);
   287	
   288		/* Only flush the TLB if we actually modified any entries: */
   289		if (pages)
 > 290			__flush_tlb_range(vma, start, end, PAGE_SIZE, true);
   291		dec_tlb_flush_pending(mm);
   292	
   293		return pages;
   294	}
   295	

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

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 30091 bytes --]

[-- Attachment #3: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2019-02-25 14:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-23  6:47 [PATCH] Use flush tlb last level when change protection Xuefeng Wang
2019-02-24 11:08 ` Catalin Marinas
2019-02-25 14:38 ` kbuild test robot [this message]
2019-02-25 15:02 ` kbuild test robot

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=201902252238.Q8vwDUB8%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=catalin.marinas@arm.com \
    --cc=guohanjun@huawei.com \
    --cc=kbuild-all@01.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=will.deacon@arm.com \
    --cc=wxf.wang@hisilicon.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;
as well as URLs for NNTP newsgroup(s).