All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <202201082354.iAG3UuiL-lkp@intel.com>

diff --git a/a/1.txt b/N1/1.txt
index 64381af..3928a0e 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,14 +1,6 @@
-CC: kbuild-all(a)lists.01.org
-CC: linux-kernel(a)vger.kernel.org
-TO: Christoph Hellwig <hch@lst.de>
-CC: "Martin K. Petersen" <martin.petersen@oracle.com>
-CC: James Smart <jsmart2021@gmail.com>
-
 tree:   https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next
 head:   315d049ad1951cef02d9337a2469cac51cca6932
 commit: efac162a4e4dc4cebcc658e02676821ca834b56c [67/132] scsi: efct: Don't pass GFP_DMA to dma_alloc_coherent()
-:::::: branch date: 25 hours ago
-:::::: commit date: 3 weeks ago
 config: x86_64-randconfig-m031-20220107 (https://download.01.org/0day-ci/archive/20220108/202201082354.iAG3UuiL-lkp(a)intel.com/config)
 compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
 
@@ -21,7 +13,6 @@ drivers/scsi/elx/libefc/efc_els.c:73 efc_els_io_alloc_size() warn: sleeping in a
 
 vim +73 drivers/scsi/elx/libefc/efc_els.c
 
-8f406ef728597d James Smart       2021-06-01   39  
 8f406ef728597d James Smart       2021-06-01   40  struct efc_els_io_req *
 8f406ef728597d James Smart       2021-06-01   41  efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)
 8f406ef728597d James Smart       2021-06-01   42  {
@@ -32,6 +23,8 @@ vim +73 drivers/scsi/elx/libefc/efc_els.c
 8f406ef728597d James Smart       2021-06-01   47  	efc = node->efc;
 8f406ef728597d James Smart       2021-06-01   48  
 8f406ef728597d James Smart       2021-06-01   49  	spin_lock_irqsave(&node->els_ios_lock, flags);
+                                                        ^^^^^^^^^^^^^^^^^
+
 8f406ef728597d James Smart       2021-06-01   50  
 8f406ef728597d James Smart       2021-06-01   51  	if (!node->els_io_enabled) {
 8f406ef728597d James Smart       2021-06-01   52  		efc_log_err(efc, "els io alloc disabled\n");
@@ -57,6 +50,9 @@ vim +73 drivers/scsi/elx/libefc/efc_els.c
 8f406ef728597d James Smart       2021-06-01   72  	els->io.req.size = reqlen;
 8f406ef728597d James Smart       2021-06-01  @73  	els->io.req.virt = dma_alloc_coherent(&efc->pci->dev, els->io.req.size,
 efac162a4e4dc4 Christoph Hellwig 2021-12-14   74  					      &els->io.req.phys, GFP_KERNEL);
+                                                                                                                 ^^^^^^^^^^
+Sleeping in spin lock
+
 8f406ef728597d James Smart       2021-06-01   75  	if (!els->io.req.virt) {
 8f406ef728597d James Smart       2021-06-01   76  		mempool_free(els, efc->els_io_pool);
 8f406ef728597d James Smart       2021-06-01   77  		spin_unlock_irqrestore(&node->els_ios_lock, flags);
@@ -66,6 +62,9 @@ efac162a4e4dc4 Christoph Hellwig 2021-12-14   74  					      &els->io.req.phys,
 8f406ef728597d James Smart       2021-06-01   81  	els->io.rsp.size = rsplen;
 8f406ef728597d James Smart       2021-06-01   82  	els->io.rsp.virt = dma_alloc_coherent(&efc->pci->dev, els->io.rsp.size,
 efac162a4e4dc4 Christoph Hellwig 2021-12-14   83  					      &els->io.rsp.phys, GFP_KERNEL);
+                                                                                                                 ^^^^^^^^^^
+Same
+
 8f406ef728597d James Smart       2021-06-01   84  	if (!els->io.rsp.virt) {
 8f406ef728597d James Smart       2021-06-01   85  		dma_free_coherent(&efc->pci->dev, els->io.req.size,
 8f406ef728597d James Smart       2021-06-01   86  				  els->io.req.virt, els->io.req.phys);
@@ -85,13 +84,6 @@ efac162a4e4dc4 Christoph Hellwig 2021-12-14   83  					      &els->io.rsp.phys,
 8f406ef728597d James Smart       2021-06-01  100  	spin_unlock_irqrestore(&node->els_ios_lock, flags);
 8f406ef728597d James Smart       2021-06-01  101  	return els;
 8f406ef728597d James Smart       2021-06-01  102  }
-8f406ef728597d James Smart       2021-06-01  103  
-
-:::::: The code at line 73 was first introduced by commit
-:::::: 8f406ef728597da39c935ab9c12f4940139775f9 scsi: elx: libefc: Extended link Service I/O handling
-
-:::::: TO: James Smart <jsmart2021@gmail.com>
-:::::: CC: Martin K. Petersen <martin.petersen@oracle.com>
 
 ---
 0-DAY CI Kernel Test Service, Intel Corporation
diff --git a/a/content_digest b/N1/content_digest
index b7342a3..6a3734b 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,20 +1,12 @@
- "From\0kernel test robot <lkp@intel.com>\0"
+ "From\0Dan Carpenter <dan.carpenter@oracle.com>\0"
  "Subject\0[mkp-scsi:for-next 67/132] drivers/scsi/elx/libefc/efc_els.c:73 efc_els_io_alloc_size() warn: sleeping in atomic context\0"
- "Date\0Sat, 08 Jan 2022 23:50:23 +0800\0"
- "To\0kbuild@lists.01.org\0"
+ "Date\0Mon, 10 Jan 2022 10:01:57 +0300\0"
+ "To\0kbuild-all@lists.01.org\0"
  "\01:1\0"
  "b\0"
- "CC: kbuild-all(a)lists.01.org\n"
- "CC: linux-kernel(a)vger.kernel.org\n"
- "TO: Christoph Hellwig <hch@lst.de>\n"
- "CC: \"Martin K. Petersen\" <martin.petersen@oracle.com>\n"
- "CC: James Smart <jsmart2021@gmail.com>\n"
- "\n"
  "tree:   https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next\n"
  "head:   315d049ad1951cef02d9337a2469cac51cca6932\n"
  "commit: efac162a4e4dc4cebcc658e02676821ca834b56c [67/132] scsi: efct: Don't pass GFP_DMA to dma_alloc_coherent()\n"
- ":::::: branch date: 25 hours ago\n"
- ":::::: commit date: 3 weeks ago\n"
  "config: x86_64-randconfig-m031-20220107 (https://download.01.org/0day-ci/archive/20220108/202201082354.iAG3UuiL-lkp(a)intel.com/config)\n"
  "compiler: gcc-9 (Debian 9.3.0-22) 9.3.0\n"
  "\n"
@@ -27,7 +19,6 @@
  "\n"
  "vim +73 drivers/scsi/elx/libefc/efc_els.c\n"
  "\n"
- "8f406ef728597d James Smart       2021-06-01   39  \n"
  "8f406ef728597d James Smart       2021-06-01   40  struct efc_els_io_req *\n"
  "8f406ef728597d James Smart       2021-06-01   41  efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)\n"
  "8f406ef728597d James Smart       2021-06-01   42  {\n"
@@ -38,6 +29,8 @@
  "8f406ef728597d James Smart       2021-06-01   47  \tefc = node->efc;\n"
  "8f406ef728597d James Smart       2021-06-01   48  \n"
  "8f406ef728597d James Smart       2021-06-01   49  \tspin_lock_irqsave(&node->els_ios_lock, flags);\n"
+ "                                                        ^^^^^^^^^^^^^^^^^\n"
+ "\n"
  "8f406ef728597d James Smart       2021-06-01   50  \n"
  "8f406ef728597d James Smart       2021-06-01   51  \tif (!node->els_io_enabled) {\n"
  "8f406ef728597d James Smart       2021-06-01   52  \t\tefc_log_err(efc, \"els io alloc disabled\\n\");\n"
@@ -63,6 +56,9 @@
  "8f406ef728597d James Smart       2021-06-01   72  \tels->io.req.size = reqlen;\n"
  "8f406ef728597d James Smart       2021-06-01  @73  \tels->io.req.virt = dma_alloc_coherent(&efc->pci->dev, els->io.req.size,\n"
  "efac162a4e4dc4 Christoph Hellwig 2021-12-14   74  \t\t\t\t\t      &els->io.req.phys, GFP_KERNEL);\n"
+ "                                                                                                                 ^^^^^^^^^^\n"
+ "Sleeping in spin lock\n"
+ "\n"
  "8f406ef728597d James Smart       2021-06-01   75  \tif (!els->io.req.virt) {\n"
  "8f406ef728597d James Smart       2021-06-01   76  \t\tmempool_free(els, efc->els_io_pool);\n"
  "8f406ef728597d James Smart       2021-06-01   77  \t\tspin_unlock_irqrestore(&node->els_ios_lock, flags);\n"
@@ -72,6 +68,9 @@
  "8f406ef728597d James Smart       2021-06-01   81  \tels->io.rsp.size = rsplen;\n"
  "8f406ef728597d James Smart       2021-06-01   82  \tels->io.rsp.virt = dma_alloc_coherent(&efc->pci->dev, els->io.rsp.size,\n"
  "efac162a4e4dc4 Christoph Hellwig 2021-12-14   83  \t\t\t\t\t      &els->io.rsp.phys, GFP_KERNEL);\n"
+ "                                                                                                                 ^^^^^^^^^^\n"
+ "Same\n"
+ "\n"
  "8f406ef728597d James Smart       2021-06-01   84  \tif (!els->io.rsp.virt) {\n"
  "8f406ef728597d James Smart       2021-06-01   85  \t\tdma_free_coherent(&efc->pci->dev, els->io.req.size,\n"
  "8f406ef728597d James Smart       2021-06-01   86  \t\t\t\t  els->io.req.virt, els->io.req.phys);\n"
@@ -91,16 +90,9 @@
  "8f406ef728597d James Smart       2021-06-01  100  \tspin_unlock_irqrestore(&node->els_ios_lock, flags);\n"
  "8f406ef728597d James Smart       2021-06-01  101  \treturn els;\n"
  "8f406ef728597d James Smart       2021-06-01  102  }\n"
- "8f406ef728597d James Smart       2021-06-01  103  \n"
- "\n"
- ":::::: The code at line 73 was first introduced by commit\n"
- ":::::: 8f406ef728597da39c935ab9c12f4940139775f9 scsi: elx: libefc: Extended link Service I/O handling\n"
- "\n"
- ":::::: TO: James Smart <jsmart2021@gmail.com>\n"
- ":::::: CC: Martin K. Petersen <martin.petersen@oracle.com>\n"
  "\n"
  "---\n"
  "0-DAY CI Kernel Test Service, Intel Corporation\n"
  https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
 
-a95a4f158c126610250a982752d44a335fc4b8e9be36f9192f45814274af066a
+72fb554e46b29ea84851e04f9e162754297138cc517a9745e51ae9afc650589a

diff --git a/a/1.txt b/N2/1.txt
index 64381af..2f09318 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -1,15 +1,7 @@
-CC: kbuild-all(a)lists.01.org
-CC: linux-kernel(a)vger.kernel.org
-TO: Christoph Hellwig <hch@lst.de>
-CC: "Martin K. Petersen" <martin.petersen@oracle.com>
-CC: James Smart <jsmart2021@gmail.com>
-
 tree:   https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next
 head:   315d049ad1951cef02d9337a2469cac51cca6932
 commit: efac162a4e4dc4cebcc658e02676821ca834b56c [67/132] scsi: efct: Don't pass GFP_DMA to dma_alloc_coherent()
-:::::: branch date: 25 hours ago
-:::::: commit date: 3 weeks ago
-config: x86_64-randconfig-m031-20220107 (https://download.01.org/0day-ci/archive/20220108/202201082354.iAG3UuiL-lkp(a)intel.com/config)
+config: x86_64-randconfig-m031-20220107 (https://download.01.org/0day-ci/archive/20220108/202201082354.iAG3UuiL-lkp@intel.com/config)
 compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
 
 If you fix the issue, kindly add following tag as appropriate
@@ -21,7 +13,6 @@ drivers/scsi/elx/libefc/efc_els.c:73 efc_els_io_alloc_size() warn: sleeping in a
 
 vim +73 drivers/scsi/elx/libefc/efc_els.c
 
-8f406ef728597d James Smart       2021-06-01   39  
 8f406ef728597d James Smart       2021-06-01   40  struct efc_els_io_req *
 8f406ef728597d James Smart       2021-06-01   41  efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)
 8f406ef728597d James Smart       2021-06-01   42  {
@@ -32,6 +23,8 @@ vim +73 drivers/scsi/elx/libefc/efc_els.c
 8f406ef728597d James Smart       2021-06-01   47  	efc = node->efc;
 8f406ef728597d James Smart       2021-06-01   48  
 8f406ef728597d James Smart       2021-06-01   49  	spin_lock_irqsave(&node->els_ios_lock, flags);
+                                                        ^^^^^^^^^^^^^^^^^
+
 8f406ef728597d James Smart       2021-06-01   50  
 8f406ef728597d James Smart       2021-06-01   51  	if (!node->els_io_enabled) {
 8f406ef728597d James Smart       2021-06-01   52  		efc_log_err(efc, "els io alloc disabled\n");
@@ -57,6 +50,9 @@ vim +73 drivers/scsi/elx/libefc/efc_els.c
 8f406ef728597d James Smart       2021-06-01   72  	els->io.req.size = reqlen;
 8f406ef728597d James Smart       2021-06-01  @73  	els->io.req.virt = dma_alloc_coherent(&efc->pci->dev, els->io.req.size,
 efac162a4e4dc4 Christoph Hellwig 2021-12-14   74  					      &els->io.req.phys, GFP_KERNEL);
+                                                                                                                 ^^^^^^^^^^
+Sleeping in spin lock
+
 8f406ef728597d James Smart       2021-06-01   75  	if (!els->io.req.virt) {
 8f406ef728597d James Smart       2021-06-01   76  		mempool_free(els, efc->els_io_pool);
 8f406ef728597d James Smart       2021-06-01   77  		spin_unlock_irqrestore(&node->els_ios_lock, flags);
@@ -66,6 +62,9 @@ efac162a4e4dc4 Christoph Hellwig 2021-12-14   74  					      &els->io.req.phys,
 8f406ef728597d James Smart       2021-06-01   81  	els->io.rsp.size = rsplen;
 8f406ef728597d James Smart       2021-06-01   82  	els->io.rsp.virt = dma_alloc_coherent(&efc->pci->dev, els->io.rsp.size,
 efac162a4e4dc4 Christoph Hellwig 2021-12-14   83  					      &els->io.rsp.phys, GFP_KERNEL);
+                                                                                                                 ^^^^^^^^^^
+Same
+
 8f406ef728597d James Smart       2021-06-01   84  	if (!els->io.rsp.virt) {
 8f406ef728597d James Smart       2021-06-01   85  		dma_free_coherent(&efc->pci->dev, els->io.req.size,
 8f406ef728597d James Smart       2021-06-01   86  				  els->io.req.virt, els->io.req.phys);
@@ -85,14 +84,7 @@ efac162a4e4dc4 Christoph Hellwig 2021-12-14   83  					      &els->io.rsp.phys,
 8f406ef728597d James Smart       2021-06-01  100  	spin_unlock_irqrestore(&node->els_ios_lock, flags);
 8f406ef728597d James Smart       2021-06-01  101  	return els;
 8f406ef728597d James Smart       2021-06-01  102  }
-8f406ef728597d James Smart       2021-06-01  103  
-
-:::::: The code at line 73 was first introduced by commit
-:::::: 8f406ef728597da39c935ab9c12f4940139775f9 scsi: elx: libefc: Extended link Service I/O handling
-
-:::::: TO: James Smart <jsmart2021@gmail.com>
-:::::: CC: Martin K. Petersen <martin.petersen@oracle.com>
 
 ---
 0-DAY CI Kernel Test Service, Intel Corporation
-https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
+https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
diff --git a/a/content_digest b/N2/content_digest
index b7342a3..ff41d07 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,21 +1,19 @@
- "From\0kernel test robot <lkp@intel.com>\0"
+ "From\0Dan Carpenter <dan.carpenter@oracle.com>\0"
  "Subject\0[mkp-scsi:for-next 67/132] drivers/scsi/elx/libefc/efc_els.c:73 efc_els_io_alloc_size() warn: sleeping in atomic context\0"
- "Date\0Sat, 08 Jan 2022 23:50:23 +0800\0"
- "To\0kbuild@lists.01.org\0"
- "\01:1\0"
+ "Date\0Mon, 10 Jan 2022 10:01:57 +0300\0"
+ "To\0kbuild@lists.01.org"
+ " Christoph Hellwig <hch@lst.de>\0"
+ "Cc\0lkp@intel.com"
+  kbuild-all@lists.01.org
+  linux-kernel@vger.kernel.org
+  Martin K. Petersen <martin.petersen@oracle.com>
+ " James Smart <jsmart2021@gmail.com>\0"
+ "\00:1\0"
  "b\0"
- "CC: kbuild-all(a)lists.01.org\n"
- "CC: linux-kernel(a)vger.kernel.org\n"
- "TO: Christoph Hellwig <hch@lst.de>\n"
- "CC: \"Martin K. Petersen\" <martin.petersen@oracle.com>\n"
- "CC: James Smart <jsmart2021@gmail.com>\n"
- "\n"
  "tree:   https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next\n"
  "head:   315d049ad1951cef02d9337a2469cac51cca6932\n"
  "commit: efac162a4e4dc4cebcc658e02676821ca834b56c [67/132] scsi: efct: Don't pass GFP_DMA to dma_alloc_coherent()\n"
- ":::::: branch date: 25 hours ago\n"
- ":::::: commit date: 3 weeks ago\n"
- "config: x86_64-randconfig-m031-20220107 (https://download.01.org/0day-ci/archive/20220108/202201082354.iAG3UuiL-lkp(a)intel.com/config)\n"
+ "config: x86_64-randconfig-m031-20220107 (https://download.01.org/0day-ci/archive/20220108/202201082354.iAG3UuiL-lkp@intel.com/config)\n"
  "compiler: gcc-9 (Debian 9.3.0-22) 9.3.0\n"
  "\n"
  "If you fix the issue, kindly add following tag as appropriate\n"
@@ -27,7 +25,6 @@
  "\n"
  "vim +73 drivers/scsi/elx/libefc/efc_els.c\n"
  "\n"
- "8f406ef728597d James Smart       2021-06-01   39  \n"
  "8f406ef728597d James Smart       2021-06-01   40  struct efc_els_io_req *\n"
  "8f406ef728597d James Smart       2021-06-01   41  efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)\n"
  "8f406ef728597d James Smart       2021-06-01   42  {\n"
@@ -38,6 +35,8 @@
  "8f406ef728597d James Smart       2021-06-01   47  \tefc = node->efc;\n"
  "8f406ef728597d James Smart       2021-06-01   48  \n"
  "8f406ef728597d James Smart       2021-06-01   49  \tspin_lock_irqsave(&node->els_ios_lock, flags);\n"
+ "                                                        ^^^^^^^^^^^^^^^^^\n"
+ "\n"
  "8f406ef728597d James Smart       2021-06-01   50  \n"
  "8f406ef728597d James Smart       2021-06-01   51  \tif (!node->els_io_enabled) {\n"
  "8f406ef728597d James Smart       2021-06-01   52  \t\tefc_log_err(efc, \"els io alloc disabled\\n\");\n"
@@ -63,6 +62,9 @@
  "8f406ef728597d James Smart       2021-06-01   72  \tels->io.req.size = reqlen;\n"
  "8f406ef728597d James Smart       2021-06-01  @73  \tels->io.req.virt = dma_alloc_coherent(&efc->pci->dev, els->io.req.size,\n"
  "efac162a4e4dc4 Christoph Hellwig 2021-12-14   74  \t\t\t\t\t      &els->io.req.phys, GFP_KERNEL);\n"
+ "                                                                                                                 ^^^^^^^^^^\n"
+ "Sleeping in spin lock\n"
+ "\n"
  "8f406ef728597d James Smart       2021-06-01   75  \tif (!els->io.req.virt) {\n"
  "8f406ef728597d James Smart       2021-06-01   76  \t\tmempool_free(els, efc->els_io_pool);\n"
  "8f406ef728597d James Smart       2021-06-01   77  \t\tspin_unlock_irqrestore(&node->els_ios_lock, flags);\n"
@@ -72,6 +74,9 @@
  "8f406ef728597d James Smart       2021-06-01   81  \tels->io.rsp.size = rsplen;\n"
  "8f406ef728597d James Smart       2021-06-01   82  \tels->io.rsp.virt = dma_alloc_coherent(&efc->pci->dev, els->io.rsp.size,\n"
  "efac162a4e4dc4 Christoph Hellwig 2021-12-14   83  \t\t\t\t\t      &els->io.rsp.phys, GFP_KERNEL);\n"
+ "                                                                                                                 ^^^^^^^^^^\n"
+ "Same\n"
+ "\n"
  "8f406ef728597d James Smart       2021-06-01   84  \tif (!els->io.rsp.virt) {\n"
  "8f406ef728597d James Smart       2021-06-01   85  \t\tdma_free_coherent(&efc->pci->dev, els->io.req.size,\n"
  "8f406ef728597d James Smart       2021-06-01   86  \t\t\t\t  els->io.req.virt, els->io.req.phys);\n"
@@ -91,16 +96,9 @@
  "8f406ef728597d James Smart       2021-06-01  100  \tspin_unlock_irqrestore(&node->els_ios_lock, flags);\n"
  "8f406ef728597d James Smart       2021-06-01  101  \treturn els;\n"
  "8f406ef728597d James Smart       2021-06-01  102  }\n"
- "8f406ef728597d James Smart       2021-06-01  103  \n"
- "\n"
- ":::::: The code at line 73 was first introduced by commit\n"
- ":::::: 8f406ef728597da39c935ab9c12f4940139775f9 scsi: elx: libefc: Extended link Service I/O handling\n"
- "\n"
- ":::::: TO: James Smart <jsmart2021@gmail.com>\n"
- ":::::: CC: Martin K. Petersen <martin.petersen@oracle.com>\n"
  "\n"
  "---\n"
  "0-DAY CI Kernel Test Service, Intel Corporation\n"
- https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
+ https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
 
-a95a4f158c126610250a982752d44a335fc4b8e9be36f9192f45814274af066a
+21f0428c4d758f3f9f6725980f74a1db264034a337a8d90c743c55eb5e95b6a5

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.