From: kbuild test robot <lkp@intel.com>
To: Dan Williams <dan.j.williams@intel.com>
Cc: kbuild-all@01.org, linux-nvdimm@lists.01.org, hch@lst.de,
linux-mm@kvack.org, linux-fsdevel@vger.kernel.org,
tony.luck@intel.com
Subject: Re: [PATCH 03/11] device-dax: enable page_mapping()
Date: Thu, 31 May 2018 03:54:21 +0800 [thread overview]
Message-ID: <201805310306.5o2l7Hgz%fengguang.wu@intel.com> (raw)
In-Reply-To: <152699998750.24093.5270058390086110946.stgit@dwillia2-desk3.amr.corp.intel.com>
[-- Attachment #1: Type: text/plain, Size: 2829 bytes --]
Hi Dan,
I love your patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v4.17-rc7 next-20180530]
[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/Dan-Williams/mm-Teach-memory_failure-about-ZONE_DEVICE-pages/20180525-035652
config: arm64-allmodconfig (attached as .config)
compiler: aarch64-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=arm64
All errors (new ones prefixed by >>):
drivers//dax/device.c: In function 'dev_dax_huge_fault':
>> drivers//dax/device.c:413:8: error: too many arguments to function '__dev_dax_pud_fault'
rc = __dev_dax_pud_fault(dev_dax, vmf, &pfn);
^~~~~~~~~~~~~~~~~~~
drivers//dax/device.c:380:19: note: declared here
static vm_fault_t __dev_dax_pud_fault(struct dev_dax *dev_dax,
^~~~~~~~~~~~~~~~~~~
vim +/__dev_dax_pud_fault +413 drivers//dax/device.c
386
387 static vm_fault_t dev_dax_huge_fault(struct vm_fault *vmf,
388 enum page_entry_size pe_size)
389 {
390 struct vm_area_struct *vma = vmf->vma;
391 struct file *filp = vma->vm_file;
392 unsigned long fault_size;
393 int rc, id;
394 pfn_t pfn;
395 struct dev_dax *dev_dax = filp->private_data;
396
397 dev_dbg(&dev_dax->dev, "%s: %s (%#lx - %#lx) size = %d\n", current->comm,
398 (vmf->flags & FAULT_FLAG_WRITE) ? "write" : "read",
399 vma->vm_start, vma->vm_end, pe_size);
400
401 id = dax_read_lock();
402 switch (pe_size) {
403 case PE_SIZE_PTE:
404 fault_size = PAGE_SIZE;
405 rc = __dev_dax_pte_fault(dev_dax, vmf, &pfn);
406 break;
407 case PE_SIZE_PMD:
408 fault_size = PMD_SIZE;
409 rc = __dev_dax_pmd_fault(dev_dax, vmf, &pfn);
410 break;
411 case PE_SIZE_PUD:
412 fault_size = PUD_SIZE;
> 413 rc = __dev_dax_pud_fault(dev_dax, vmf, &pfn);
414 break;
415 default:
416 rc = VM_FAULT_SIGBUS;
417 }
418
419 if (rc == VM_FAULT_NOPAGE) {
420 unsigned long i;
421
422 for (i = 0; i < fault_size / PAGE_SIZE; i++) {
423 struct page *page;
424
425 page = pfn_to_page(pfn_t_to_pfn(pfn) + i);
426 if (page->mapping)
427 continue;
428 page->mapping = filp->f_mapping;
429 }
430 }
431 dax_read_unlock(id);
432
433 return rc;
434 }
435
---
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: 59026 bytes --]
next prev parent reply other threads:[~2018-05-30 19:55 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-22 14:39 [PATCH 00/11] mm: Teach memory_failure() about ZONE_DEVICE pages Dan Williams
2018-05-22 14:39 ` [PATCH 01/11] device-dax: convert to vmf_insert_mixed and vm_fault_t Dan Williams
2018-05-22 14:39 ` [PATCH 02/11] device-dax: cleanup vm_fault de-reference chains Dan Williams
2018-05-22 14:39 ` [PATCH 03/11] device-dax: enable page_mapping() Dan Williams
2018-05-23 9:03 ` Jan Kara
2018-05-30 19:54 ` kbuild test robot [this message]
2018-05-22 14:39 ` [PATCH 04/11] device-dax: set page->index Dan Williams
2018-05-22 14:39 ` [PATCH 05/11] filesystem-dax: " Dan Williams
2018-05-23 8:40 ` Jan Kara
2018-05-30 1:38 ` Dan Williams
2018-05-30 8:13 ` Jan Kara
2018-05-30 23:21 ` Dan Williams
2018-05-31 10:08 ` Jan Kara
2018-05-31 21:49 ` Dan Williams
2018-05-22 14:40 ` [PATCH 06/11] filesystem-dax: perform __dax_invalidate_mapping_entry() under the page lock Dan Williams
2018-05-23 9:35 ` Jan Kara
2018-05-23 13:50 ` Dan Williams
2018-05-22 14:40 ` [PATCH 07/11] mm, madvise_inject_error: fix page count leak Dan Williams
2018-05-23 4:19 ` Naoya Horiguchi
2018-05-24 20:55 ` Dan Williams
2018-05-22 14:40 ` [PATCH 08/11] x86, memory_failure: introduce {set, clear}_mce_nospec() Dan Williams
2018-05-22 14:40 ` [PATCH 09/11] mm, memory_failure: pass page size to kill_proc() Dan Williams
2018-05-23 6:41 ` Naoya Horiguchi
2018-05-22 14:40 ` [PATCH 10/11] mm, memory_failure: teach memory_failure() about dev_pagemap pages Dan Williams
2018-05-23 6:48 ` Naoya Horiguchi
2018-05-22 14:40 ` [PATCH 11/11] libnvdimm, pmem: restore page attributes when clearing errors Dan Williams
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=201805310306.5o2l7Hgz%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=dan.j.williams@intel.com \
--cc=hch@lst.de \
--cc=kbuild-all@01.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-nvdimm@lists.01.org \
--cc=tony.luck@intel.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).