Regarding UBI scalability

Brijesh Singh brij.singh at samsung.com
Wed Feb 11 02:50:32 EST 2009


Hi,
  Sorry for delayed response.

On Thu, Feb 5, 2009 at 4:47 PM, Adrian Hunter
<ext-adrian.hunter at nokia.com> wrote:
> Brijesh Singh wrote:
>> On Wed, Feb 4, 2009 at 2:59 PM, Adrian Hunter
>> <ext-adrian.hunter at nokia.com> wrote:
>>> Brijesh Singh wrote:
>>>> On Tue, Feb 3, 2009 at 5:14 AM, Corentin Chary <corentin.chary at gmail.com>
>>>> wrote:
>>>>> On Mon, Feb 2, 2009 at 12:18 PM, Adrian Hunter
>>>>> <ext-adrian.hunter at nokia.com> wrote:
>>>>>> Artem Bityutskiy wrote:
>>>>>>> On Mon, 2009-02-02 at 13:07 +0200, Adrian Hunter wrote:
>>>>>>>> I would suggest an intermediate step.  Create UBI2 which is
>>>>>>>> similar to UBI but stores eraseblock information in one place,
>>>>>>>> instead of at the beginning of each eraseblock.  Such an approach
>>>>>>>> might be OK up to as much as 64GiB, and would probably perform
>>>>>>>> better than a fully scalable version.
>>>>>>>>
>>>>>>>> Then look at creating UBI3, which is fully scalable.
>>>>>>> Yes, I assume UBI2 should store mapping/erasure information in separate
>>>>>>> tables, not in each eraseblock. So we should get rid of eraseblock
>>>>>>> headers.
>>>>>> Yes that is what I meant.  You could probably make do with as little as
>>>>>> 12 bytes per eraseblock so a 64GiB flash with 512KiB eraseblock size
>>>>>> would need 1536KiB table, which could be read in a second or two, so
>>>>>> mount time is OK.
>>>> Adrian,to my understanding, this is minimum info needed per physical
>>>> erase block...
>>>>
>>>> Erase count                   -8 bytes
>>>> Lnum                             -4 bytes
>>>> Volume ID                      -4 byte(Can make it 1 byte for now as
>>>> vol limit=128)
>>>> Header CRC                   -4 bytes(Only for static volumes.)
>>>> i.e. Minimum 20 bytes.  Is there any other way to make it 12?
>>> 8 bytes for erase counter is many more than needed i.e.
>>>        SLC NAND 100,000 - 1,000,000 max. erase cycles
>>>        MLC NAND 10000 - 10,000 max. erase cycles
>>>
>>> Leave out the header CRC for dynamic volumes
>>>
>>> Combine lnum and volume id.
>>>
>>> Maybe go so far as to pack the information into bit fields
>>> like LPT does. i.e. if the flash media only has a million
>>> eraseblocks then only 20 bits are needed for lnum.  Maybe it
>>> is MLC NAND, so say 15 bits for erase counter.  That leaves 5
>>> bites for volume id, and fits into 5 bytes for dynmaic volumes.
>>
>> Makes sense.
>>
>>>> And how to update the table relatively efficiently?
>>> Each update to UBI typically requires writing a whole NAND
>>> page.  That page can be filled with unchanged information
>>> from the first eraseblock of UBI information.  Hence after
>>> enough updates the first eraseblock will end up containing
>>> only out-of-date information and can then be unmapped.
>>
>> Does it mean there is no separate commit block?And do we move the
>> journal with valid entries when it is full?
>
> I was describing my idea for UBI2.  There would be no journal,
> no commit.  When writing new mappings, also write some existing
> mappings from one of the eraseblocks until it no longer
> contains any needed information.  It is like garbage-collection
> as you go.
OK.
>> I find some problems with it.
>> 1) Why process extra information for each write?
>> 2) We will need to scan the entire journal for each mount.
>> 3) Will work well with only NAND.
>> Instead, if there is a separate commit block, this can be read once
>> and processed.
>>
>> I was wondering, how about combining both the approaches. i.e. A
>> commit block and journal as you suggested?Commit time will be reduced
>> dramatically.(As One page now contains group info). And boot time will
>> be fixed for good unmounts. Besides, it is simple and can be easily
>> scaled.
>
> Are you talking here about UBI3?
No.Sorry,but I was looking at UBI2 in different way.I will write a
document then may be we can discuss this.It will take some time for
internal review.


Thanks and Regards,
Brijesh



More information about the linux-mtd mailing list