[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1307077367-6277-1-git-send-email-eric.miao@linaro.org>
Date: Fri, 3 Jun 2011 13:02:47 +0800
From: Eric Miao <eric.miao@...aro.org>
To: "linux-kernel" <linux-kernel@...r.kernel.org>
Cc: Eric Miao <eric.miao@...aro.org>
Subject: [PATCH] brd: make brd_make_request() return error code
brd_make_request() always returns 0, which doesn't make much sense.
Signed-off-by: Eric Miao <eric.miao@...aro.org>
---
drivers/block/brd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/block/brd.c b/drivers/block/brd.c
index dba1c32..a9587ee 100644
--- a/drivers/block/brd.c
+++ b/drivers/block/brd.c
@@ -360,7 +360,7 @@ static int brd_make_request(struct request_queue *q, struct bio *bio)
out:
bio_endio(bio, err);
- return 0;
+ return err;
}
#ifdef CONFIG_BLK_DEV_XIP
--
1.7.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists