diff options
| author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-02-03 02:32:44 -0500 |
|---|---|---|
| committer | Luis Henriques <luis.henriques@canonical.com> | 2012-05-01 05:59:55 -0400 |
| commit | 3400416b3b97d5af011c84ad0b89dc5257ad3fbc (patch) | |
| tree | 979c4d65ace93afe8ace8cdfbfd1e4e890540093 /drivers/mtd | |
| parent | 9869a11009574e8005f2cb8784d28ae57ff8a567 (diff) | |
mtd: block2mtd: initialize writebufsize
BugLink: http://bugs.launchpad.net/bugs/983326
commit b604387411ec6a072e95910099262616edd2bd2f upstream.
The writebufsize concept was introduce by commit
"0e4ca7e mtd: add writebufsize field to mtd_info struct" and it represents
the maximum amount of data the device writes to the media at a time. This is
an important parameter for UBIFS which is used during recovery and which
basically defines how big a corruption caused by a power cut can be.
However, we forgot to set this parameter for block2mtd. Set it to PAGE_SIZE
because this is actually the amount of data we write at a time.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Acked-by: Joern Engel <joern@lazybastard.org>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
Diffstat (limited to 'drivers/mtd')
| -rw-r--r-- | drivers/mtd/devices/block2mtd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/devices/block2mtd.c b/drivers/mtd/devices/block2mtd.c index b78f23169d4..8cd983cdc64 100644 --- a/drivers/mtd/devices/block2mtd.c +++ b/drivers/mtd/devices/block2mtd.c | |||
| @@ -284,6 +284,7 @@ static struct block2mtd_dev *add_device(char *devname, int erase_size) | |||
| 284 | dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK; | 284 | dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK; |
| 285 | dev->mtd.erasesize = erase_size; | 285 | dev->mtd.erasesize = erase_size; |
| 286 | dev->mtd.writesize = 1; | 286 | dev->mtd.writesize = 1; |
| 287 | dev->mtd.writebufsize = PAGE_SIZE; | ||
| 287 | dev->mtd.type = MTD_RAM; | 288 | dev->mtd.type = MTD_RAM; |
| 288 | dev->mtd.flags = MTD_CAP_RAM; | 289 | dev->mtd.flags = MTD_CAP_RAM; |
| 289 | dev->mtd.erase = block2mtd_erase; | 290 | dev->mtd.erase = block2mtd_erase; |
