summaryrefslogtreecommitdiffstats
path: root/fs/ramfs.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:39 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:39 +0200
commiteaff0679f342d9dd36827b4df0326aa54747812e (patch)
tree83691837cda9187750b3f5651d318b232e080ccd /fs/ramfs.c
parenta4b702a62fe81d4c775ac1a4c088aea7682e55aa (diff)
downloadbarebox-eaff0679f342d9dd36827b4df0326aa54747812e.tar.gz
barebox-eaff0679f342d9dd36827b4df0326aa54747812e.tar.xz
svn_rev_281
read support for ramfs
Diffstat (limited to 'fs/ramfs.c')
-rw-r--r--fs/ramfs.c52
1 files changed, 50 insertions, 2 deletions
diff --git a/fs/ramfs.c b/fs/ramfs.c
index 63338398c6..bff9804878 100644
--- a/fs/ramfs.c
+++ b/fs/ramfs.c
@@ -186,9 +186,57 @@ static int ramfs_close(struct device_d *dev, FILE *f)
return 0;
}
-static int ramfs_read(struct device_d *_dev, FILE *f, void *buf, size_t size)
+static int ramfs_read(struct device_d *_dev, FILE *f, void *buf, size_t insize)
{
- return 0;
+ struct ramfs_inode *node = (struct ramfs_inode *)f->inode;
+ int chunk;
+ struct ramfs_chunk *data;
+ int ofs;
+ int now;
+ int pos = f->pos;
+ int size = insize;
+
+ chunk = f->pos / CHUNK_SIZE;
+ printf("%s: reading from chunk %d\n", __FUNCTION__, chunk);
+
+ /* Position ourself in stream */
+ data = node->data;
+ while (chunk) {
+ data = data->next;
+ chunk--;
+ }
+ ofs = f->pos % CHUNK_SIZE;
+
+ /* Read till end of current chunk */
+ if (ofs) {
+ now = min(size, CHUNK_SIZE - ofs);
+ printf("Reading till end of node. size: %d\n", size);
+ memcpy(buf, data->data + ofs, now);
+ size -= now;
+ pos += now;
+ buf += now;
+ if (pos > node->size)
+ node->size = now;
+ }
+
+ /* Do full chunks */
+ while (size >= CHUNK_SIZE) {
+ printf("do full chunk. size: %d\n", size);
+ data = data->next;
+ memcpy(buf, data->data, CHUNK_SIZE);
+ size -= CHUNK_SIZE;
+ pos += CHUNK_SIZE;
+ buf += CHUNK_SIZE;
+ }
+
+ /* And the rest */
+ if (size) {
+ printf("do rest. size: %d\n", size);
+ data = data->next;
+ memcpy(buf, data->data, size);
+ }
+
+ return insize;
}
static int ramfs_write(struct device_d *_dev, FILE *f, const void *buf, size_t insize)