* [PATCH v2] mtd: Fix physmap_of to not exit upon unsuccessful partition scan
@ 2008-02-13 11:19 Stefan Roese
2008-02-14 14:14 ` Peter Korsgaard
0 siblings, 1 reply; 3+ messages in thread
From: Stefan Roese @ 2008-02-13 11:19 UTC (permalink / raw)
To: linux-mtd; +Cc: dwmw2
The patch 9a310d21196f38f6ad0ad146057548653e495c09 ("[MTD] Factor out OF
partition support from the NOR driver.") introduced an problem. Now the
physmap_of driver returns with error upon the first unsuccessful
partition scan (parse_mtd_partitions()). This is not wanted, since even
when the RedBoot/cmdlinepart partition scan is unsuccessful, the other
scan's (of_mtd_parse_partitions(), parse_obsolete_partitions()) should be
done nevertheless.
This patch fixes this problem.
Signed-off-by: Stefan Roese <sr@denx.de>
---
drivers/mtd/maps/physmap_of.c | 16 ++++------------
1 files changed, 4 insertions(+), 12 deletions(-)
diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 49acd41..09a78ea 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -224,24 +224,16 @@ static int __devinit of_flash_probe(struct of_device *dev,
/* First look for RedBoot table or partitions on the command
* line, these take precedence over device tree information */
err = parse_mtd_partitions(info->mtd, part_probe_types,
- &info->parts, 0);
- if (err < 0)
- return err;
+ &info->parts, 0);
#ifdef CONFIG_MTD_OF_PARTS
- if (err == 0) {
+ if (err <= 0)
err = of_mtd_parse_partitions(&dev->dev, info->mtd,
- dp, &info->parts);
- if (err < 0)
- return err;
- }
+ dp, &info->parts);
#endif
- if (err == 0) {
+ if (err <= 0)
err = parse_obsolete_partitions(dev, info, dp);
- if (err < 0)
- return err;
- }
if (err > 0)
add_mtd_partitions(info->mtd, info->parts, err);
--
1.5.4.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] mtd: Fix physmap_of to not exit upon unsuccessful partition scan
2008-02-13 11:19 [PATCH v2] mtd: Fix physmap_of to not exit upon unsuccessful partition scan Stefan Roese
@ 2008-02-14 14:14 ` Peter Korsgaard
2008-02-14 15:44 ` Stefan Roese
0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2008-02-14 14:14 UTC (permalink / raw)
To: Stefan Roese; +Cc: dwmw2, linux-mtd
>>>>> "Stefan" == Stefan Roese <sr@denx.de> writes:
Stefan> The patch 9a310d21196f38f6ad0ad146057548653e495c09 ("[MTD]
Stefan> Factor out OF partition support from the NOR driver.")
Stefan> introduced an problem. Now the physmap_of driver returns with
Stefan> error upon the first unsuccessful partition scan
Stefan> (parse_mtd_partitions()). This is not wanted, since even when
Stefan> the RedBoot/cmdlinepart partition scan is unsuccessful, the
Stefan> other scan's (of_mtd_parse_partitions(),
Stefan> parse_obsolete_partitions()) should be done nevertheless.
Doesn't it make more sense to fix the real problem (E.G. cmdlinepart.c
flagging missing partition info as an error) - See the patch I posted
earlier today.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] mtd: Fix physmap_of to not exit upon unsuccessful partition scan
2008-02-14 14:14 ` Peter Korsgaard
@ 2008-02-14 15:44 ` Stefan Roese
0 siblings, 0 replies; 3+ messages in thread
From: Stefan Roese @ 2008-02-14 15:44 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: dwmw2, linux-mtd
On Thursday 14 February 2008, Peter Korsgaard wrote:
> >>>>> "Stefan" == Stefan Roese <sr@denx.de> writes:
>
> Stefan> The patch 9a310d21196f38f6ad0ad146057548653e495c09 ("[MTD]
> Stefan> Factor out OF partition support from the NOR driver.")
> Stefan> introduced an problem. Now the physmap_of driver returns with
> Stefan> error upon the first unsuccessful partition scan
> Stefan> (parse_mtd_partitions()). This is not wanted, since even when
> Stefan> the RedBoot/cmdlinepart partition scan is unsuccessful, the
> Stefan> other scan's (of_mtd_parse_partitions(),
> Stefan> parse_obsolete_partitions()) should be done nevertheless.
>
> Doesn't it make more sense to fix the real problem (E.G. cmdlinepart.c
> flagging missing partition info as an error) - See the patch I posted
> earlier today.
Yes, this is probably even better. I just tested it successfully on my board.
Do you plan to post a "real patch" with Signed-off-by? You can add my Acked-by
too then.
BTW: I would really like to see one of the solutions go into 2.6.25 since it's
really a bug fix.
Thanks.
Best regards,
Stefan
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-02-14 15:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-13 11:19 [PATCH v2] mtd: Fix physmap_of to not exit upon unsuccessful partition scan Stefan Roese
2008-02-14 14:14 ` Peter Korsgaard
2008-02-14 15:44 ` Stefan Roese
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox