From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752800AbcCVWER (ORCPT ); Tue, 22 Mar 2016 18:04:17 -0400 Received: from mailout3.samsung.com ([203.254.224.33]:54407 "EHLO mailout3.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752723AbcCVWEN (ORCPT ); Tue, 22 Mar 2016 18:04:13 -0400 X-AuditID: cbfee61b-f793c6d00000236c-62-56f1c15b8106 From: Ming Lin To: linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org Cc: Christoph Hellwig Subject: [PATCH v2 2/5] scsi: replace "mq" with "first_chunk" in SG functions Date: Tue, 22 Mar 2016 15:03:13 -0700 Message-id: <1458684196-15923-3-git-send-email-mlin@kernel.org> X-Mailer: git-send-email 1.9.1 In-reply-to: <1458684196-15923-1-git-send-email-mlin@kernel.org> References: <1458684196-15923-1-git-send-email-mlin@kernel.org> X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrEJMWRmVeSWpSXmKPExsVy+t9jQd3ogx/DDP7vkbJYufook8XlXXPY LLqv72BzYPbYfbOBzePzJrkApigum5TUnMyy1CJ9uwSujPaZS9kKWoQrOudfZG9gPMbfxcjJ ISFgInHg+H5GCFtM4sK99WxdjFwcQgKzGCVWHr4PlhAS+MUosfGrKojNJqAgcXDdBqYuRg4O EQEbiaZvTCBhZgEliQVr77KD2MICvhL/z04Ga2URUJW41X4QrIZXwF6ibc9VVohdchInj00G szkFHCQ+TpjNArHKXqLp90nWCYy8CxgZVjFKpBYkFxQnpeca5aWW6xUn5haX5qXrJefnbmIE h8Qz6R2Mh3e5H2IU4GBU4uFt2PAhTIg1say4MvcQowQHs5II76q+j2FCvCmJlVWpRfnxRaU5 qcWHGKU5WJTEeR//XxcmJJCeWJKanZpakFoEk2Xi4JRqYGQwXXuHpXGfz26hJ+lb7s/dsGZS edAad/1fgfx/jvKJS1w42/SzMfDctsuNQtssLyicF/1x78Gskwd2vHbMMDRO3dT3Zx3P1Jwj dz0+PrnFdnxbffk+p+O7g5esy/Vp+y/X2+a+c1Gv4ezm1md/56Sxbnq449Axe/Oy+4/3VjiF KS7Jjm1+fstTiaU4I9FQi7moOBEAe7Om2gUCAAA= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Ming Lin Parameter "bool mq" is block driver specific. Change it to "first_chunk" to make it more generic. Signed-off-by: Ming Lin --- drivers/scsi/scsi_lib.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 5eaddc7..ab3dd09 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c @@ -583,33 +583,32 @@ static struct scatterlist *scsi_sg_alloc(unsigned int nents, gfp_t gfp_mask) return mempool_alloc(sgp->pool, gfp_mask); } -static void scsi_free_sgtable(struct sg_table *table, bool mq) +static void scsi_free_sgtable(struct sg_table *table, bool first_chunk) { - if (mq && table->orig_nents <= SCSI_MAX_SG_SEGMENTS) + if (first_chunk && table->orig_nents <= SCSI_MAX_SG_SEGMENTS) return; - __sg_free_table(table, SCSI_MAX_SG_SEGMENTS, mq, scsi_sg_free); + __sg_free_table(table, SCSI_MAX_SG_SEGMENTS, first_chunk, scsi_sg_free); } -static int scsi_alloc_sgtable(struct sg_table *table, int nents, bool mq) +static int scsi_alloc_sgtable(struct sg_table *table, int nents, + struct scatterlist *first_chunk) { - struct scatterlist *first_chunk = NULL; int ret; BUG_ON(!nents); - if (mq) { + if (first_chunk) { if (nents <= SCSI_MAX_SG_SEGMENTS) { table->nents = table->orig_nents = nents; sg_init_table(table->sgl, nents); return 0; } - first_chunk = table->sgl; } ret = __sg_alloc_table(table, nents, SCSI_MAX_SG_SEGMENTS, first_chunk, GFP_ATOMIC, scsi_sg_alloc); if (unlikely(ret)) - scsi_free_sgtable(table, mq); + scsi_free_sgtable(table, (bool)first_chunk); return ret; } @@ -1091,7 +1090,7 @@ static int scsi_init_sgtable(struct request *req, struct scsi_data_buffer *sdb) * If sg table allocation fails, requeue request later. */ if (unlikely(scsi_alloc_sgtable(&sdb->table, req->nr_phys_segments, - req->mq_ctx != NULL))) + sdb->table.sgl))) return BLKPREP_DEFER; /* @@ -1163,7 +1162,8 @@ int scsi_init_io(struct scsi_cmnd *cmd) ivecs = blk_rq_count_integrity_sg(rq->q, rq->bio); - if (scsi_alloc_sgtable(&prot_sdb->table, ivecs, is_mq)) { + if (scsi_alloc_sgtable(&prot_sdb->table, ivecs, + prot_sdb->table.sgl)) { error = BLKPREP_DEFER; goto err_exit; } -- 1.9.1