diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-02-14 13:36:54 +0200 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-03-08 10:12:48 +0200 |
commit | f43ec882b8b65de0ebde2e1ad52e8de0349d83ae (patch) | |
tree | 6d71ba08bf9069c354a01a2b2e78ea867bab604a /drivers/mtd | |
parent | 30b542ef453e6832ff682170b2db95d7bca2fe70 (diff) | |
download | op-kernel-dev-f43ec882b8b65de0ebde2e1ad52e8de0349d83ae.zip op-kernel-dev-f43ec882b8b65de0ebde2e1ad52e8de0349d83ae.tar.gz |
UBI: provide LEB offset information
Provide the LEB offset information in the UBI device information data
structure. This piece of information is required by UBIFS to find out
what are the LEB offsets which are aligned to the max. write size.
If LEB offset not aligned to max. write size, then UBIFS has to take
this into account to write more optimally.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/ubi/kapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/kapi.c b/drivers/mtd/ubi/kapi.c index 701df4f..d39716e 100644 --- a/drivers/mtd/ubi/kapi.c +++ b/drivers/mtd/ubi/kapi.c @@ -40,6 +40,7 @@ void ubi_do_get_device_info(struct ubi_device *ubi, struct ubi_device_info *di) { di->ubi_num = ubi->ubi_num; di->leb_size = ubi->leb_size; + di->leb_start = ubi->leb_start; di->min_io_size = ubi->min_io_size; di->max_write_size = ubi->max_write_size; di->ro_mode = ubi->ro_mode; |