Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1197163 > unrolled thread
| Started by | Andrea Scian <rnd4@dave-tech.it> |
|---|---|
| First post | 2015-07-31 18:20 +0200 |
| Last post | 2015-08-04 09:30 +0200 |
| Articles | 8 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Andrea Scian <rnd4@dave-tech.it> - 2015-07-31 18:20 +0200
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Boris Brezillon <boris.brezillon@free-electrons.com> - 2015-07-31 18:30 +0200
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Andrea Scian <rnd4@dave-tech.it> - 2015-08-03 13:20 +0200
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Boris Brezillon <boris.brezillon@free-electrons.com> - 2015-08-03 14:50 +0200
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Andrea Scian <rnd4@dave-tech.it> - 2015-08-03 15:40 +0200
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Richard Weinberger <richard@nod.at> - 2015-08-03 21:40 +0200
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Andrea Scian <rnd4@dave-tech.it> - 2015-08-04 09:10 +0200
Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions Richard Weinberger <richard@nod.at> - 2015-08-04 09:30 +0200
| From | Andrea Scian <rnd4@dave-tech.it> |
|---|---|
| Date | 2015-07-31 18:20 +0200 |
| Subject | Re: [RFC PATCH 2/2] mtd: nand: use nand_check_erased_ecc_chunk in default ECC read functions |
| Message-ID | <pSlcm-2vJ-11@gated-at.bofh.it> |
Il 31/07/2015 16:10, Boris Brezillon ha scritto: > On Fri, 31 Jul 2015 15:40:13 +0200 > Andrea Scian <rnd4@dave-tech.it> wrote: > >> >> Boris, >> >> Il 31/07/2015 12:32, Boris Brezillon ha scritto: >>> Hi Andrea, >>> >>> Adding Han in Cc. >>> >>> On Fri, 31 Jul 2015 12:07:21 +0200 >>> Andrea Scian <rnd4@dave-tech.it> wrote: >>> >>>> >>>> Dear Boris, >>>> >>>> >>>> Il 30/07/2015 19:34, Boris Brezillon ha scritto: >>>>> The default NAND read functions are relying on an underlying controller >>>>> to correct bitflips, but some of those controller cannot properly fix >>>>> bitflips in erased pages. >>>>> In case of ECC failures, check if the page of subpage is empty before >>>>> reporting an ECC failure. >>>> >>>> I'm still wondering if chip->ecc.strength is the right threshold. >>>> >>>> Did you see my comments here [1]? WDYT? >>> >>> Yes I've read it, and decided to go for ecc->strength as a first >>> step (I'm more interested in discussing the approach than the threshold >>> value right now ;-)). >> >> I perfectly understand, that's the reason why I ask if you want to move >> to another thread ;-) >> >>> Anyway, as you pointed out in the thread, writing data on an erased >>> page already containing some bitflips might generate even more >>> bitflips, so using a different threshold for the erased page check >>> makes sense. This threshold should definitely be correlated to the ECC >>> strength, but how, that's the question. >>> >>> How about taking a rather conservative value like 10% of the specified >>> ECC strength, and see how it goes. >> >> Yes, I think that there's no real way to get the right value, other than >> feedbacks from on-field testing with various devices. >> >> I'm also thinking about changing how a NAND page is written on the >> device, now that we know that even erased page may have (too many!) >> bitflips if they has not been so-freshly erased. >> >> Read on NAND device is lot's faster that write, so maybe we can: >> >> a) read the page before write it, check for bitflips on erased area and >> write it only if it fit our threshold >> >> b) read the page after write it and check if the bitflips are lower that >> a give value >> >> In this way: >> - we can use ecc_strength as read threshold, because it fits all the >> other NAND read >> >> - we can use "something a bit lower than" mtd->bitflip_threshold on >> read-before-write or read-after-write. If we don't do so the block will >> be scrubbed next time we read it again (if we are lucky.. if we are >> unlucky the block will have bitflip > ecc_strength!): IOW we did a write >> that will trigger another erase/write cycle. >> >> Am I misunderstanding something? > > Nope, but this implies doing an extra read after each write :-/ > Let's wait what the others says about this, but I would like to put some numbers in it. My micron MLC device says - read page max 75 uS - write page typ 1300uS, max 2600uS If we implement read-before-write (which is, IMO, the best approach), in the worst overhead we have is 1375uS vs 1300uS, which is ~6%. Please note that, if you read a page that "is not suitable" for write, you avoid the write time, schedule it for scrubbing, and use another free page. Probably I'm a bit optimistic because we also need to take in account other latencies (DMA setup, ECC engine, buffer copies and so on) but it's a starting point ;-) KR, -- Andrea SCIAN DAVE Embedded Systems -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Boris Brezillon <boris.brezillon@free-electrons.com> |
|---|---|
| Date | 2015-07-31 18:30 +0200 |
| Message-ID | <pSlm2-2GV-11@gated-at.bofh.it> |
| In reply to | #1197163 |
On Fri, 31 Jul 2015 18:19:30 +0200 Andrea Scian <rnd4@dave-tech.it> wrote: > Il 31/07/2015 16:10, Boris Brezillon ha scritto: > > On Fri, 31 Jul 2015 15:40:13 +0200 > > Andrea Scian <rnd4@dave-tech.it> wrote: > > > >> > >> Boris, > >> > >> Il 31/07/2015 12:32, Boris Brezillon ha scritto: > >>> Hi Andrea, > >>> > >>> Adding Han in Cc. > >>> > >>> On Fri, 31 Jul 2015 12:07:21 +0200 > >>> Andrea Scian <rnd4@dave-tech.it> wrote: > >>> > >>>> > >>>> Dear Boris, > >>>> > >>>> > >>>> Il 30/07/2015 19:34, Boris Brezillon ha scritto: > >>>>> The default NAND read functions are relying on an underlying controller > >>>>> to correct bitflips, but some of those controller cannot properly fix > >>>>> bitflips in erased pages. > >>>>> In case of ECC failures, check if the page of subpage is empty before > >>>>> reporting an ECC failure. > >>>> > >>>> I'm still wondering if chip->ecc.strength is the right threshold. > >>>> > >>>> Did you see my comments here [1]? WDYT? > >>> > >>> Yes I've read it, and decided to go for ecc->strength as a first > >>> step (I'm more interested in discussing the approach than the threshold > >>> value right now ;-)). > >> > >> I perfectly understand, that's the reason why I ask if you want to move > >> to another thread ;-) > >> > >>> Anyway, as you pointed out in the thread, writing data on an erased > >>> page already containing some bitflips might generate even more > >>> bitflips, so using a different threshold for the erased page check > >>> makes sense. This threshold should definitely be correlated to the ECC > >>> strength, but how, that's the question. > >>> > >>> How about taking a rather conservative value like 10% of the specified > >>> ECC strength, and see how it goes. > >> > >> Yes, I think that there's no real way to get the right value, other than > >> feedbacks from on-field testing with various devices. > >> > >> I'm also thinking about changing how a NAND page is written on the > >> device, now that we know that even erased page may have (too many!) > >> bitflips if they has not been so-freshly erased. > >> > >> Read on NAND device is lot's faster that write, so maybe we can: > >> > >> a) read the page before write it, check for bitflips on erased area and > >> write it only if it fit our threshold > >> > >> b) read the page after write it and check if the bitflips are lower that > >> a give value > >> > >> In this way: > >> - we can use ecc_strength as read threshold, because it fits all the > >> other NAND read > >> > >> - we can use "something a bit lower than" mtd->bitflip_threshold on > >> read-before-write or read-after-write. If we don't do so the block will > >> be scrubbed next time we read it again (if we are lucky.. if we are > >> unlucky the block will have bitflip > ecc_strength!): IOW we did a write > >> that will trigger another erase/write cycle. > >> > >> Am I misunderstanding something? > > > > Nope, but this implies doing an extra read after each write :-/ > > > > Let's wait what the others says about this, but I would like to put some > numbers in it. Sure. > > My micron MLC device says > - read page max 75 uS > - write page typ 1300uS, max 2600uS > > If we implement read-before-write (which is, IMO, the best approach), in > the worst overhead we have is 1375uS vs 1300uS, which is ~6%. > Please note that, if you read a page that "is not suitable" for write, > you avoid the write time, schedule it for scrubbing, and use another > free page. Indeed, that's not such a big overhead. > > Probably I'm a bit optimistic because we also need to take in account > other latencies (DMA setup, ECC engine, buffer copies and so on) but > it's a starting point ;-) Yep, if you test it, could you provide some speed test results (with and without this solution). And I wonder if we shouldn't do it the other way around, write then read-back and check the content. Of course this implies doing the extra write even when the erased page contains too many bitflips, but at least your sure that the data you put in the page were correct at that time. -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Andrea Scian <rnd4@dave-tech.it> |
|---|---|
| Date | 2015-08-03 13:20 +0200 |
| Message-ID | <pTlWG-1pW-13@gated-at.bofh.it> |
| In reply to | #1197167 |
Dear Boris, Il 31/07/2015 18:27, Boris Brezillon ha scritto: > On Fri, 31 Jul 2015 18:19:30 +0200 > Andrea Scian <rnd4@dave-tech.it> wrote: > >> Il 31/07/2015 16:10, Boris Brezillon ha scritto: >>> On Fri, 31 Jul 2015 15:40:13 +0200 >>> Andrea Scian <rnd4@dave-tech.it> wrote: >>> >>>> Boris, >>>> >>>> Il 31/07/2015 12:32, Boris Brezillon ha scritto: >>>>> Hi Andrea, >>>>> >>>>> Adding Han in Cc. >>>>> >>>>> On Fri, 31 Jul 2015 12:07:21 +0200 >>>>> Andrea Scian <rnd4@dave-tech.it> wrote: >>>>> >>>>>> Dear Boris, >>>>>> >>>>>> >>>>>> Il 30/07/2015 19:34, Boris Brezillon ha scritto: >>>>>>> The default NAND read functions are relying on an underlying controller >>>>>>> to correct bitflips, but some of those controller cannot properly fix >>>>>>> bitflips in erased pages. >>>>>>> In case of ECC failures, check if the page of subpage is empty before >>>>>>> reporting an ECC failure. >>>>>> I'm still wondering if chip->ecc.strength is the right threshold. >>>>>> >>>>>> Did you see my comments here [1]? WDYT? >>>>> Yes I've read it, and decided to go for ecc->strength as a first >>>>> step (I'm more interested in discussing the approach than the threshold >>>>> value right now ;-)). >>>> I perfectly understand, that's the reason why I ask if you want to move >>>> to another thread ;-) >>>> >>>>> Anyway, as you pointed out in the thread, writing data on an erased >>>>> page already containing some bitflips might generate even more >>>>> bitflips, so using a different threshold for the erased page check >>>>> makes sense. This threshold should definitely be correlated to the ECC >>>>> strength, but how, that's the question. >>>>> >>>>> How about taking a rather conservative value like 10% of the specified >>>>> ECC strength, and see how it goes. >>>> Yes, I think that there's no real way to get the right value, other than >>>> feedbacks from on-field testing with various devices. >>>> >>>> I'm also thinking about changing how a NAND page is written on the >>>> device, now that we know that even erased page may have (too many!) >>>> bitflips if they has not been so-freshly erased. >>>> >>>> Read on NAND device is lot's faster that write, so maybe we can: >>>> >>>> a) read the page before write it, check for bitflips on erased area and >>>> write it only if it fit our threshold >>>> >>>> b) read the page after write it and check if the bitflips are lower that >>>> a give value >>>> >>>> In this way: >>>> - we can use ecc_strength as read threshold, because it fits all the >>>> other NAND read >>>> >>>> - we can use "something a bit lower than" mtd->bitflip_threshold on >>>> read-before-write or read-after-write. If we don't do so the block will >>>> be scrubbed next time we read it again (if we are lucky.. if we are >>>> unlucky the block will have bitflip > ecc_strength!): IOW we did a write >>>> that will trigger another erase/write cycle. >>>> >>>> Am I misunderstanding something? >>> Nope, but this implies doing an extra read after each write :-/ >>> >> Let's wait what the others says about this, but I would like to put some >> numbers in it. > Sure. > >> My micron MLC device says >> - read page max 75 uS >> - write page typ 1300uS, max 2600uS >> >> If we implement read-before-write (which is, IMO, the best approach), in >> the worst overhead we have is 1375uS vs 1300uS, which is ~6%. >> Please note that, if you read a page that "is not suitable" for write, >> you avoid the write time, schedule it for scrubbing, and use another >> free page. > Indeed, that's not such a big overhead. > >> Probably I'm a bit optimistic because we also need to take in account >> other latencies (DMA setup, ECC engine, buffer copies and so on) but >> it's a starting point ;-) > Yep, if you test it, could you provide some speed test results (with > and without this solution). I think I can find some time to do some performance tests on real hardware. Can you please help me in finding: - which benchmark to use (currently I'm using bonnie++ on UBIFS, maybe I can you just mtd_speedtest) - where to implement those read For the second point I think we can implement it a UBI or MTD level. I think the former will allow us to easily schedule scrubbing and choose another block to issue the write to. However I don't really know how to implement it (I don't really know so much about the UBI code). The latter, at least for me, is easier to implement: I think I can find the place to add the page read on my own, anyway any clue is welcome ;-) But I think it will be harder (or impossible) to choose where to issue the write, unless UBI already do so when it saw an MTD write failure. > And I wonder if we shouldn't do it the other way around, write then > read-back and check the content. > Of course this implies doing the extra write even when the erased page > contains too many bitflips, but at least your sure that the data you > put in the page were correct at that time. > You're right, I think this is something that once we can find inside the MTD code (something like "check NAND written page" kconfig option) but I cannot find this option anymore on latest kernel. You're approach will also have another advantage, currently nearly all platform will use software implementation for ECC check on erased blocks, while nearly all of them has hardware ECC once programmed. Using hardware ECC will remove CPU load and, maybe, be faster than call nand_check_erased_ecc_chunk() I also think that the situation of having failure on write is very unlikely, unless you have a very "used" NAND device or you're not using Richard's bitrot check. So we'll have a performance impact (issuing another write) only when it's really needed. Kind Regards, -- Andrea SCIAN DAVE Embedded Systems -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Boris Brezillon <boris.brezillon@free-electrons.com> |
|---|---|
| Date | 2015-08-03 14:50 +0200 |
| Message-ID | <pTnlM-3kJ-37@gated-at.bofh.it> |
| In reply to | #1198754 |
Adding Artem and Richard in the loop. On Mon, 3 Aug 2015 13:16:02 +0200 Andrea Scian <rnd4@dave-tech.it> wrote: > > Dear Boris, > > Il 31/07/2015 18:27, Boris Brezillon ha scritto: > > On Fri, 31 Jul 2015 18:19:30 +0200 > > Andrea Scian <rnd4@dave-tech.it> wrote: > > > >> Il 31/07/2015 16:10, Boris Brezillon ha scritto: > >>> On Fri, 31 Jul 2015 15:40:13 +0200 > >>> Andrea Scian <rnd4@dave-tech.it> wrote: > >>> > >>>> Boris, > >>>> > >>>> Il 31/07/2015 12:32, Boris Brezillon ha scritto: > >>>>> Hi Andrea, > >>>>> > >>>>> Adding Han in Cc. > >>>>> > >>>>> On Fri, 31 Jul 2015 12:07:21 +0200 > >>>>> Andrea Scian <rnd4@dave-tech.it> wrote: > >>>>> > >>>>>> Dear Boris, > >>>>>> > >>>>>> > >>>>>> Il 30/07/2015 19:34, Boris Brezillon ha scritto: > >>>>>>> The default NAND read functions are relying on an underlying controller > >>>>>>> to correct bitflips, but some of those controller cannot properly fix > >>>>>>> bitflips in erased pages. > >>>>>>> In case of ECC failures, check if the page of subpage is empty before > >>>>>>> reporting an ECC failure. > >>>>>> I'm still wondering if chip->ecc.strength is the right threshold. > >>>>>> > >>>>>> Did you see my comments here [1]? WDYT? > >>>>> Yes I've read it, and decided to go for ecc->strength as a first > >>>>> step (I'm more interested in discussing the approach than the threshold > >>>>> value right now ;-)). > >>>> I perfectly understand, that's the reason why I ask if you want to move > >>>> to another thread ;-) > >>>> > >>>>> Anyway, as you pointed out in the thread, writing data on an erased > >>>>> page already containing some bitflips might generate even more > >>>>> bitflips, so using a different threshold for the erased page check > >>>>> makes sense. This threshold should definitely be correlated to the ECC > >>>>> strength, but how, that's the question. > >>>>> > >>>>> How about taking a rather conservative value like 10% of the specified > >>>>> ECC strength, and see how it goes. > >>>> Yes, I think that there's no real way to get the right value, other than > >>>> feedbacks from on-field testing with various devices. > >>>> > >>>> I'm also thinking about changing how a NAND page is written on the > >>>> device, now that we know that even erased page may have (too many!) > >>>> bitflips if they has not been so-freshly erased. > >>>> > >>>> Read on NAND device is lot's faster that write, so maybe we can: > >>>> > >>>> a) read the page before write it, check for bitflips on erased area and > >>>> write it only if it fit our threshold > >>>> > >>>> b) read the page after write it and check if the bitflips are lower that > >>>> a give value > >>>> > >>>> In this way: > >>>> - we can use ecc_strength as read threshold, because it fits all the > >>>> other NAND read > >>>> > >>>> - we can use "something a bit lower than" mtd->bitflip_threshold on > >>>> read-before-write or read-after-write. If we don't do so the block will > >>>> be scrubbed next time we read it again (if we are lucky.. if we are > >>>> unlucky the block will have bitflip > ecc_strength!): IOW we did a write > >>>> that will trigger another erase/write cycle. > >>>> > >>>> Am I misunderstanding something? > >>> Nope, but this implies doing an extra read after each write :-/ > >>> > >> Let's wait what the others says about this, but I would like to put some > >> numbers in it. > > Sure. > > > >> My micron MLC device says > >> - read page max 75 uS > >> - write page typ 1300uS, max 2600uS > >> > >> If we implement read-before-write (which is, IMO, the best approach), in > >> the worst overhead we have is 1375uS vs 1300uS, which is ~6%. > >> Please note that, if you read a page that "is not suitable" for write, > >> you avoid the write time, schedule it for scrubbing, and use another > >> free page. > > Indeed, that's not such a big overhead. > > > >> Probably I'm a bit optimistic because we also need to take in account > >> other latencies (DMA setup, ECC engine, buffer copies and so on) but > >> it's a starting point ;-) > > Yep, if you test it, could you provide some speed test results (with > > and without this solution). > > I think I can find some time to do some performance tests on real hardware. > Can you please help me in finding: > - which benchmark to use (currently I'm using bonnie++ on UBIFS, maybe I > can you just mtd_speedtest) > - where to implement those read I think the test should be done at the UBI layer if we want to check the real impact of the additional read sequence, but given the answer I gave to your other question I'm not sure this is relevant anymore ;-). > > For the second point I think we can implement it a UBI or MTD level. > I think the former will allow us to easily schedule scrubbing and choose > another block to issue the write to. However I don't really know how to > implement it (I don't really know so much about the UBI code). > > The latter, at least for me, is easier to implement: I think I can find > the place to add the page read on my own, anyway any clue is welcome ;-) > But I think it will be harder (or impossible) to choose where to issue > the write, unless UBI already do so when it saw an MTD write failure. > > > And I wonder if we shouldn't do it the other way around, write then > > read-back and check the content. > > Of course this implies doing the extra write even when the erased page > > contains too many bitflips, but at least your sure that the data you > > put in the page were correct at that time. > > > > You're right, I think this is something that once we can find inside the > MTD code (something like "check NAND written page" kconfig option) but I > cannot find this option anymore on latest kernel. > > You're approach will also have another advantage, currently nearly all > platform will use software implementation for ECC check on erased > blocks, while nearly all of them has hardware ECC once programmed. Using > hardware ECC will remove CPU load and, maybe, be faster than call > nand_check_erased_ecc_chunk() > I also think that the situation of having failure on write is very > unlikely, unless you have a very "used" NAND device or you're not using > Richard's bitrot check. So we'll have a performance impact (issuing > another write) only when it's really needed. I didn't check before suggesting that, but it seems that the UBI layer is already doing this check for you [1], so if you're using UBI/UBIFS you shouldn't worry about bitflips in erased pages: if there is any, and their presence impact the write result, they should be detected. AFAICT, the only thing that is not checked is whether the number of bitflips after a write exceed the bitflips threshold or not, and I guess this can be added. Best Regards, Boris [1]http://lxr.free-electrons.com/source/drivers/mtd/ubi/io.c#L294 -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Andrea Scian <rnd4@dave-tech.it> |
|---|---|
| Date | 2015-08-03 15:40 +0200 |
| Message-ID | <pTo89-4v1-3@gated-at.bofh.it> |
| In reply to | #1198830 |
Il 03/08/2015 14:42, Boris Brezillon ha scritto: > Adding Artem and Richard in the loop. thanks ;-) > > On Mon, 3 Aug 2015 13:16:02 +0200 > Andrea Scian <rnd4@dave-tech.it> wrote: > >> >> Dear Boris, >> >> Il 31/07/2015 18:27, Boris Brezillon ha scritto: >>> On Fri, 31 Jul 2015 18:19:30 +0200 >>> Andrea Scian <rnd4@dave-tech.it> wrote: >>> >>>> Il 31/07/2015 16:10, Boris Brezillon ha scritto: >>>>> On Fri, 31 Jul 2015 15:40:13 +0200 >>>>> Andrea Scian <rnd4@dave-tech.it> wrote: >>>>> >>>>>> Boris, >>>>>> >>>>>> Il 31/07/2015 12:32, Boris Brezillon ha scritto: >>>>>>> Hi Andrea, >>>>>>> >>>>>>> Adding Han in Cc. >>>>>>> >>>>>>> On Fri, 31 Jul 2015 12:07:21 +0200 >>>>>>> Andrea Scian <rnd4@dave-tech.it> wrote: >>>>>>> >>>>>>>> Dear Boris, >>>>>>>> >>>>>>>> >>>>>>>> Il 30/07/2015 19:34, Boris Brezillon ha scritto: >>>>>>>>> The default NAND read functions are relying on an underlying controller >>>>>>>>> to correct bitflips, but some of those controller cannot properly fix >>>>>>>>> bitflips in erased pages. >>>>>>>>> In case of ECC failures, check if the page of subpage is empty before >>>>>>>>> reporting an ECC failure. >>>>>>>> I'm still wondering if chip->ecc.strength is the right threshold. >>>>>>>> >>>>>>>> Did you see my comments here [1]? WDYT? >>>>>>> Yes I've read it, and decided to go for ecc->strength as a first >>>>>>> step (I'm more interested in discussing the approach than the threshold >>>>>>> value right now ;-)). >>>>>> I perfectly understand, that's the reason why I ask if you want to move >>>>>> to another thread ;-) >>>>>> >>>>>>> Anyway, as you pointed out in the thread, writing data on an erased >>>>>>> page already containing some bitflips might generate even more >>>>>>> bitflips, so using a different threshold for the erased page check >>>>>>> makes sense. This threshold should definitely be correlated to the ECC >>>>>>> strength, but how, that's the question. >>>>>>> >>>>>>> How about taking a rather conservative value like 10% of the specified >>>>>>> ECC strength, and see how it goes. >>>>>> Yes, I think that there's no real way to get the right value, other than >>>>>> feedbacks from on-field testing with various devices. >>>>>> >>>>>> I'm also thinking about changing how a NAND page is written on the >>>>>> device, now that we know that even erased page may have (too many!) >>>>>> bitflips if they has not been so-freshly erased. >>>>>> >>>>>> Read on NAND device is lot's faster that write, so maybe we can: >>>>>> >>>>>> a) read the page before write it, check for bitflips on erased area and >>>>>> write it only if it fit our threshold >>>>>> >>>>>> b) read the page after write it and check if the bitflips are lower that >>>>>> a give value >>>>>> >>>>>> In this way: >>>>>> - we can use ecc_strength as read threshold, because it fits all the >>>>>> other NAND read >>>>>> >>>>>> - we can use "something a bit lower than" mtd->bitflip_threshold on >>>>>> read-before-write or read-after-write. If we don't do so the block will >>>>>> be scrubbed next time we read it again (if we are lucky.. if we are >>>>>> unlucky the block will have bitflip > ecc_strength!): IOW we did a write >>>>>> that will trigger another erase/write cycle. >>>>>> >>>>>> Am I misunderstanding something? >>>>> Nope, but this implies doing an extra read after each write :-/ >>>>> >>>> Let's wait what the others says about this, but I would like to put some >>>> numbers in it. >>> Sure. >>> >>>> My micron MLC device says >>>> - read page max 75 uS >>>> - write page typ 1300uS, max 2600uS >>>> >>>> If we implement read-before-write (which is, IMO, the best approach), in >>>> the worst overhead we have is 1375uS vs 1300uS, which is ~6%. >>>> Please note that, if you read a page that "is not suitable" for write, >>>> you avoid the write time, schedule it for scrubbing, and use another >>>> free page. >>> Indeed, that's not such a big overhead. >>> >>>> Probably I'm a bit optimistic because we also need to take in account >>>> other latencies (DMA setup, ECC engine, buffer copies and so on) but >>>> it's a starting point ;-) >>> Yep, if you test it, could you provide some speed test results (with >>> and without this solution). >> >> I think I can find some time to do some performance tests on real hardware. >> Can you please help me in finding: >> - which benchmark to use (currently I'm using bonnie++ on UBIFS, maybe I >> can you just mtd_speedtest) >> - where to implement those read > > I think the test should be done at the UBI layer if we want to check > the real impact of the additional read sequence, but given the answer I > gave to your other question I'm not sure this is relevant anymore ;-). > >> >> For the second point I think we can implement it a UBI or MTD level. >> I think the former will allow us to easily schedule scrubbing and choose >> another block to issue the write to. However I don't really know how to >> implement it (I don't really know so much about the UBI code). >> >> The latter, at least for me, is easier to implement: I think I can find >> the place to add the page read on my own, anyway any clue is welcome ;-) >> But I think it will be harder (or impossible) to choose where to issue >> the write, unless UBI already do so when it saw an MTD write failure. >> >>> And I wonder if we shouldn't do it the other way around, write then >>> read-back and check the content. >>> Of course this implies doing the extra write even when the erased page >>> contains too many bitflips, but at least your sure that the data you >>> put in the page were correct at that time. >>> >> >> You're right, I think this is something that once we can find inside the >> MTD code (something like "check NAND written page" kconfig option) but I >> cannot find this option anymore on latest kernel. >> >> You're approach will also have another advantage, currently nearly all >> platform will use software implementation for ECC check on erased >> blocks, while nearly all of them has hardware ECC once programmed. Using >> hardware ECC will remove CPU load and, maybe, be faster than call >> nand_check_erased_ecc_chunk() >> I also think that the situation of having failure on write is very >> unlikely, unless you have a very "used" NAND device or you're not using >> Richard's bitrot check. So we'll have a performance impact (issuing >> another write) only when it's really needed. > > I didn't check before suggesting that, but it seems that the UBI layer > is already doing this check for you [1], so if you're using UBI/UBIFS > you shouldn't worry about bitflips in erased pages: if there is any, > and their presence impact the write result, they should be detected. > AFAICT, the only thing that is not checked is whether the number of > bitflips after a write exceed the bitflips threshold or not, and I > guess this can be added. IIUC this is a runtime debug check if (!ubi_dbg_chk_io(ubi)) .... And thus is disabled by default. Anyway, this answer my missing "check NAND written page" question above ;-) IIUC (again) /sys/kernel/debug/ubi/ubi0/chk_io enable this and many other runtime check, so it's only partially useful to have a first raw approach to performance impact. And, yes, those functions only check for valid data, not about bitflip counts. Kind Regards, -- Andrea SCIAN DAVE Embedded Systems -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Richard Weinberger <richard@nod.at> |
|---|---|
| Date | 2015-08-03 21:40 +0200 |
| Message-ID | <pTtKx-4bA-7@gated-at.bofh.it> |
| In reply to | #1198853 |
Am 03.08.2015 um 15:39 schrieb Andrea Scian:
>>> I think I can find some time to do some performance tests on real hardware.
>>> Can you please help me in finding:
>>> - which benchmark to use (currently I'm using bonnie++ on UBIFS, maybe I
>>> can you just mtd_speedtest)
>>> - where to implement those read
>>
>> I think the test should be done at the UBI layer if we want to check
>> the real impact of the additional read sequence, but given the answer I
>> gave to your other question I'm not sure this is relevant anymore ;-).
I'm not sure whether introducing a read-before-write check is the best solution.
At least we need hard numbers for slow/old SLC NANDs too.
We has such checks already and got rid of them.
commit 657f28f8811c92724db10d18bbbec70d540147d6
Author: Huang Shijie <shijie8@gmail.com>
Date: Tue Aug 14 22:38:45 2012 -0400
mtd: kill MTD_NAND_VERIFY_WRITE
Although the goal of 657f28f8 was something else.
In general I don't think putting much MTD/ECC logic into UBI is the way to go.
UBI is a layer above MTD and MTD should do as much as possible wrt. ECC.
>>>
>>> For the second point I think we can implement it a UBI or MTD level.
>>> I think the former will allow us to easily schedule scrubbing and choose
>>> another block to issue the write to. However I don't really know how to
>>> implement it (I don't really know so much about the UBI code).
Implementing this is not much work.
I've done such hacks for various customers to hunt down hardware issues.
>> I didn't check before suggesting that, but it seems that the UBI layer
>> is already doing this check for you [1], so if you're using UBI/UBIFS
>> you shouldn't worry about bitflips in erased pages: if there is any,
>> and their presence impact the write result, they should be detected.
>> AFAICT, the only thing that is not checked is whether the number of
>> bitflips after a write exceed the bitflips threshold or not, and I
>> guess this can be added.
>
> IIUC this is a runtime debug check
>
> if (!ubi_dbg_chk_io(ubi))
> ....
>
> And thus is disabled by default.
That's correct.
Thanks,
//richard
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Andrea Scian <rnd4@dave-tech.it> |
|---|---|
| Date | 2015-08-04 09:10 +0200 |
| Message-ID | <pTEwh-3hI-9@gated-at.bofh.it> |
| In reply to | #1199223 |
Richard, Il 03/08/2015 21:32, Richard Weinberger ha scritto: > Am 03.08.2015 um 15:39 schrieb Andrea Scian: >>>> I think I can find some time to do some performance tests on real hardware. >>>> Can you please help me in finding: >>>> - which benchmark to use (currently I'm using bonnie++ on UBIFS, maybe I >>>> can you just mtd_speedtest) >>>> - where to implement those read >>> >>> I think the test should be done at the UBI layer if we want to check >>> the real impact of the additional read sequence, but given the answer I >>> gave to your other question I'm not sure this is relevant anymore ;-). > > I'm not sure whether introducing a read-before-write check is the best solution. > At least we need hard numbers for slow/old SLC NANDs too. We can enable the feature only for MLC, AFAIK it has not been required for old SLC ;-) Anyway, maybe I can do some performance test if you point me to the right userspace tool to use. As I already say I'm using bonnie++ to stress the device, more from a stability than from performance point of view. I'm also used to run mtd_speedtest but this may be useless if we put some code inside the upper layers. > We has such checks already and got rid of them. > commit 657f28f8811c92724db10d18bbbec70d540147d6 > Author: Huang Shijie <shijie8@gmail.com> > Date: Tue Aug 14 22:38:45 2012 -0400 > > mtd: kill MTD_NAND_VERIFY_WRITE > > > Although the goal of 657f28f8 was something else. Understood, thanks for point this out > > In general I don't think putting much MTD/ECC logic into UBI is the way to go. > UBI is a layer above MTD and MTD should do as much as possible wrt. ECC. > >>>> >>>> For the second point I think we can implement it a UBI or MTD level. >>>> I think the former will allow us to easily schedule scrubbing and choose >>>> another block to issue the write to. However I don't really know how to >>>> implement it (I don't really know so much about the UBI code). > > Implementing this is not much work. > I've done such hacks for various customers to hunt down hardware issues. > >>> I didn't check before suggesting that, but it seems that the UBI layer >>> is already doing this check for you [1], so if you're using UBI/UBIFS >>> you shouldn't worry about bitflips in erased pages: if there is any, >>> and their presence impact the write result, they should be detected. >>> AFAICT, the only thing that is not checked is whether the number of >>> bitflips after a write exceed the bitflips threshold or not, and I >>> guess this can be added. >> >> IIUC this is a runtime debug check >> >> if (!ubi_dbg_chk_io(ubi)) >> .... >> >> And thus is disabled by default. > > That's correct. Thanks. In your opinion, enabling chk_io is correct to rough estimate the overhead or does it enable too much checks? TIA, -- Andrea SCIAN DAVE Embedded Systems -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Richard Weinberger <richard@nod.at> |
|---|---|
| Date | 2015-08-04 09:30 +0200 |
| Message-ID | <pTEPE-3ES-15@gated-at.bofh.it> |
| In reply to | #1199460 |
Andrea, Am 04.08.2015 um 09:02 schrieb Andrea Scian: >> I'm not sure whether introducing a read-before-write check is the best solution. >> At least we need hard numbers for slow/old SLC NANDs too. > > We can enable the feature only for MLC, AFAIK it has not been required for old SLC ;-) I think this needs more discussion. Boris, Brian, will you be at Embedded Linux Conference Europe in Dublin? Maybe we can discuss these issues (data retention, ff-checks, etc...) in person and figure out where to address them. I really want to avoid ad-hoc solutions. :) > Thanks. > In your opinion, enabling chk_io is correct to rough estimate the overhead or does it enable too much checks? You mean the other checks bedside of self_check_write()? You can comment them out for your tests. Thanks, //richard -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web