* md/raid1:Remove unnecessary judgement.
@ 2012-03-31 2:05 majianpeng
2012-04-02 1:25 ` NeilBrown
0 siblings, 1 reply; 2+ messages in thread
From: majianpeng @ 2012-03-31 2:05 UTC (permalink / raw)
To: Neil Brown; +Cc: linux-raid
From 033a0330eb210750ec09202ed95696b54d9afeba Mon Sep 17 00:00:00 2001
From: majianpeng <majianpeng@gmail.com>
Date: Sat, 31 Mar 2012 09:57:42 +0800
Subject: [PATCH] md/raid1:Remove unnecessary judgement.
If success == 1 then break the do{}while,so did not judge !success.
Signed-off-by: majianpeng <majianpeng@gmail.com>
---
drivers/md/raid1.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
index 4a40a20..649941b 100644
--- a/drivers/md/raid1.c
+++ b/drivers/md/raid1.c
@@ -1624,7 +1624,7 @@ static int fix_sync_read_error(struct r1bio *r1_bio)
d++;
if (d == conf->raid_disks * 2)
d = 0;
- } while (!success && d != r1_bio->read_disk);
+ } while (d != r1_bio->read_disk);
if (!success) {
char b[BDEVNAME_SIZE];
--
1.7.5.4
--------------
majianpeng
2012-03-31
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: md/raid1:Remove unnecessary judgement.
2012-03-31 2:05 md/raid1:Remove unnecessary judgement majianpeng
@ 2012-04-02 1:25 ` NeilBrown
0 siblings, 0 replies; 2+ messages in thread
From: NeilBrown @ 2012-04-02 1:25 UTC (permalink / raw)
To: majianpeng; +Cc: linux-raid
[-- Attachment #1: Type: text/plain, Size: 1235 bytes --]
On Sat, 31 Mar 2012 10:05:23 +0800 "majianpeng" <majianpeng@gmail.com> wrote:
> >From 033a0330eb210750ec09202ed95696b54d9afeba Mon Sep 17 00:00:00 2001
> From: majianpeng <majianpeng@gmail.com>
> Date: Sat, 31 Mar 2012 09:57:42 +0800
> Subject: [PATCH] md/raid1:Remove unnecessary judgement.
> If success == 1 then break the do{}while,so did not judge !success.
>
>
> Signed-off-by: majianpeng <majianpeng@gmail.com>
> ---
> drivers/md/raid1.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
> index 4a40a20..649941b 100644
> --- a/drivers/md/raid1.c
> +++ b/drivers/md/raid1.c
> @@ -1624,7 +1624,7 @@ static int fix_sync_read_error(struct r1bio *r1_bio)
> d++;
> if (d == conf->raid_disks * 2)
> d = 0;
> - } while (!success && d != r1_bio->read_disk);
> + } while (d != r1_bio->read_disk);
>
> if (!success) {
> char b[BDEVNAME_SIZE];
This is another micro-optimisation that doesn't really buy us anything.
I actually like the fact that the 'while' condition makes it clear that lot
loop doesn't continue after we reach 'success'. So I think I'll leave it the
way it is.
Thanks,
NeilBrown
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-02 1:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-31 2:05 md/raid1:Remove unnecessary judgement majianpeng
2012-04-02 1:25 ` NeilBrown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).