All of lore.kernel.org
 help / color / mirror / Atom feed
* [intel-lts:5.4/preempt-rt 9719/19036] drivers/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
@ 2021-10-24 10:23 kernel test robot
  0 siblings, 0 replies; 4+ messages in thread
From: kernel test robot @ 2021-10-24 10:23 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2335 bytes --]

tree:   https://github.com/intel/linux-intel-lts.git 5.4/preempt-rt
head:   646a89c49751509d6493602ca6df16e229574d24
commit: 9b07a958f2eb496c88faf0bd749eb600357f4190 [9719/19036] crypto: keembay: Add Keem Bay OCS HCU
config: x86_64-randconfig-s021-20211001 (attached as .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/intel/linux-intel-lts/commit/9b07a958f2eb496c88faf0bd749eb600357f4190
        git remote add intel-lts https://github.com/intel/linux-intel-lts.git
        git fetch --no-tags intel-lts 5.4/preempt-rt
        git checkout 9b07a958f2eb496c88faf0bd749eb600357f4190
        # save the attached .config to linux build tree
        make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/crypto/keembay/

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/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:219:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:749:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:750:31: sparse: sparse: Using plain integer as NULL pointer

vim +218 drivers/crypto/keembay/keembay-ocs-hcu-core.c

   202	
   203	static void kmb_ocs_free_dma_list(struct ocs_hcu_rctx *rctx)
   204	{
   205		struct ocs_hcu_dev *hcu_dev = rctx->hcu_dev;
   206		struct device *dev = hcu_dev->dev;
   207	
   208		if (!rctx->dma_list_head || !rctx->dma_list_tail)
   209			return;
   210	
   211		if (rctx->sg_dma_nents > 0)
   212			dma_unmap_sg(dev, hcu_dev->req->src, rctx->sg_dma_nents,
   213				     DMA_TO_DEVICE);
   214	
   215		dma_free_coherent(dev, rctx->dma_list_size, rctx->dma_list_head,
   216				  rctx->ll_dma_addr);
   217	
 > 218		rctx->dma_list_head = 0;
   219		rctx->dma_list_tail = 0;
   220		rctx->ll_dma_addr = 0;
   221	}
   222	

---
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: 36209 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [intel-lts:5.4/preempt-rt 9719/19036] drivers/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
@ 2021-10-25  0:38 kernel test robot
  0 siblings, 0 replies; 4+ messages in thread
From: kernel test robot @ 2021-10-25  0:38 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2335 bytes --]

tree:   https://github.com/intel/linux-intel-lts.git 5.4/preempt-rt
head:   646a89c49751509d6493602ca6df16e229574d24
commit: 9b07a958f2eb496c88faf0bd749eb600357f4190 [9719/19036] crypto: keembay: Add Keem Bay OCS HCU
config: x86_64-randconfig-s021-20211001 (attached as .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/intel/linux-intel-lts/commit/9b07a958f2eb496c88faf0bd749eb600357f4190
        git remote add intel-lts https://github.com/intel/linux-intel-lts.git
        git fetch --no-tags intel-lts 5.4/preempt-rt
        git checkout 9b07a958f2eb496c88faf0bd749eb600357f4190
        # save the attached .config to linux build tree
        make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/crypto/keembay/

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/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:219:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:749:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:750:31: sparse: sparse: Using plain integer as NULL pointer

vim +218 drivers/crypto/keembay/keembay-ocs-hcu-core.c

   202	
   203	static void kmb_ocs_free_dma_list(struct ocs_hcu_rctx *rctx)
   204	{
   205		struct ocs_hcu_dev *hcu_dev = rctx->hcu_dev;
   206		struct device *dev = hcu_dev->dev;
   207	
   208		if (!rctx->dma_list_head || !rctx->dma_list_tail)
   209			return;
   210	
   211		if (rctx->sg_dma_nents > 0)
   212			dma_unmap_sg(dev, hcu_dev->req->src, rctx->sg_dma_nents,
   213				     DMA_TO_DEVICE);
   214	
   215		dma_free_coherent(dev, rctx->dma_list_size, rctx->dma_list_head,
   216				  rctx->ll_dma_addr);
   217	
 > 218		rctx->dma_list_head = 0;
   219		rctx->dma_list_tail = 0;
   220		rctx->ll_dma_addr = 0;
   221	}
   222	

---
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: 36209 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [intel-lts:5.4/preempt-rt 9719/19036] drivers/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
@ 2021-10-24  5:07 kernel test robot
  0 siblings, 0 replies; 4+ messages in thread
From: kernel test robot @ 2021-10-24  5:07 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2335 bytes --]

tree:   https://github.com/intel/linux-intel-lts.git 5.4/preempt-rt
head:   646a89c49751509d6493602ca6df16e229574d24
commit: 9b07a958f2eb496c88faf0bd749eb600357f4190 [9719/19036] crypto: keembay: Add Keem Bay OCS HCU
config: x86_64-randconfig-s021-20211001 (attached as .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/intel/linux-intel-lts/commit/9b07a958f2eb496c88faf0bd749eb600357f4190
        git remote add intel-lts https://github.com/intel/linux-intel-lts.git
        git fetch --no-tags intel-lts 5.4/preempt-rt
        git checkout 9b07a958f2eb496c88faf0bd749eb600357f4190
        # save the attached .config to linux build tree
        make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/crypto/keembay/

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/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:219:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:749:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:750:31: sparse: sparse: Using plain integer as NULL pointer

vim +218 drivers/crypto/keembay/keembay-ocs-hcu-core.c

   202	
   203	static void kmb_ocs_free_dma_list(struct ocs_hcu_rctx *rctx)
   204	{
   205		struct ocs_hcu_dev *hcu_dev = rctx->hcu_dev;
   206		struct device *dev = hcu_dev->dev;
   207	
   208		if (!rctx->dma_list_head || !rctx->dma_list_tail)
   209			return;
   210	
   211		if (rctx->sg_dma_nents > 0)
   212			dma_unmap_sg(dev, hcu_dev->req->src, rctx->sg_dma_nents,
   213				     DMA_TO_DEVICE);
   214	
   215		dma_free_coherent(dev, rctx->dma_list_size, rctx->dma_list_head,
   216				  rctx->ll_dma_addr);
   217	
 > 218		rctx->dma_list_head = 0;
   219		rctx->dma_list_tail = 0;
   220		rctx->ll_dma_addr = 0;
   221	}
   222	

---
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: 36209 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [intel-lts:5.4/preempt-rt 9719/19036] drivers/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
@ 2021-10-22  3:46 kernel test robot
  0 siblings, 0 replies; 4+ messages in thread
From: kernel test robot @ 2021-10-22  3:46 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2335 bytes --]

tree:   https://github.com/intel/linux-intel-lts.git 5.4/preempt-rt
head:   646a89c49751509d6493602ca6df16e229574d24
commit: 9b07a958f2eb496c88faf0bd749eb600357f4190 [9719/19036] crypto: keembay: Add Keem Bay OCS HCU
config: x86_64-randconfig-s021-20211001 (attached as .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/intel/linux-intel-lts/commit/9b07a958f2eb496c88faf0bd749eb600357f4190
        git remote add intel-lts https://github.com/intel/linux-intel-lts.git
        git fetch --no-tags intel-lts 5.4/preempt-rt
        git checkout 9b07a958f2eb496c88faf0bd749eb600357f4190
        # save the attached .config to linux build tree
        make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/crypto/keembay/

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/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:219:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:749:31: sparse: sparse: Using plain integer as NULL pointer
   drivers/crypto/keembay/keembay-ocs-hcu-core.c:750:31: sparse: sparse: Using plain integer as NULL pointer

vim +218 drivers/crypto/keembay/keembay-ocs-hcu-core.c

   202	
   203	static void kmb_ocs_free_dma_list(struct ocs_hcu_rctx *rctx)
   204	{
   205		struct ocs_hcu_dev *hcu_dev = rctx->hcu_dev;
   206		struct device *dev = hcu_dev->dev;
   207	
   208		if (!rctx->dma_list_head || !rctx->dma_list_tail)
   209			return;
   210	
   211		if (rctx->sg_dma_nents > 0)
   212			dma_unmap_sg(dev, hcu_dev->req->src, rctx->sg_dma_nents,
   213				     DMA_TO_DEVICE);
   214	
   215		dma_free_coherent(dev, rctx->dma_list_size, rctx->dma_list_head,
   216				  rctx->ll_dma_addr);
   217	
 > 218		rctx->dma_list_head = 0;
   219		rctx->dma_list_tail = 0;
   220		rctx->ll_dma_addr = 0;
   221	}
   222	

---
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: 36209 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-25  0:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-24 10:23 [intel-lts:5.4/preempt-rt 9719/19036] drivers/crypto/keembay/keembay-ocs-hcu-core.c:218:31: sparse: sparse: Using plain integer as NULL pointer kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2021-10-25  0:38 kernel test robot
2021-10-24  5:07 kernel test robot
2021-10-22  3:46 kernel test robot

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.