From: kernel test robot <lkp@intel.com>
To: Steve Sistare <steven.sistare@oracle.com>, iommu@lists.linux.dev
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
Jason Gunthorpe <jgg@nvidia.com>,
Kevin Tian <kevin.tian@intel.com>,
Nicolin Chen <nicolinc@nvidia.com>,
Steve Sistare <steven.sistare@oracle.com>
Subject: Re: [PATCH V2 3/9] iommufd: pfn reader for file mappings
Date: Wed, 25 Sep 2024 09:55:18 +0800 [thread overview]
Message-ID: <202409250951.qvaDPgeE-lkp@intel.com> (raw)
In-Reply-To: <1727190338-385692-4-git-send-email-steven.sistare@oracle.com>
Hi Steve,
kernel test robot noticed the following build errors:
[auto build test ERROR on shuah-kselftest/next]
[also build test ERROR on shuah-kselftest/fixes linus/master v6.11 next-20240924]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Steve-Sistare/iommufd-rename-uptr-in-iopt_alloc_iova/20240924-231223
base: https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git next
patch link: https://lore.kernel.org/r/1727190338-385692-4-git-send-email-steven.sistare%40oracle.com
patch subject: [PATCH V2 3/9] iommufd: pfn reader for file mappings
config: i386-buildonly-randconfig-001-20240925 (https://download.01.org/0day-ci/archive/20240925/202409250951.qvaDPgeE-lkp@intel.com/config)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240925/202409250951.qvaDPgeE-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202409250951.qvaDPgeE-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/iommu/iommufd/pages.c:772:4: error: call to undeclared function 'folio_split_user_page_pin'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
772 | folio_split_user_page_pin(folio, npin);
| ^
>> drivers/iommu/iommufd/pages.c:809:32: error: incompatible pointer types passing 'unsigned long *' to parameter of type 'size_t *' (aka 'unsigned int *') [-Werror,-Wincompatible-pointer-types]
809 | user->ufolios = temp_kmalloc(&user->ufolios_len, NULL, 0);
| ^~~~~~~~~~~~~~~~~~
drivers/iommu/iommufd/pages.c:74:35: note: passing argument to parameter 'size' here
74 | static void *temp_kmalloc(size_t *size, void *backup, size_t backup_len)
| ^
2 errors generated.
vim +809 drivers/iommu/iommufd/pages.c
746
747 static long pin_memfd_pages(struct pfn_reader_user *user,
748 unsigned long start,
749 unsigned long npages)
750 {
751 unsigned long end, nr, i, j, npin, offset, npages_out;
752 long nfolios;
753 struct folio *folio;
754 struct page **upages = user->upages;
755
756 nfolios = user->ufolios_len / sizeof(*user->ufolios);
757 end = start + (npages << PAGE_SHIFT) - 1;
758
759 nfolios = memfd_pin_folios(user->file, start, end,
760 user->ufolios, nfolios, &offset);
761 if (nfolios <= 0)
762 return nfolios;
763
764 offset >>= PAGE_SHIFT;
765 npages_out = 0;
766
767 for (i = 0; i < nfolios; i++) {
768 folio = user->ufolios[i];
769 nr = folio_nr_pages(folio);
770 npin = min(nr - offset, npages);
771 if (nr > 1) {
> 772 folio_split_user_page_pin(folio, npin);
773 }
774 for (j = offset; j < offset + npin; j++)
775 *upages++ = folio_page(folio, j);
776 npages -= npin;
777 npages_out += npin;
778 offset = 0;
779 }
780
781 return npages_out;
782 }
783
784 static int pfn_reader_user_pin(struct pfn_reader_user *user,
785 struct iopt_pages *pages,
786 unsigned long start_index,
787 unsigned long last_index)
788 {
789 bool remote_mm = pages->source_mm != current->mm;
790 unsigned long npages = last_index - start_index + 1;
791 unsigned long start, unum;
792 uintptr_t uptr;
793 long rc;
794
795 if (IS_ENABLED(CONFIG_IOMMUFD_TEST) &&
796 WARN_ON(last_index < start_index))
797 return -EINVAL;
798
799 if (!user->upages) {
800 /* All undone in pfn_reader_destroy() */
801 user->upages_len = npages * sizeof(*user->upages);
802 user->upages = temp_kmalloc(&user->upages_len, NULL, 0);
803 if (!user->upages)
804 return -ENOMEM;
805 }
806
807 if (user->file && !user->ufolios) {
808 user->ufolios_len = npages * sizeof(*user->ufolios);
> 809 user->ufolios = temp_kmalloc(&user->ufolios_len, NULL, 0);
810 if (!user->ufolios)
811 return -ENOMEM;
812
813 /* Bail for now. Be more robust when we optimize for folios. */
814 if (user->ufolios_len / sizeof(*user->ufolios) <
815 user->upages_len / sizeof(*user->upages))
816 return -ENOMEM;
817 }
818
819 if (!user->file && user->locked == -1) {
820 /*
821 * The majority of usages will run the map task within the mm
822 * providing the pages, so we can optimize into
823 * get_user_pages_fast()
824 */
825 if (remote_mm) {
826 if (!mmget_not_zero(pages->source_mm))
827 return -EFAULT;
828 }
829 user->locked = 0;
830 }
831
832 unum = user->file ? user->ufolios_len / sizeof(*user->ufolios) :
833 user->upages_len / sizeof(*user->upages);
834 npages = min_t(unsigned long, npages, unum);
835
836 if (iommufd_should_fail())
837 return -EFAULT;
838
839 if (user->file) {
840 start = pages->start + (start_index * PAGE_SIZE);
841 rc = pin_memfd_pages(user, start, npages);
842 } else if (!remote_mm) {
843 uptr = (uintptr_t)(pages->uptr + start_index * PAGE_SIZE);
844 rc = pin_user_pages_fast(uptr, npages, user->gup_flags,
845 user->upages);
846 } else {
847 uptr = (uintptr_t)(pages->uptr + start_index * PAGE_SIZE);
848 if (!user->locked) {
849 mmap_read_lock(pages->source_mm);
850 user->locked = 1;
851 }
852 rc = pin_user_pages_remote(pages->source_mm, uptr, npages,
853 user->gup_flags, user->upages,
854 &user->locked);
855 }
856 if (rc <= 0) {
857 if (WARN_ON(!rc))
858 return -EFAULT;
859 return rc;
860 }
861 iopt_pages_add_npinned(pages, rc);
862 user->upages_start = start_index;
863 user->upages_end = start_index + rc;
864 return 0;
865 }
866
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-09-25 2:23 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-24 15:05 [PATCH V2 0/9] iommu_ioas_map_file Steve Sistare
2024-09-24 15:05 ` [PATCH V2 1/9] iommufd: rename uptr in iopt_alloc_iova Steve Sistare
2024-09-27 15:59 ` Jason Gunthorpe
2024-09-24 15:05 ` [PATCH V2 2/9] iommufd: generalize iopt_pages address Steve Sistare
2024-09-24 20:31 ` Nicolin Chen
2024-09-25 22:43 ` Jason Gunthorpe
2024-09-25 23:04 ` Nicolin Chen
2024-09-26 14:48 ` Jason Gunthorpe
2024-09-26 15:48 ` Steven Sistare
2024-10-01 19:54 ` Jason Gunthorpe
2024-09-24 15:05 ` [PATCH V2 3/9] iommufd: pfn reader for file mappings Steve Sistare
2024-09-24 20:53 ` Nicolin Chen
2024-09-26 15:59 ` Steven Sistare
2024-09-25 1:32 ` kernel test robot
2024-09-25 1:55 ` kernel test robot [this message]
2024-09-26 14:10 ` Steven Sistare
2024-09-24 15:05 ` [PATCH V2 4/9] iommufd: IOMMU_IOAS_MAP_FILE interface Steve Sistare
2024-10-01 19:58 ` Jason Gunthorpe
2024-09-24 15:05 ` [PATCH V2 5/9] iommufd: IOMMU_IOAS_MAP_FILE implementation Steve Sistare
2024-09-24 21:08 ` Nicolin Chen
2024-09-26 15:50 ` Steven Sistare
2024-10-01 20:05 ` Jason Gunthorpe
2024-10-02 17:26 ` Steven Sistare
2024-09-24 15:05 ` [PATCH V2 6/9] iommufd: file mappings for mdev Steve Sistare
2024-10-01 20:09 ` Jason Gunthorpe
2024-10-02 17:26 ` Steven Sistare
2024-09-24 15:05 ` [PATCH V2 7/9] iommufd: pfn reader local variables Steve Sistare
2024-10-02 17:29 ` Steven Sistare
2024-10-04 12:16 ` Jason Gunthorpe
2024-09-24 15:05 ` [PATCH V2 8/9] iommufd: optimize file mapping Steve Sistare
2024-10-01 21:03 ` Jason Gunthorpe
2024-10-02 17:26 ` Steven Sistare
2024-10-02 17:29 ` Jason Gunthorpe
2024-10-02 17:51 ` Steven Sistare
2024-09-24 15:05 ` [PATCH V2 9/9] iommufd: map file selftest Steve Sistare
2024-10-01 21:05 ` Jason Gunthorpe
2024-10-02 17:26 ` Steven Sistare
2024-10-02 17:29 ` Jason Gunthorpe
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=202409250951.qvaDPgeE-lkp@intel.com \
--to=lkp@intel.com \
--cc=iommu@lists.linux.dev \
--cc=jgg@nvidia.com \
--cc=kevin.tian@intel.com \
--cc=llvm@lists.linux.dev \
--cc=nicolinc@nvidia.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=steven.sistare@oracle.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 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.