From patchwork Tue Mar 28 08:40:30 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 96121 Delivered-To: patch@linaro.org Received: by 10.140.89.233 with SMTP id v96csp1602482qgd; Tue, 28 Mar 2017 01:41:42 -0700 (PDT) X-Received: by 10.98.159.149 with SMTP id v21mr30689553pfk.57.1490690502793; Tue, 28 Mar 2017 01:41:42 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id u184si3533806pgd.21.2017.03.28.01.41.42; Tue, 28 Mar 2017 01:41:42 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-mmc-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@linaro.org; spf=pass (google.com: best guess record for domain of linux-mmc-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-mmc-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754713AbdC1Ilm (ORCPT + 5 others); Tue, 28 Mar 2017 04:41:42 -0400 Received: from mail-lf0-f51.google.com ([209.85.215.51]:33805 "EHLO mail-lf0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754673AbdC1Il3 (ORCPT ); Tue, 28 Mar 2017 04:41:29 -0400 Received: by mail-lf0-f51.google.com with SMTP id z15so33934089lfd.1 for ; Tue, 28 Mar 2017 01:40:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=xWLaPosRYwkHs/L3LesYOQrMbEHQPCAiKjMLayVKt2E=; b=GZJFDMvaRr4VhT7RbBlyHqhNvqUttrj+4SqeGS1vGVqq3cMod4/OaGh3XjCCaJAg8y K6UWoqsBKc9JuYbPKuks7niaR0fcaCdriLmKWa3eIDXFKyESJ9P8Ej3Eeow1A4Wp9Qzw TG/1IWUss0lKDB8upsNCrdRPxFYzKeDAlSpLs= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=xWLaPosRYwkHs/L3LesYOQrMbEHQPCAiKjMLayVKt2E=; b=TSrEyiBoqQE9xjFOSsz3+cS23nlZBrO+oat7aMauz1uYrRPqQ53nqGTXOTFcOgAuL4 YcZEfLbYLSPxJH1tdh789PlPfPgz3IHcIzoPlIM5tYp3pwDxYj1gidCs/AVMH125bYPY 0uucAYXCWwiAXjjv5bVCEYJtK+LS8SekvKQ8l8ECfYNh2cU+v93e/u7XufEPhvv5jrU3 g2YHE+QQJOpyCS9yWvgjpPAZqjkBmPRVQsyF/y6Qri+At0aKZn6vfSouxW1ll1BO7gdm ZlTw49jfHh3fh4Ki/nP7Ez7+7Bx4Rkmusn1ukiFw9pbsae3S4WjY6AN/tTvtoKViQlEW 4hQg== X-Gm-Message-State: AFeK/H145Pur1KGtc9OCSx/G8hewmE32mYgwkuP2epXUC69vR9mLfoohTqOULByc3nkz8bqE X-Received: by 10.25.198.19 with SMTP id w19mr12841850lff.175.1490690449059; Tue, 28 Mar 2017 01:40:49 -0700 (PDT) Received: from localhost.localdomain (c-357171d5.014-348-6c756e10.cust.bredbandsbolaget.se. [213.113.113.53]) by smtp.gmail.com with ESMTPSA id s13sm539590ljd.3.2017.03.28.01.40.47 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 28 Mar 2017 01:40:48 -0700 (PDT) From: Linus Walleij To: linux-mmc@vger.kernel.org, Ulf Hansson , Adrian Hunter Cc: Bartlomiej Zolnierkiewicz , Linus Walleij Subject: [PATCH 2/3] mmc: core: refactor asynchronous request finalization Date: Tue, 28 Mar 2017 10:40:30 +0200 Message-Id: <20170328084031.11995-3-linus.walleij@linaro.org> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170328084031.11995-1-linus.walleij@linaro.org> References: <20170328084031.11995-1-linus.walleij@linaro.org> Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org mmc_wait_for_data_req_done() is called in exactly one place, and having it spread out is making things hard to oversee. Factor this function into mmc_finalize_areq(). Reviewed-by: Bartlomiej Zolnierkiewicz Signed-off-by: Linus Walleij --- drivers/mmc/core/core.c | 86 +++++++++++++++++++------------------------------ 1 file changed, 33 insertions(+), 53 deletions(-) -- 2.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index b8468950e59d..c0b3f80c1f39 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -485,56 +485,6 @@ static int __mmc_start_req(struct mmc_host *host, struct mmc_request *mrq) return err; } -/* - * mmc_wait_for_data_req_done() - wait for request completed - * @host: MMC host to prepare the command. - * @mrq: MMC request to wait for - * - * Blocks MMC context till host controller will ack end of data request - * execution or new request notification arrives from the block layer. - * Handles command retries. - * - * Returns enum mmc_blk_status after checking errors. - */ -static enum mmc_blk_status mmc_wait_for_data_req_done(struct mmc_host *host, - struct mmc_request *mrq) -{ - struct mmc_command *cmd; - struct mmc_context_info *context_info = &host->context_info; - enum mmc_blk_status status; - - while (1) { - wait_event_interruptible(context_info->wait, - (context_info->is_done_rcv || - context_info->is_new_req)); - - if (context_info->is_done_rcv) { - context_info->is_done_rcv = false; - cmd = mrq->cmd; - - if (!cmd->error || !cmd->retries || - mmc_card_removed(host->card)) { - status = host->areq->err_check(host->card, - host->areq); - break; /* return status */ - } else { - mmc_retune_recheck(host); - pr_info("%s: req failed (CMD%u): %d, retrying...\n", - mmc_hostname(host), - cmd->opcode, cmd->error); - cmd->retries--; - cmd->error = 0; - __mmc_start_request(host, mrq); - continue; /* wait for done/new event again */ - } - } - - return MMC_BLK_NEW_REQUEST; - } - mmc_retune_release(host); - return status; -} - void mmc_wait_for_req_done(struct mmc_host *host, struct mmc_request *mrq) { struct mmc_command *cmd; @@ -639,14 +589,44 @@ static void mmc_post_req(struct mmc_host *host, struct mmc_request *mrq, */ static enum mmc_blk_status mmc_finalize_areq(struct mmc_host *host) { + struct mmc_context_info *context_info = &host->context_info; enum mmc_blk_status status; if (!host->areq) return MMC_BLK_SUCCESS; - status = mmc_wait_for_data_req_done(host, host->areq->mrq); - if (status == MMC_BLK_NEW_REQUEST) - return status; + while (1) { + wait_event_interruptible(context_info->wait, + (context_info->is_done_rcv || + context_info->is_new_req)); + + if (context_info->is_done_rcv) { + struct mmc_command *cmd; + + context_info->is_done_rcv = false; + cmd = host->areq->mrq->cmd; + + if (!cmd->error || !cmd->retries || + mmc_card_removed(host->card)) { + status = host->areq->err_check(host->card, + host->areq); + break; /* return status */ + } else { + mmc_retune_recheck(host); + pr_info("%s: req failed (CMD%u): %d, retrying...\n", + mmc_hostname(host), + cmd->opcode, cmd->error); + cmd->retries--; + cmd->error = 0; + __mmc_start_request(host, host->areq->mrq); + continue; /* wait for done/new event again */ + } + } + + return MMC_BLK_NEW_REQUEST; + } + + mmc_retune_release(host); /* * Check BKOPS urgency for each R1 response