All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Manish Rangankar <manish.rangankar@cavium.com>
Cc: kbuild-all@01.org, martin.petersen@oracle.com, lduncan@suse.com,
	cleech@redhat.com, linux-scsi@vger.kernel.org,
	netdev@vger.kernel.org, QLogic-Storage-Upstream@cavium.com,
	Yuval.Mintz@cavium.com
Subject: Re: [PATCH v2 6/6] qedi: Add support for data path.
Date: Tue, 8 Nov 2016 19:09:54 +0800	[thread overview]
Message-ID: <201611081941.8e9Ut5J9%fengguang.wu@intel.com> (raw)
In-Reply-To: <1478588223-16183-7-git-send-email-manish.rangankar@cavium.com>

Hi Manish,

[auto build test WARNING on net-next/master]
[also build test WARNING on v4.9-rc4 next-20161028]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Manish-Rangankar/qed-Add-support-for-hardware-offloaded-iSCSI/20161108-180027
reproduce:
        # apt-get install sparse
        make ARCH=x86_64 allmodconfig
        make C=1 CF=-D__CHECK_ENDIAN__


sparse warnings: (new ones prefixed by >>)

   include/linux/compiler.h:253:8: sparse: attribute 'no_sanitize_address': unknown attribute
>> drivers/scsi/qedi/qedi_fw.c:2179:31: sparse: incompatible types in comparison expression (different base types)

vim +2179 drivers/scsi/qedi/qedi_fw.c

  2163		fw_task_ctx = qedi_get_task_mem(&qedi->tasks, tid);
  2164	
  2165		memset(fw_task_ctx, 0, sizeof(struct iscsi_task_context));
  2166		cmd->task_id = tid;
  2167	
  2168		/* Ystorm context */
  2169		fw_cmd = &fw_task_ctx->ystorm_st_context.pdu_hdr.cmd;
  2170		SET_FIELD(fw_cmd->flags_attr, ISCSI_CMD_HDR_ATTR, ISCSI_ATTR_SIMPLE);
  2171	
  2172		if (sc->sc_data_direction == DMA_TO_DEVICE) {
  2173			if (conn->session->initial_r2t_en) {
  2174				fw_task_ctx->ustorm_ag_context.exp_data_acked =
  2175					min((conn->session->imm_data_en *
  2176					    conn->max_xmit_dlength),
  2177					    conn->session->first_burst);
  2178				fw_task_ctx->ustorm_ag_context.exp_data_acked =
> 2179				      min(fw_task_ctx->ustorm_ag_context.exp_data_acked,
  2180					  scsi_bufflen(sc));
  2181			} else {
  2182				fw_task_ctx->ustorm_ag_context.exp_data_acked =
  2183				      min(conn->session->first_burst, scsi_bufflen(sc));
  2184			}
  2185	
  2186			SET_FIELD(fw_cmd->flags_attr, ISCSI_CMD_HDR_WRITE, 1);
  2187			task_type = ISCSI_TASK_TYPE_INITIATOR_WRITE;

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

  reply	other threads:[~2016-11-08 11:10 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-08  6:56 [PATCH v2 0/6] Add QLogic FastLinQ iSCSI (qedi) driver Manish Rangankar
2016-11-08  6:56 ` Manish Rangankar
2016-11-08  6:56 ` [PATCH v2 1/6] qed: Add support for hardware offloaded iSCSI Manish Rangankar
2016-11-08  6:56   ` Manish Rangankar
2016-11-11 15:57   ` Hannes Reinecke
2016-11-11 18:12     ` Arun Easi
2016-11-11 18:12       ` Arun Easi
2016-11-08  6:56 ` [PATCH v2 2/6] qed: Add iSCSI out of order packet handling Manish Rangankar
2016-11-08  6:56   ` Manish Rangankar
2016-11-11 15:59   ` Hannes Reinecke
2016-11-08  6:57 ` [PATCH v2 3/6] qedi: Add QLogic FastLinQ offload iSCSI driver framework Manish Rangankar
2016-11-08  6:57   ` Manish Rangankar
2016-11-08 10:52   ` kbuild test robot
2016-11-08 20:04     ` Arun Easi
2016-11-08 20:04       ` Arun Easi
2016-11-08 23:49       ` Martin K. Petersen
2016-11-08 23:49         ` Martin K. Petersen
2016-11-09  0:00         ` Arun Easi
2016-11-09  0:00           ` Arun Easi
2016-11-09  0:07           ` Martin K. Petersen
2016-11-09  0:07             ` Martin K. Petersen
2016-11-08 11:13   ` kbuild test robot
2016-11-11 16:43   ` Hannes Reinecke
2016-11-15  6:14     ` Rangankar, Manish
2016-11-15  7:21       ` Hannes Reinecke
2017-01-01 12:28   ` Or Gerlitz
2016-11-08  6:57 ` [PATCH v2 4/6] qedi: Add LL2 iSCSI interface for offload iSCSI Manish Rangankar
2016-11-08  6:57   ` Manish Rangankar
2016-11-11 16:44   ` Hannes Reinecke
2016-11-08  6:57 ` [PATCH v2 5/6] qedi: Add support for iSCSI session management Manish Rangankar
2016-11-08  6:57   ` Manish Rangankar
2016-11-11 16:47   ` Hannes Reinecke
2016-11-08  6:57 ` [PATCH v2 6/6] qedi: Add support for data path Manish Rangankar
2016-11-08  6:57   ` Manish Rangankar
2016-11-08 11:09   ` kbuild test robot [this message]
2016-11-11 16:49   ` Hannes Reinecke
2016-11-29 17:21 ` [PATCH v2 0/6] Add QLogic FastLinQ iSCSI (qedi) driver Martin K. Petersen
2016-11-29 17:21   ` Martin K. Petersen

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=201611081941.8e9Ut5J9%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=QLogic-Storage-Upstream@cavium.com \
    --cc=Yuval.Mintz@cavium.com \
    --cc=cleech@redhat.com \
    --cc=kbuild-all@01.org \
    --cc=lduncan@suse.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=manish.rangankar@cavium.com \
    --cc=martin.petersen@oracle.com \
    --cc=netdev@vger.kernel.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.