LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 7/9] mtd: Fix number of free oob spaces in onenand driver
@ 2007-03-02 15:54 Richard Purdie
2007-03-05 0:40 ` Kyungmin Park
0 siblings, 1 reply; 2+ messages in thread
From: Richard Purdie @ 2007-03-02 15:54 UTC (permalink / raw)
To: Nick Piggin, Hugh Dickins, kernel list, linux-mtd, dwmw2
Correct the number of free OOB data positions in the onenand
driver.
Signed-off-by: Richard Purdie <rpurdie@openedhand.com>
---
drivers/mtd/onenand/onenand_base.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: linux/drivers/mtd/onenand/onenand_base.c
===================================================================
--- linux.orig/drivers/mtd/onenand/onenand_base.c 2007-03-02 15:02:31.000000000 +0000
+++ linux/drivers/mtd/onenand/onenand_base.c 2007-03-02 15:37:05.000000000 +0000
@@ -33,8 +33,8 @@ static struct nand_ecclayout onenand_oob
56, 57, 58, 59, 60,
},
.oobfree = {
- {2, 3}, {14, 2}, {18, 3}, {30, 2},
- {34, 3}, {46, 2}, {50, 3}, {62, 2}
+ {2, 6}, {14, 4}, {18, 6}, {30, 4},
+ {34, 6}, {46, 4}, {50, 6}, {62, 2}
}
};
@@ -47,7 +47,7 @@ static struct nand_ecclayout onenand_oob
8, 9, 10, 11, 12,
24, 25, 26, 27, 28,
},
- .oobfree = { {2, 3}, {14, 2}, {18, 3}, {30, 2} }
+ .oobfree = { {2, 6}, {14, 4}, {18, 6}, {30, 2} }
};
static const unsigned char ffchars[] = {
^ permalink raw reply [flat|nested] 2+ messages in thread
* RE: [PATCH 7/9] mtd: Fix number of free oob spaces in onenand driver
2007-03-02 15:54 [PATCH 7/9] mtd: Fix number of free oob spaces in onenand driver Richard Purdie
@ 2007-03-05 0:40 ` Kyungmin Park
0 siblings, 0 replies; 2+ messages in thread
From: Kyungmin Park @ 2007-03-05 0:40 UTC (permalink / raw)
To: 'Richard Purdie', 'Nick Piggin',
'Hugh Dickins', 'kernel list',
linux-mtd, dwmw2
Hello Richard Purdie,
NAK, Even though we can use it. it's out of Spec. It's reason I don't add
it.
In your swap patch, swap device only uses 4 bytes. so it's enough in
current driver. so we don't need to patch it.
+struct swpdev_oobdata {
+ u16 magic;
+ u16 type;
+} __attribute__((packed));
+
+#define SWPDEV_OOBSIZE sizeof(struct swpdev_oobdata)
+
+ struct mtd_oob_ops ops;
+
+ ops.len = SWPDEV_OOBSIZE;
+ ops.ooblen = SWPDEV_OOBSIZE;
+ ops.oobbuf = buf;
+ ops.ooboffs = swpdev->fsdata_pos;
+ ops.datbuf = NULL;
+ ops.mode = MTD_OOB_PLACE;
I think this patch is only used at YAFFS case. it uses 28 bytes at spare.
But current spare areas are 20 bytes (2KB page).
Thank you,
Kyungmin Park
>
> ---
> drivers/mtd/onenand/onenand_base.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> Index: linux/drivers/mtd/onenand/onenand_base.c
> ===================================================================
> --- linux.orig/drivers/mtd/onenand/onenand_base.c
> 2007-03-02 15:02:31.000000000 +0000
> +++ linux/drivers/mtd/onenand/onenand_base.c 2007-03-02
> 15:37:05.000000000 +0000
> @@ -33,8 +33,8 @@ static struct nand_ecclayout onenand_oob
> 56, 57, 58, 59, 60,
> },
> .oobfree = {
> - {2, 3}, {14, 2}, {18, 3}, {30, 2},
> - {34, 3}, {46, 2}, {50, 3}, {62, 2}
> + {2, 6}, {14, 4}, {18, 6}, {30, 4},
> + {34, 6}, {46, 4}, {50, 6}, {62, 2}
> }
> };
>
> @@ -47,7 +47,7 @@ static struct nand_ecclayout onenand_oob
> 8, 9, 10, 11, 12,
> 24, 25, 26, 27, 28,
> },
> - .oobfree = { {2, 3}, {14, 2}, {18, 3}, {30, 2} }
> + .oobfree = { {2, 6}, {14, 4}, {18, 6}, {30, 2} }
> };
>
> static const unsigned char ffchars[] = {
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-03-05 1:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-02 15:54 [PATCH 7/9] mtd: Fix number of free oob spaces in onenand driver Richard Purdie
2007-03-05 0:40 ` Kyungmin Park
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).