From: kernel test robot <lkp@intel.com>
To: Selvin Xavier <selvin.xavier@broadcom.com>,
jgg@ziepe.ca, leon@kernel.org
Cc: oe-kbuild-all@lists.linux.dev, linux-rdma@vger.kernel.org,
andrew.gospodarek@broadcom.com, michael.chan@broadcom.com,
Chandramohan Akula <chandramohan.akula@broadcom.com>,
Selvin Xavier <selvin.xavier@broadcom.com>
Subject: Re: [PATCH for-next v2 5/7] RDMA/bnxt_re: Update alloc_page uapi for pacing
Date: Wed, 19 Jul 2023 07:16:34 +0800 [thread overview]
Message-ID: <202307190721.q4H3DjZs-lkp@intel.com> (raw)
In-Reply-To: <1689573194-27687-6-git-send-email-selvin.xavier@broadcom.com>
Hi Selvin,
kernel test robot noticed the following build warnings:
[auto build test WARNING on rdma/for-next]
[also build test WARNING on linus/master v6.5-rc2 next-20230718]
[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/Selvin-Xavier/bnxt_en-Share-the-bar0-address-with-the-RoCE-driver/20230718-174723
base: https://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git for-next
patch link: https://lore.kernel.org/r/1689573194-27687-6-git-send-email-selvin.xavier%40broadcom.com
patch subject: [PATCH for-next v2 5/7] RDMA/bnxt_re: Update alloc_page uapi for pacing
config: arm64-allyesconfig (https://download.01.org/0day-ci/archive/20230719/202307190721.q4H3DjZs-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 12.3.0
reproduce: (https://download.01.org/0day-ci/archive/20230719/202307190721.q4H3DjZs-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/202307190721.q4H3DjZs-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from arch/arm64/include/asm/memory.h:337,
from arch/arm64/include/asm/thread_info.h:17,
from include/linux/thread_info.h:60,
from arch/arm64/include/asm/preempt.h:6,
from include/linux/preempt.h:79,
from include/linux/percpu.h:6,
from include/linux/context_tracking_state.h:5,
from include/linux/hardirq.h:5,
from include/linux/interrupt.h:11,
from drivers/infiniband/hw/bnxt_re/ib_verbs.c:39:
drivers/infiniband/hw/bnxt_re/ib_verbs.c: In function 'bnxt_re_mmap':
>> drivers/infiniband/hw/bnxt_re/ib_verbs.c:4164:81: warning: passing argument 1 of 'virt_to_pfn' makes pointer from integer without a cast [-Wint-conversion]
4164 | ret = vm_insert_page(vma, vma->vm_start, virt_to_page(bnxt_entry->mem_offset));
| ~~~~~~~~~~^~~~~~~~~~~~
| |
| u64 {aka long long unsigned int}
include/asm-generic/memory_model.h:37:45: note: in definition of macro '__pfn_to_page'
37 | #define __pfn_to_page(pfn) (vmemmap + (pfn))
| ^~~
drivers/infiniband/hw/bnxt_re/ib_verbs.c:4164:58: note: in expansion of macro 'virt_to_page'
4164 | ret = vm_insert_page(vma, vma->vm_start, virt_to_page(bnxt_entry->mem_offset));
| ^~~~~~~~~~~~
arch/arm64/include/asm/memory.h:339:53: note: expected 'const void *' but argument is of type 'u64' {aka 'long long unsigned int'}
339 | static inline unsigned long virt_to_pfn(const void *kaddr)
| ~~~~~~~~~~~~^~~~~
vim +/virt_to_pfn +4164 drivers/infiniband/hw/bnxt_re/ib_verbs.c
4119
4120 /* Helper function to mmap the virtual memory from user app */
4121 int bnxt_re_mmap(struct ib_ucontext *ib_uctx, struct vm_area_struct *vma)
4122 {
4123 struct bnxt_re_ucontext *uctx = container_of(ib_uctx,
4124 struct bnxt_re_ucontext,
4125 ib_uctx);
4126 struct bnxt_re_user_mmap_entry *bnxt_entry;
4127 struct rdma_user_mmap_entry *rdma_entry;
4128 int ret = 0;
4129 u64 pfn;
4130
4131 rdma_entry = rdma_user_mmap_entry_get(&uctx->ib_uctx, vma);
4132 if (!rdma_entry)
4133 return -EINVAL;
4134
4135 bnxt_entry = container_of(rdma_entry, struct bnxt_re_user_mmap_entry,
4136 rdma_entry);
4137
4138 switch (bnxt_entry->mmap_flag) {
4139 case BNXT_RE_MMAP_WC_DB:
4140 pfn = bnxt_entry->mem_offset >> PAGE_SHIFT;
4141 ret = rdma_user_mmap_io(ib_uctx, vma, pfn, PAGE_SIZE,
4142 pgprot_writecombine(vma->vm_page_prot),
4143 rdma_entry);
4144 break;
4145 case BNXT_RE_MMAP_UC_DB:
4146 pfn = bnxt_entry->mem_offset >> PAGE_SHIFT;
4147 ret = rdma_user_mmap_io(ib_uctx, vma, pfn, PAGE_SIZE,
4148 pgprot_noncached(vma->vm_page_prot),
4149 rdma_entry);
4150 break;
4151 case BNXT_RE_MMAP_SH_PAGE:
4152 ret = vm_insert_page(vma, vma->vm_start, virt_to_page(uctx->shpg));
4153 break;
4154 case BNXT_RE_MMAP_DBR_BAR:
4155 pfn = bnxt_entry->mem_offset >> PAGE_SHIFT;
4156 ret = rdma_user_mmap_io(ib_uctx, vma, pfn, PAGE_SIZE,
4157 pgprot_noncached(vma->vm_page_prot),
4158 rdma_entry);
4159 break;
4160 case BNXT_RE_MMAP_DBR_PAGE:
4161 /* Driver doesn't expect write access for user space */
4162 if (vma->vm_flags & VM_WRITE)
4163 return -EFAULT;
> 4164 ret = vm_insert_page(vma, vma->vm_start, virt_to_page(bnxt_entry->mem_offset));
4165 break;
4166 default:
4167 ret = -EINVAL;
4168 break;
4169 }
4170
4171 rdma_user_mmap_entry_put(rdma_entry);
4172 return ret;
4173 }
4174
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2023-07-18 23:16 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-17 5:53 [PATCH for-next v2 0/7]RDMA/bnxt_re: Doorbell Drop Prevention Selvin Xavier
2023-07-17 5:53 ` [PATCH for-next v2 1/7] bnxt_en: Update HW interface headers Selvin Xavier
2023-07-17 5:53 ` [PATCH for-next v2 2/7] bnxt_en: Share the bar0 address with the RoCE driver Selvin Xavier
2023-07-17 5:53 ` [PATCH for-next v2 3/7] RDMA/bnxt_re: Initialize Doorbell pacing feature Selvin Xavier
2023-07-17 5:53 ` [PATCH for-next v2 4/7] RDMA/bnxt_re: Enable pacing support for the user apps Selvin Xavier
2023-07-17 5:53 ` [PATCH for-next v2 5/7] RDMA/bnxt_re: Update alloc_page uapi for pacing Selvin Xavier
2023-07-18 23:16 ` kernel test robot [this message]
2023-07-17 5:53 ` [PATCH for-next v2 6/7] RDMA/bnxt_re: Implement doorbell pacing algorithm Selvin Xavier
2023-07-17 5:53 ` [PATCH for-next v2 7/7] RDMA/bnxt_re: Add a new uapi for driver notification Selvin Xavier
2023-07-18 9:40 ` [PATCH for-next v2 0/7]RDMA/bnxt_re: Doorbell Drop Prevention Leon Romanovsky
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=202307190721.q4H3DjZs-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrew.gospodarek@broadcom.com \
--cc=chandramohan.akula@broadcom.com \
--cc=jgg@ziepe.ca \
--cc=leon@kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=michael.chan@broadcom.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=selvin.xavier@broadcom.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