public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
From: Namjae Jeon <linkinjeon@gmail.com>
To: linux-mmc@vger.kernel.org
Cc: cjb@laptop.org, linus.walleij@linaro.org,
	linux-kernel@vger.kernel.org, Namjae Jeon <linkinjeon@gmail.com>
Subject: [PATCH] mmc: Use switch() instead of if/else if in mmc_blk_issue_rq.
Date: Sat, 20 Aug 2011 23:50:39 +0900	[thread overview]
Message-ID: <1313851839-32483-1-git-send-email-linkinjeon@gmail.com> (raw)

This uses a switch statement instead of if/else if statements.
It will make to improve clarity and scalability, and offer faster execution through compiler optimization than if/else if statements.

Signed-off-by: Namjae Jeon <linkinjeon@gmail.com>
---
 drivers/mmc/card/block.c |   38 +++++++++++++++++++++++---------------
 1 files changed, 23 insertions(+), 15 deletions(-)

diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 1ff5486..fe9dd89 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -1191,23 +1191,31 @@ static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
 		goto out;
 	}
 
-	if (req && req->cmd_flags & REQ_DISCARD) {
-		/* complete ongoing async transfer before issuing discard */
-		if (card->host->areq)
-			mmc_blk_issue_rw_rq(mq, NULL);
-		if (req->cmd_flags & REQ_SECURE)
-			ret = mmc_blk_issue_secdiscard_rq(mq, req);
-		else
+	if (req) {
+		switch(req->cmd_flags) {
+		case REQ_DISCARD:
+			/* complete ongoing async transfer before issuing discard */
+			if (card->host->areq)
+				mmc_blk_issue_rw_rq(mq, NULL);
 			ret = mmc_blk_issue_discard_rq(mq, req);
-	} else if (req && req->cmd_flags & REQ_FLUSH) {
-		/* complete ongoing async transfer before issuing flush */
-		if (card->host->areq)
-			mmc_blk_issue_rw_rq(mq, NULL);
-		ret = mmc_blk_issue_flush(mq, req);
-	} else {
+			break;
+		case REQ_DISCARD | REQ_SECURE:
+			/* complete ongoing async transfer before issuing discard */
+			if (card->host->areq)
+				mmc_blk_issue_rw_rq(mq, NULL);
+			ret = mmc_blk_issue_secdiscard_rq(mq, req);
+			break;
+		case REQ_FLUSH:
+			/* complete ongoing async transfer before issuing discard */
+			if (card->host->areq)
+				mmc_blk_issue_rw_rq(mq, NULL);
+			ret = mmc_blk_issue_flush(mq, req);
+			break;
+		}
+	}		
+	else
 		ret = mmc_blk_issue_rw_rq(mq, req);
-	}
-
+			
 out:
 	if (!req)
 		/* release host only when there are no more requests */
-- 
1.7.4.4


             reply	other threads:[~2011-08-20 14:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-20 14:50 Namjae Jeon [this message]
2011-08-20 15:12 ` [PATCH] mmc: Use switch() instead of if/else if in mmc_blk_issue_rq Chris Ball

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=1313851839-32483-1-git-send-email-linkinjeon@gmail.com \
    --to=linkinjeon@gmail.com \
    --cc=cjb@laptop.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox