All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Hannes Reinecke <hare@suse.de>
Cc: kbuild-all@lists.01.org,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Christoph Hellwig <hch@lst.de>,
	James Bottomley <james.bottomley@hansenpartnership.com>,
	linux-scsi@vger.kernel.org, Hannes Reinecke <hare@suse.de>
Subject: [PATCH] aacraid: fix semicolon.cocci warnings
Date: Sun, 3 Nov 2019 00:20:21 +0800	[thread overview]
Message-ID: <20191102162021.gj2d4oclwpx4uagv@4978f4969bb8> (raw)
In-Reply-To: <20191101111838.140027-4-hare@suse.de>

From: kbuild test robot <lkp@intel.com>

drivers/scsi/aacraid/aachba.c:2699:15-16: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: 73021c7fb117 ("aacraid: use blk_mq_rq_busy_iter() for traversing outstanding commands")
CC: Hannes Reinecke <hare@suse.de>
Signed-off-by: kbuild test robot <lkp@intel.com>
---

url:    https://github.com/0day-ci/linux/commits/Hannes-Reinecke/scsi-remove-legacy-cmd_list-implementation/20191102-214752
base:   https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next

 aachba.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/scsi/aacraid/aachba.c
+++ b/drivers/scsi/aacraid/aachba.c
@@ -2696,7 +2696,7 @@ static bool synchronize_busy_iter(struct
 			return true;
 		if (((cmnd_lba + cmnd_count) < busy_data->lba) ||
 		    (busy_data->count && ((busy_data->lba + busy_data->count) < cmnd_lba)))
-			return true;;
+			return true;
 		++busy_data->active;
 	}
 	return true;

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [PATCH] aacraid: fix semicolon.cocci warnings
Date: Sun, 03 Nov 2019 00:20:21 +0800	[thread overview]
Message-ID: <20191102162021.gj2d4oclwpx4uagv@4978f4969bb8> (raw)
In-Reply-To: <20191101111838.140027-4-hare@suse.de>

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

From: kbuild test robot <lkp@intel.com>

drivers/scsi/aacraid/aachba.c:2699:15-16: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: 73021c7fb117 ("aacraid: use blk_mq_rq_busy_iter() for traversing outstanding commands")
CC: Hannes Reinecke <hare@suse.de>
Signed-off-by: kbuild test robot <lkp@intel.com>
---

url:    https://github.com/0day-ci/linux/commits/Hannes-Reinecke/scsi-remove-legacy-cmd_list-implementation/20191102-214752
base:   https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next

 aachba.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/scsi/aacraid/aachba.c
+++ b/drivers/scsi/aacraid/aachba.c
@@ -2696,7 +2696,7 @@ static bool synchronize_busy_iter(struct
 			return true;
 		if (((cmnd_lba + cmnd_count) < busy_data->lba) ||
 		    (busy_data->count && ((busy_data->lba + busy_data->count) < cmnd_lba)))
-			return true;;
+			return true;
 		++busy_data->active;
 	}
 	return true;

  parent reply	other threads:[~2019-11-02 16:21 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-01 11:18 [PATCH 0/4] scsi: remove legacy cmd_list implementation Hannes Reinecke
2019-11-01 11:18 ` [PATCH 1/4] dpt_i2o: use midlayer tcq implementation Hannes Reinecke
2019-11-01 11:18 ` [PATCH 2/4] dpt_i2o: make adpt_i2o_to_scsi() a void function Hannes Reinecke
2019-11-01 11:18 ` [PATCH 3/4] aacraid: use blk_mq_rq_busy_iter() for traversing outstanding commands Hannes Reinecke
2019-11-01 15:34   ` Bart Van Assche
2019-11-01 16:30     ` Hannes Reinecke
2019-11-02 16:20   ` kbuild test robot
2019-11-02 16:20     ` kbuild test robot
2019-11-02 16:20   ` kbuild test robot [this message]
2019-11-02 16:20     ` [PATCH] aacraid: fix semicolon.cocci warnings kbuild test robot
2019-11-01 11:18 ` [PATCH 4/4] scsi: Remove cmd_list functionality Hannes Reinecke
2019-11-01 15:28   ` Bart Van Assche

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=20191102162021.gj2d4oclwpx4uagv@4978f4969bb8 \
    --to=lkp@intel.com \
    --cc=hare@suse.de \
    --cc=hch@lst.de \
    --cc=james.bottomley@hansenpartnership.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    /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.