All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild@lists.01.org
Subject: drivers/scsi/lpfc/lpfc_ct.c:3955:2: warning: Value stored to 'size' is never read [clang-analyzer-deadcode.DeadStores]
Date: Sat, 22 Jan 2022 16:32:06 +0800	[thread overview]
Message-ID: <202201221636.smRQbc1j-lkp@intel.com> (raw)

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

CC: llvm(a)lists.linux.dev
CC: kbuild-all(a)lists.01.org
CC: linux-kernel(a)vger.kernel.org
TO: Gaurav Srivastava <gaurav.srivastava@broadcom.com>
CC: "Martin K. Petersen" <martin.petersen@oracle.com>
CC: Hannes Reinecke <hare@suse.de>
CC: James Smart <jsmart2021@gmail.com>
CC: Muneendra Kumar <muneendra.kumar@broadcom.com>

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   9b57f458985742bd1c585f4c7f36d04634ce1143
commit: 742b0cf87a8f9219101d68a7b4c6317db057ac58 scsi: lpfc: vmid: Implement CT commands for appid
date:   8 months ago
:::::: branch date: 18 hours ago
:::::: commit date: 8 months ago
config: arm-randconfig-c002-20220117 (https://download.01.org/0day-ci/archive/20220122/202201221636.smRQbc1j-lkp(a)intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project c10cbb243cafc0cf42c3e922cb29183279444432)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install arm cross compiling tool for clang build
        # apt-get install binutils-arm-linux-gnueabi
        # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=742b0cf87a8f9219101d68a7b4c6317db057ac58
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout 742b0cf87a8f9219101d68a7b4c6317db057ac58
        # save the config file to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm clang-analyzer 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>


clang-analyzer warnings: (new ones prefixed by >>)
           if (!should_fail_usercopy() && likely(access_ok(from, n))) {
                                          ^
   include/linux/compiler.h:77:20: note: expanded from macro 'likely'
   # define likely(x)      __builtin_expect(!!(x), 1)
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/uaccess.h:157:2: note: Taking true branch
           if (!should_fail_usercopy() && likely(access_ok(from, n))) {
           ^
   include/linux/uaccess.h:159:9: note: Calling 'raw_copy_from_user'
                   res = raw_copy_from_user(to, from, n);
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   arch/arm/include/asm/uaccess.h:525:6: note: Value assigned to 'cmd.flags', which participates in a condition later
           n = arm_copy_from_user(to, from, n);
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   arch/arm/include/asm/uaccess.h:527:2: note: Returning value (loaded from 'n'), which participates in a condition later
           return n;
           ^~~~~~~~
   include/linux/uaccess.h:159:9: note: Returning from 'raw_copy_from_user'
                   res = raw_copy_from_user(to, from, n);
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/uaccess.h:161:6: note: Assuming 'res' is 0, which participates in a condition later
           if (unlikely(res))
               ^
   include/linux/compiler.h:78:40: note: expanded from macro 'unlikely'
   # define unlikely(x)    __builtin_expect(!!(x), 0)
                                             ^~~~
   include/linux/uaccess.h:161:2: note: Taking false branch
           if (unlikely(res))
           ^
   include/linux/uaccess.h:163:2: note: Returning zero (loaded from 'res'), which participates in a condition later
           return res;
           ^~~~~~~~~~
   include/linux/uaccess.h:192:7: note: Returning from '_copy_from_user'
                   n = _copy_from_user(to, from, n);
                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/uaccess.h:193:2: note: Returning zero (loaded from 'n'), which participates in a condition later
           return n;
           ^~~~~~~~
   drivers/nvme/host/ioctl.c:191:6: note: Returning from 'copy_from_user'
           if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/nvme/host/ioctl.c:191:2: note: Taking false branch
           if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
           ^
   drivers/nvme/host/ioctl.c:193:6: note: Assuming field 'flags' is 0
           if (cmd.flags)
               ^~~~~~~~~
   drivers/nvme/host/ioctl.c:193:2: note: Taking false branch
           if (cmd.flags)
           ^
   drivers/nvme/host/ioctl.c:195:6: note: 'ns' is null
           if (ns && cmd.nsid != ns->head->ns_id) {
               ^~
   drivers/nvme/host/ioctl.c:195:9: note: Left side of '&&' is false
           if (ns && cmd.nsid != ns->head->ns_id) {
                  ^
   drivers/nvme/host/ioctl.c:215:6: note: Assuming field 'timeout_ms' is 0
           if (cmd.timeout_ms)
               ^~~~~~~~~~~~~~
   drivers/nvme/host/ioctl.c:215:2: note: Taking false branch
           if (cmd.timeout_ms)
           ^
   drivers/nvme/host/ioctl.c:218:32: note: 'ns' is null
           status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
                                         ^~
   drivers/nvme/host/ioctl.c:218:32: note: '?' condition is false
   drivers/nvme/host/ioctl.c:218:11: note: Calling 'nvme_submit_user_cmd'
           status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/nvme/host/ioctl.c:63:30: note: Assuming 'ns' is null
           struct block_device *bdev = ns ? ns->disk->part0 : NULL;
                                       ^~
   drivers/nvme/host/ioctl.c:63:30: note: '?' condition is false
   drivers/nvme/host/ioctl.c:70:2: note: Taking true branch
           if (IS_ERR(req))
           ^
   drivers/nvme/host/ioctl.c:71:3: note: Returning without writing to '*result'
                   return PTR_ERR(req);
                   ^
   drivers/nvme/host/ioctl.c:218:11: note: Returning from 'nvme_submit_user_cmd'
           status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/nvme/host/ioctl.c:223:6: note: 'status' is >= 0
           if (status >= 0) {
               ^~~~~~
   drivers/nvme/host/ioctl.c:223:2: note: Taking true branch
           if (status >= 0) {
           ^
   drivers/nvme/host/ioctl.c:224:7: note: Assigned value is garbage or undefined
                   if (put_user(result, &ucmd->result))
                       ^
   arch/arm/include/asm/uaccess.h:406:2: note: expanded from macro 'put_user'
           __put_user_switch((x), (ptr), __pu_err, __put_user_check);      \
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   arch/arm/include/asm/uaccess.h:389:3: note: expanded from macro '__put_user_switch'
                   __typeof__(*(ptr)) __pu_val = (x);                      \
                   ^                             ~~~
   Suppressed 5 warnings (5 in non-user code).
   Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.
   17 warnings generated.
>> drivers/scsi/lpfc/lpfc_ct.c:3955:2: warning: Value stored to 'size' is never read [clang-analyzer-deadcode.DeadStores]
           size = 0;
           ^      ~
   drivers/scsi/lpfc/lpfc_ct.c:3955:2: note: Value stored to 'size' is never read
           size = 0;
           ^      ~
   Suppressed 16 warnings (7 in non-user code, 9 with check filters).
   Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.
   21 warnings generated.
   drivers/scsi/lpfc/lpfc_els.c:4463:24: warning: Access to field 'virt' results in a dereference of a null pointer (loaded from variable 'buf_ptr') [clang-analyzer-core.NullDereference]
                   lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
                                        ^
   drivers/scsi/lpfc/lpfc_els.c:10789:6: note: Assuming 'ndlp' is non-null
           if (!ndlp || ndlp->nlp_state != NLP_STE_UNMAPPED_NODE)
               ^~~~~
   drivers/scsi/lpfc/lpfc_els.c:10789:6: note: Left side of '||' is false
   drivers/scsi/lpfc/lpfc_els.c:10789:15: note: Assuming field 'nlp_state' is equal to NLP_STE_UNMAPPED_NODE
           if (!ndlp || ndlp->nlp_state != NLP_STE_UNMAPPED_NODE)
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:10789:2: note: Taking false branch
           if (!ndlp || ndlp->nlp_state != NLP_STE_UNMAPPED_NODE)
           ^
   drivers/scsi/lpfc/lpfc_els.c:10792:9: note: Assuming the condition is true
           prsp = list_get_first(&dmabuf->list, struct lpfc_dmabuf, list);
                  ^
   drivers/scsi/lpfc/lpfc_scsi.h:38:3: note: expanded from macro 'list_get_first'
           (list_empty(list)) ? NULL :                             \
            ^~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:10792:9: note: '?' condition is true
           prsp = list_get_first(&dmabuf->list, struct lpfc_dmabuf, list);
                  ^
   drivers/scsi/lpfc/lpfc_scsi.h:38:2: note: expanded from macro 'list_get_first'
           (list_empty(list)) ? NULL :                             \
           ^
   drivers/scsi/lpfc/lpfc_els.c:10793:7: note: 'prsp' is null
           if (!prsp)
                ^~~~
   drivers/scsi/lpfc/lpfc_els.c:10793:2: note: Taking true branch
           if (!prsp)
           ^
   drivers/scsi/lpfc/lpfc_els.c:10794:3: note: Control jumps to line 10822
                   goto out;
                   ^
   drivers/scsi/lpfc/lpfc_els.c:10823:2: note: Calling 'lpfc_els_free_iocb'
           lpfc_els_free_iocb(phba, icmdiocb);
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4527:15: note: Field 'context2' is non-null
           if (elsiocb->context2) {
                        ^
   drivers/scsi/lpfc/lpfc_els.c:4527:2: note: Taking true branch
           if (elsiocb->context2) {
           ^
   drivers/scsi/lpfc/lpfc_els.c:4528:7: note: Assuming the condition is false
                   if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4528:3: note: Taking false branch
                   if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
                   ^
   drivers/scsi/lpfc/lpfc_els.c:4555:4: note: Calling 'lpfc_els_free_data'
                           lpfc_els_free_data(phba, buf_ptr1);
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4459:6: note: Assuming the condition is true
           if (!list_empty(&buf_ptr1->list)) {
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4459:2: note: Taking true branch
           if (!list_empty(&buf_ptr1->list)) {
           ^
   drivers/scsi/lpfc/lpfc_els.c:4460:37: note: Null pointer value stored to 'buf_ptr'
                   list_remove_head(&buf_ptr1->list, buf_ptr,
                                                     ^
   drivers/scsi/lpfc/lpfc_scsi.h:30:2: note: expanded from macro 'list_remove_head'
           entry = NULL;                                           \
           ^~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4460:3: note: Assuming the condition is false
                   list_remove_head(&buf_ptr1->list, buf_ptr,
                   ^
   drivers/scsi/lpfc/lpfc_scsi.h:31:6: note: expanded from macro 'list_remove_head'
           if (!list_empty(list)) {                                \
               ^~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4460:3: note: Taking false branch
                   list_remove_head(&buf_ptr1->list, buf_ptr,
                   ^
   drivers/scsi/lpfc/lpfc_scsi.h:31:2: note: expanded from macro 'list_remove_head'
           if (!list_empty(list)) {                                \
           ^
   drivers/scsi/lpfc/lpfc_els.c:4460:3: note: Loop condition is false.  Exiting loop
                   list_remove_head(&buf_ptr1->list, buf_ptr,
                   ^
   drivers/scsi/lpfc/lpfc_scsi.h:29:2: note: expanded from macro 'list_remove_head'
           do {                                                    \
           ^
   drivers/scsi/lpfc/lpfc_els.c:4463:24: note: Access to field 'virt' results in a dereference of a null pointer (loaded from variable 'buf_ptr')
                   lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
                                        ^~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4913:3: warning: Value stored to 'pcmd' is never read [clang-analyzer-deadcode.DeadStores]
                   pcmd += sizeof(uint32_t);
                   ^       ~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:4913:3: note: Value stored to 'pcmd' is never read
                   pcmd += sizeof(uint32_t);
                   ^       ~~~~~~~~~~~~~~~~
   drivers/scsi/lpfc/lpfc_els.c:8477:4: warning: Value stored to 'cmd' is never read [clang-analyzer-deadcode.DeadStores]

vim +/size +3955 drivers/scsi/lpfc/lpfc_ct.c

742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3883  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3884  /**
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3885   * lpfc_vmid_cmd - Build and send a FDMI cmd to the specified NPort
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3886   * @vport: pointer to a host virtual N_Port data structure.
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3887   * @ndlp: ndlp to send FDMI cmd to (if NULL use FDMI_DID)
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3888   * cmdcode: FDMI command to send
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3889   * mask: Mask of HBA or PORT Attributes to send
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3890   *
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3891   * Builds and sends a FDMI command using the CT subsystem.
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3892   */
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3893  int
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3894  lpfc_vmid_cmd(struct lpfc_vport *vport,
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3895  	      int cmdcode, struct lpfc_vmid *vmid)
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3896  {
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3897  	struct lpfc_hba *phba = vport->phba;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3898  	struct lpfc_dmabuf *mp, *bmp;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3899  	struct lpfc_sli_ct_request *ctreq;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3900  	struct ulp_bde64 *bpl;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3901  	u32 size;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3902  	u32 rsp_size;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3903  	u8 *data;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3904  	struct lpfc_vmid_rapp_ident_list *rap;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3905  	struct lpfc_vmid_dapp_ident_list *dap;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3906  	u8 retry = 0;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3907  	struct lpfc_nodelist *ndlp;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3908  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3909  	void (*cmpl)(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3910  		     struct lpfc_iocbq *rspiocb);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3911  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3912  	ndlp = lpfc_findnode_did(vport, FDMI_DID);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3913  	if (!ndlp || ndlp->nlp_state != NLP_STE_UNMAPPED_NODE)
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3914  		return 0;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3915  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3916  	cmpl = lpfc_cmpl_ct_cmd_vmid;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3917  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3918  	/* fill in BDEs for command */
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3919  	/* Allocate buffer for command payload */
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3920  	mp = kmalloc(sizeof(*mp), GFP_KERNEL);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3921  	if (!mp)
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3922  		goto vmid_free_mp_exit;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3923  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3924  	mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3925  	if (!mp->virt)
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3926  		goto vmid_free_mp_virt_exit;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3927  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3928  	/* Allocate buffer for Buffer ptr list */
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3929  	bmp = kmalloc(sizeof(*bmp), GFP_KERNEL);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3930  	if (!bmp)
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3931  		goto vmid_free_bmp_exit;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3932  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3933  	bmp->virt = lpfc_mbuf_alloc(phba, 0, &bmp->phys);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3934  	if (!bmp->virt)
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3935  		goto vmid_free_bmp_virt_exit;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3936  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3937  	INIT_LIST_HEAD(&mp->list);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3938  	INIT_LIST_HEAD(&bmp->list);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3939  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3940  	lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3941  			 "3275 VMID Request Data: x%x x%x x%x\n",
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3942  			 vport->fc_flag, vport->port_state, cmdcode);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3943  	ctreq = (struct lpfc_sli_ct_request *)mp->virt;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3944  	data = mp->virt;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3945  	/* First populate the CT_IU preamble */
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3946  	memset(data, 0, LPFC_BPL_SIZE);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3947  	ctreq->RevisionId.bits.Revision = SLI_CT_REVISION;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3948  	ctreq->RevisionId.bits.InId = 0;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3949  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3950  	ctreq->FsType = SLI_CT_MANAGEMENT_SERVICE;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3951  	ctreq->FsSubType = SLI_CT_APP_SEV_Subtypes;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3952  
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3953  	ctreq->CommandResponse.bits.CmdRsp = cpu_to_be16(cmdcode);
742b0cf87a8f92 Gaurav Srivastava 2021-06-08  3954  	rsp_size = LPFC_BPL_SIZE;
742b0cf87a8f92 Gaurav Srivastava 2021-06-08 @3955  	size = 0;

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

             reply	other threads:[~2022-01-22  8:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-22  8:32 kernel test robot [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-03-20 15:22 drivers/scsi/lpfc/lpfc_ct.c:3955:2: warning: Value stored to 'size' is never read [clang-analyzer-deadcode.DeadStores] kernel test robot

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=202201221636.smRQbc1j-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild@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.