[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20161122210511.024ec341@canb.auug.org.au>
Date: Tue, 22 Nov 2016 21:05:11 +1100
From: Stephen Rothwell <sfr@...b.auug.org.au>
To: Andrew Morton <akpm@...ux-foundation.org>,
Alex Williamson <alex.williamson@...hat.com>
Cc: linux-next@...r.kernel.org, linux-kernel@...r.kernel.org,
Kirti Wankhede <kwankhede@...dia.com>,
Neo Jia <cjia@...dia.com>, Lorenzo Stoakes <lstoakes@...il.com>
Subject: linux-next: build failure after merge of the akpm-current tree
Hi Andrew,
After merging the akpm-current tree, today's linux-next build (x86_64
allmodconfig) failed like this:
drivers/vfio/vfio_iommu_type1.c: In function 'vaddr_get_pfn':
drivers/vfio/vfio_iommu_type1.c:364:9: error: too few arguments to function 'get_user_pages_remote'
ret = get_user_pages_remote(NULL, mm, vaddr, 1, flags, page,
^
In file included from include/linux/scatterlist.h:7:0,
from include/linux/iommu.h:26,
from drivers/vfio/vfio_iommu_type1.c:30:
include/linux/mm.h:1274:6: note: declared here
long get_user_pages_remote(struct task_struct *tsk, struct mm_struct *mm,
^
Caused by commit
d6c547ad0c61 ("mm: add locked parameter to get_user_pages_remote()")
interacting with commit
ea85cf353e4f ("vfio iommu type1: Update argument of vaddr_get_pfn()")
from the vfio tree.
I applied this merge fix patch:
From: Stephen Rothwell <sfr@...b.auug.org.au>
Date: Tue, 22 Nov 2016 20:54:27 +1100
Subject: [PATCH] vfio iommu type1: merge fix for get_user_pages_remote API
change
Signed-off-by: Stephen Rothwell <sfr@...b.auug.org.au>
---
drivers/vfio/vfio_iommu_type1.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/vfio/vfio_iommu_type1.c b/drivers/vfio/vfio_iommu_type1.c
index 51810a95416e..cae2e9121e48 100644
--- a/drivers/vfio/vfio_iommu_type1.c
+++ b/drivers/vfio/vfio_iommu_type1.c
@@ -362,7 +362,7 @@ static int vaddr_get_pfn(struct mm_struct *mm, unsigned long vaddr,
down_read(&mm->mmap_sem);
ret = get_user_pages_remote(NULL, mm, vaddr, 1, flags, page,
- NULL);
+ NULL, NULL);
up_read(&mm->mmap_sem);
}
--
2.10.2
--
Cheers,
Stephen Rothwell
Powered by blists - more mailing lists