From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v16 Kernel 4/7] vfio iommu: Implementation of ioctl for dirty pages tracking.
Date: Fri, 27 Mar 2020 02:47:04 +0800 [thread overview]
Message-ID: <202003270232.5Ore7idy%lkp@intel.com> (raw)
In-Reply-To: <1585078359-20124-5-git-send-email-kwankhede@nvidia.com>
[-- Attachment #1: Type: text/plain, Size: 1825 bytes --]
Hi Kirti,
I love your patch! Yet something to improve:
[auto build test ERROR on vfio/next]
[also build test ERROR on next-20200326]
[cannot apply to v5.6-rc7]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/Kirti-Wankhede/KABIs-to-support-migration-for-VFIO-devices/20200326-043159
base: https://github.com/awilliam/linux-vfio.git next
config: i386-randconfig-c001-20200326 (attached as .config)
compiler: gcc-7 (Debian 7.5.0-5) 7.5.0
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
ld: drivers/vfio/vfio_iommu_type1.o: in function `vfio_dma_bitmap_alloc':
>> drivers/vfio/vfio_iommu_type1.c:197: undefined reference to `__udivdi3'
ld: drivers/vfio/vfio_iommu_type1.o: in function `vfio_dma_populate_bitmap':
drivers/vfio/vfio_iommu_type1.c:225: undefined reference to `__udivdi3'
vim +197 drivers/vfio/vfio_iommu_type1.c
193
194
195 static int vfio_dma_bitmap_alloc(struct vfio_dma *dma, uint64_t pgsize)
196 {
> 197 uint64_t npages = dma->size / pgsize;
198
199 if (npages > DIRTY_BITMAP_PAGES_MAX)
200 return -EINVAL;
201
202 dma->bitmap = kvzalloc(DIRTY_BITMAP_BYTES(npages), GFP_KERNEL);
203 if (!dma->bitmap)
204 return -ENOMEM;
205
206 return 0;
207 }
208
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 35354 bytes --]
next prev parent reply other threads:[~2020-03-26 18:47 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-24 19:32 [PATCH v16 Kernel 0/7] KABIs to support migration for VFIO devices Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
2020-03-24 19:32 ` [PATCH v16 Kernel 1/7] vfio: KABI for migration interface for device state Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
2020-03-26 10:41 ` Cornelia Huck
2020-03-26 10:41 ` Cornelia Huck
2020-03-26 21:39 ` Kirti Wankhede
2020-03-26 21:39 ` Kirti Wankhede
2020-03-24 19:32 ` [PATCH v16 Kernel 2/7] vfio iommu: Remove atomicity of ref_count of pinned pages Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
2020-03-26 10:49 ` Cornelia Huck
2020-03-26 10:49 ` Cornelia Huck
2020-03-26 21:45 ` Kirti Wankhede
2020-03-26 21:45 ` Kirti Wankhede
2020-03-24 19:32 ` [PATCH v16 Kernel 3/7] vfio iommu: Add ioctl definition for dirty pages tracking Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
2020-03-24 19:32 ` [PATCH v16 Kernel 4/7] vfio iommu: Implementation of ioctl " Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
2020-03-24 20:37 ` Alex Williamson
2020-03-24 20:37 ` Alex Williamson
2020-03-24 20:45 ` Alex Williamson
2020-03-24 20:45 ` Alex Williamson
2020-03-24 21:48 ` Kirti Wankhede
2020-03-24 21:48 ` Kirti Wankhede
2020-03-26 8:17 ` kbuild test robot
2020-03-26 18:47 ` kbuild test robot [this message]
2020-03-24 19:32 ` [PATCH v16 Kernel 5/7] vfio iommu: Update UNMAP_DMA ioctl to get dirty bitmap before unmap Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
2020-03-25 2:18 ` Yan Zhao
2020-03-25 2:18 ` Yan Zhao
2020-03-26 21:39 ` Kirti Wankhede
2020-03-26 21:39 ` Kirti Wankhede
2020-03-27 0:04 ` Yan Zhao
2020-03-27 0:04 ` Yan Zhao
2020-03-27 4:42 ` Kirti Wankhede
2020-03-27 4:42 ` Kirti Wankhede
2020-03-30 2:15 ` Yan Zhao
2020-03-30 2:15 ` Yan Zhao
2020-04-01 18:04 ` Kirti Wankhede
2020-04-01 18:04 ` Kirti Wankhede
2020-03-24 19:32 ` [PATCH v16 Kernel 6/7] vfio iommu: Adds flag to indicate dirty pages tracking capability support Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
2020-03-24 19:32 ` [PATCH v16 Kernel 7/7] vfio: Selective dirty page tracking if IOMMU backed device pins pages Kirti Wankhede
2020-03-24 19:32 ` Kirti Wankhede
-- strict thread matches above, loose matches on Subject: below --
2020-03-24 21:18 [PATCH v16 Kernel 4/7] vfio iommu: Implementation of ioctl for dirty pages tracking Kirti Wankhede
2020-03-24 21:18 ` Kirti Wankhede
2020-03-25 2:11 ` Yan Zhao
2020-03-25 2:11 ` Yan Zhao
2020-03-26 21:39 ` Kirti Wankhede
2020-03-26 21:39 ` Kirti Wankhede
2020-03-27 0:30 ` Yan Zhao
2020-03-27 0:30 ` Yan Zhao
2020-03-27 5:07 ` Kirti Wankhede
2020-03-27 5:07 ` Kirti Wankhede
2020-03-30 2:07 ` Yan Zhao
2020-03-30 2:07 ` Yan Zhao
2020-03-30 20:47 ` Alex Williamson
2020-03-30 20:47 ` Alex Williamson
2020-03-30 23:49 ` Yan Zhao
2020-03-30 23:49 ` Yan Zhao
2020-03-27 5:28 ` Kirti Wankhede
2020-03-27 5:28 ` Kirti Wankhede
2020-03-30 3:24 ` Yan Zhao
2020-03-30 3:24 ` Yan Zhao
2020-03-30 13:49 ` Kirti Wankhede
2020-03-30 13:49 ` Kirti Wankhede
2020-03-30 23:51 ` Yan Zhao
2020-03-30 23:51 ` Yan Zhao
2020-03-31 0:53 ` Alex Williamson
2020-03-31 0:53 ` Alex Williamson
2020-03-31 0:50 ` Yan Zhao
2020-03-31 0:50 ` Yan Zhao
2020-03-31 1:12 ` Alex Williamson
2020-03-31 1:12 ` Alex Williamson
2020-03-31 1:16 ` Yan Zhao
2020-03-31 1:16 ` Yan Zhao
2020-03-31 2:38 ` Alex Williamson
2020-03-31 2:38 ` Alex Williamson
2020-03-31 2:40 ` Zhao, Yan Y
2020-03-31 2:40 ` Zhao, Yan Y
2020-03-27 11:57 ` Dr. David Alan Gilbert
2020-03-27 11:57 ` Dr. David Alan Gilbert
2020-03-27 13:57 ` Alex Williamson
2020-03-27 13:57 ` Alex Williamson
2020-03-27 14:09 ` Dr. David Alan Gilbert
2020-03-27 14:09 ` Dr. David Alan Gilbert
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=202003270232.5Ore7idy%lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.