From: Alexander Aring <alex.aring@gmail.com>
To: barebox@lists.infradead.org
Subject: [PATCH 2/2] fs: add pread and pwrite functions
Date: Sun, 17 Feb 2013 22:05:01 +0100 [thread overview]
Message-ID: <1361135101-994-3-git-send-email-alex.aring@gmail.com> (raw)
In-Reply-To: <1361135101-994-1-git-send-email-alex.aring@gmail.com>
Add pread and pwrite functions.
Split read and write functions to save some space.
The functions pread and pwrite saves and sets the file
position to a given offset and restore them afterwards.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
---
fs/fs.c | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++----------
include/fs.h | 2 ++
2 files changed, 77 insertions(+), 14 deletions(-)
diff --git a/fs/fs.c b/fs/fs.c
index 48d1c89..497a2ea 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -754,17 +754,12 @@ int ioctl(int fd, int request, void *buf)
return ret;
}
-ssize_t read(int fd, void *buf, size_t count)
+static ssize_t __read(FILE *f, void *buf, size_t count)
{
struct device_d *dev;
struct fs_driver_d *fsdrv;
- FILE *f;
int ret;
- if (check_fd(fd))
- return -errno;
-
- f = &files[fd];
dev = f->dev;
fsdrv = dev_to_fs_driver(dev);
@@ -777,18 +772,34 @@ ssize_t read(int fd, void *buf, size_t count)
ret = fsdrv->read(dev, f, buf, count);
- if (ret > 0)
- f->pos += ret;
if (ret < 0)
errno = -ret;
return ret;
}
-EXPORT_SYMBOL(read);
+EXPORT_SYMBOL(pread);
-ssize_t write(int fd, const void *buf, size_t count)
+ssize_t pread(int fd, void *buf, size_t count, loff_t offset)
+{
+ loff_t pos;
+ FILE *f;
+ int ret;
+
+ if (check_fd(fd))
+ return -errno;
+
+ f = &files[fd];
+
+ pos = f->pos;
+ f->pos = offset;
+ ret = __read(f, buf, count);
+ f->pos = pos;
+
+ return ret;
+}
+EXPORT_SYMBOL(pread);
+
+ssize_t read(int fd, void *buf, size_t count)
{
- struct device_d *dev;
- struct fs_driver_d *fsdrv;
FILE *f;
int ret;
@@ -796,6 +807,21 @@ ssize_t write(int fd, const void *buf, size_t count)
return -errno;
f = &files[fd];
+
+ ret = __read(f, buf, count);
+
+ if (ret > 0)
+ f->pos += ret;
+ return ret;
+}
+EXPORT_SYMBOL(read);
+
+static ssize_t __write(FILE *f, const void *buf, size_t count)
+{
+ struct device_d *dev;
+ struct fs_driver_d *fsdrv;
+ int ret;
+
dev = f->dev;
fsdrv = dev_to_fs_driver(dev);
@@ -812,13 +838,48 @@ ssize_t write(int fd, const void *buf, size_t count)
}
}
ret = fsdrv->write(dev, f, buf, count);
- if (ret > 0)
- f->pos += ret;
out:
if (ret < 0)
errno = -ret;
return ret;
}
+
+ssize_t pwrite(int fd, const void *buf, size_t count, loff_t offset)
+{
+ loff_t pos;
+ FILE *f;
+ int ret;
+
+ if (check_fd(fd))
+ return -errno;
+
+ f = &files[fd];
+
+ pos = f->pos;
+ f->pos = offset;
+ ret = __write(f, buf, count);
+ f->pos = pos;
+
+ return ret;
+}
+EXPORT_SYMBOL(pwrite);
+
+ssize_t write(int fd, const void *buf, size_t count)
+{
+ FILE *f;
+ int ret;
+
+ if (check_fd(fd))
+ return -errno;
+
+ f = &files[fd];
+
+ ret = __write(f, buf, count);
+
+ if (ret > 0)
+ f->pos += ret;
+ return ret;
+}
EXPORT_SYMBOL(write);
int flush(int fd)
diff --git a/include/fs.h b/include/fs.h
index d6b22f7..7c4e461 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -114,8 +114,10 @@ int flush(int fd);
int lstat(const char *filename, struct stat *s);
int stat(const char *filename, struct stat *s);
ssize_t read(int fd, void *buf, size_t count);
+ssize_t pread(int fd, void *buf, size_t count, loff_t offset);
int ioctl(int fd, int request, void *buf);
ssize_t write(int fd, const void *buf, size_t count);
+ssize_t pwrite(int fd, const void *buf, size_t count, loff_t offset);
#define SEEK_SET 1
#define SEEK_CUR 2
--
1.8.1.3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2013-02-17 21:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-17 21:04 [RFC PATCH v2 0/2] " Alexander Aring
2013-02-17 21:05 ` [PATCH 1/2] fs: fix return type of read Alexander Aring
2013-02-17 21:05 ` Alexander Aring [this message]
2013-02-18 10:17 ` [PATCH 2/2] fs: add pread and pwrite functions Sascha Hauer
2013-02-18 15:13 ` Alexander Aring
2013-02-19 19:33 ` Sascha Hauer
2013-02-19 20:30 ` Alexander Aring
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1361135101-994-3-git-send-email-alex.aring@gmail.com \
--to=alex.aring@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox