From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH v2 4/5] vfio/pci: Invalidate mmaps and block the access in D3hot power state
Date: Tue, 25 Jan 2022 10:35:37 +0800 [thread overview]
Message-ID: <202201251024.DoqLcJkP-lkp@intel.com> (raw)
In-Reply-To: <20220124181726.19174-5-abhsahu@nvidia.com>
[-- Attachment #1: Type: text/plain, Size: 3398 bytes --]
Hi Abhishek,
[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on awilliam-vfio/next]
[also build test WARNING on v5.17-rc1 next-20220124]
[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]
url: https://github.com/0day-ci/linux/commits/Abhishek-Sahu/vfio-pci-Enable-runtime-power-management-support/20220125-021827
base: https://github.com/awilliam/linux-vfio.git next
config: x86_64-randconfig-s022-20220124 (https://download.01.org/0day-ci/archive/20220125/202201251024.DoqLcJkP-lkp(a)intel.com/config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce:
# apt-get install sparse
# sparse version: v0.6.4-dirty
# https://github.com/0day-ci/linux/commit/84afeb78e3ae55e0f1c1f84d42e28c60585fdc48
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Abhishek-Sahu/vfio-pci-Enable-runtime-power-management-support/20220125-021827
git checkout 84afeb78e3ae55e0f1c1f84d42e28c60585fdc48
# save the config file to linux build tree
mkdir build_dir
make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/vfio/pci/ mm/kasan/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
sparse warnings: (new ones prefixed by >>)
>> drivers/vfio/pci/vfio_pci_rdwr.c:64:1: sparse: sparse: restricted pci_power_t degrades to integer
>> drivers/vfio/pci/vfio_pci_rdwr.c:64:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:65:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:65:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:66:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:66:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:95:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:95:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:96:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:96:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:97:1: sparse: sparse: restricted pci_power_t degrades to integer
drivers/vfio/pci/vfio_pci_rdwr.c:97:1: sparse: sparse: restricted pci_power_t degrades to integer
vim +64 drivers/vfio/pci/vfio_pci_rdwr.c
bc93b9ae0151ae Alex Williamson 2020-08-17 63
bc93b9ae0151ae Alex Williamson 2020-08-17 @64 VFIO_IOWRITE(8)
bc93b9ae0151ae Alex Williamson 2020-08-17 65 VFIO_IOWRITE(16)
bc93b9ae0151ae Alex Williamson 2020-08-17 66 VFIO_IOWRITE(32)
bc93b9ae0151ae Alex Williamson 2020-08-17 67 #ifdef iowrite64
bc93b9ae0151ae Alex Williamson 2020-08-17 68 VFIO_IOWRITE(64)
bc93b9ae0151ae Alex Williamson 2020-08-17 69 #endif
bc93b9ae0151ae Alex Williamson 2020-08-17 70
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
next prev parent reply other threads:[~2022-01-25 2:35 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-24 18:17 [RFC PATCH v2 0/5] vfio/pci: Enable runtime power management support Abhishek Sahu
2022-01-24 18:17 ` [RFC PATCH v2 1/5] vfio/pci: register vfio-pci driver with runtime PM framework Abhishek Sahu
2022-02-16 23:48 ` Alex Williamson
2022-02-21 6:35 ` Abhishek Sahu
2022-01-24 18:17 ` [RFC PATCH v2 2/5] vfio/pci: virtualize PME related registers bits and initialize to zero Abhishek Sahu
2022-01-24 18:17 ` [RFC PATCH v2 3/5] vfio/pci: fix memory leak during D3hot to D0 tranistion Abhishek Sahu
2022-01-28 0:05 ` Alex Williamson
2022-01-31 11:34 ` Abhishek Sahu
2022-01-31 15:33 ` Alex Williamson
2022-01-24 18:17 ` [RFC PATCH v2 4/5] vfio/pci: Invalidate mmaps and block the access in D3hot power state Abhishek Sahu
2022-01-25 2:35 ` kernel test robot [this message]
2022-02-17 23:14 ` Alex Williamson
2022-02-21 8:12 ` Abhishek Sahu
2022-01-24 18:17 ` [RFC PATCH v2 5/5] vfio/pci: add the support for PCI D3cold state Abhishek Sahu
2022-03-09 17:26 ` Alex Williamson
2022-03-11 15:45 ` Abhishek Sahu
2022-03-11 23:06 ` Alex Williamson
2022-03-16 5:41 ` Abhishek Sahu
2022-03-16 18:44 ` Alex Williamson
2022-03-24 14:27 ` Abhishek Sahu
2022-03-11 16:17 ` 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=202201251024.DoqLcJkP-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.