[RFC] ubi: tmp hack for lstat
Sebastian Andrzej Siewior
bigeasy at linutronix.de
Sun Oct 19 09:21:22 EDT 2008
lstat() on /dev/ubi%d_%d returns 0 in the st_size field. This hack
allows to get the correct file size (as long as nobody updates the volume
in the meantime).
Signed-off-by: Sebastian Andrzej Siewior <bigeasy at linutronix.de>
---
I have userpsace programs which stat() the file and process the
returned number bytes. The other work around is to copy the file
somewhere and use this file instead of /dev/ubi.
Artem, do you thing it is possible to implement this functionality
properly or would it be reasonable not to use stat() at all on ubi
volumes?
drivers/mtd/ubi/cdev.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c
index 03c759b..921dd81 100644
--- a/drivers/mtd/ubi/cdev.c
+++ b/drivers/mtd/ubi/cdev.c
@@ -123,6 +123,7 @@ static int vol_cdev_open(struct inode *inode, struct file *file)
if (IS_ERR(desc))
return PTR_ERR(desc);
+ i_size_write(inode, desc->vol->used_bytes);
file->private_data = desc;
return 0;
}
--
1.5.6.5
More information about the linux-mtd
mailing list