* [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions
@ 2015-11-08 15:20 Anton Ivanov
2015-11-08 17:10 ` Anton Ivanov
2015-11-20 18:47 ` Anton Ivanov
0 siblings, 2 replies; 5+ messages in thread
From: Anton Ivanov @ 2015-11-08 15:20 UTC (permalink / raw)
To: user-mode-linux-devel; +Cc: Anton Ivanov
This decreases the number of syscalls per read/write by half.
Signed-off-by: Anton Ivanov <aivanov@brocade.com>
---
arch/um/drivers/ubd_kern.c | 27 +++++----------------------
arch/um/include/shared/os.h | 2 ++
arch/um/os-Linux/file.c | 19 +++++++++++++++++++
3 files changed, 26 insertions(+), 22 deletions(-)
diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c
index e8ab93c..39ba207 100644
--- a/arch/um/drivers/ubd_kern.c
+++ b/arch/um/drivers/ubd_kern.c
@@ -535,11 +535,7 @@ static int read_cow_bitmap(int fd, void *buf, int offset, int len)
{
int err;
- err = os_seek_file(fd, offset);
- if (err < 0)
- return err;
-
- err = os_read_file(fd, buf, len);
+ err = os_pread_file(fd, buf, len, offset);
if (err < 0)
return err;
@@ -1377,14 +1373,8 @@ static int update_bitmap(struct io_thread_req *req)
if(req->cow_offset == -1)
return 0;
- n = os_seek_file(req->fds[1], req->cow_offset);
- if(n < 0){
- printk("do_io - bitmap lseek failed : err = %d\n", -n);
- return 1;
- }
-
- n = os_write_file(req->fds[1], &req->bitmap_words,
- sizeof(req->bitmap_words));
+ n = os_pwrite_file(req->fds[1], &req->bitmap_words,
+ sizeof(req->bitmap_words), req->cow_offset);
if(n != sizeof(req->bitmap_words)){
printk("do_io - bitmap update failed, err = %d fd = %d\n", -n,
req->fds[1]);
@@ -1399,7 +1389,6 @@ static void do_io(struct io_thread_req *req)
char *buf;
unsigned long len;
int n, nsectors, start, end, bit;
- int err;
__u64 off;
if (req->op == UBD_FLUSH) {
@@ -1428,18 +1417,12 @@ static void do_io(struct io_thread_req *req)
len = (end - start) * req->sectorsize;
buf = &req->buffer[start * req->sectorsize];
- err = os_seek_file(req->fds[bit], off);
- if(err < 0){
- printk("do_io - lseek failed : err = %d\n", -err);
- req->error = 1;
- return;
- }
if(req->op == UBD_READ){
n = 0;
do {
buf = &buf[n];
len -= n;
- n = os_read_file(req->fds[bit], buf, len);
+ n = os_pread_file(req->fds[bit], buf, len, off);
if (n < 0) {
printk("do_io - read failed, err = %d "
"fd = %d\n", -n, req->fds[bit]);
@@ -1449,7 +1432,7 @@ static void do_io(struct io_thread_req *req)
} while((n < len) && (n != 0));
if (n < len) memset(&buf[n], 0, len - n);
} else {
- n = os_write_file(req->fds[bit], buf, len);
+ n = os_pwrite_file(req->fds[bit], buf, len, off);
if(n != len){
printk("do_io - write failed err = %d "
"fd = %d\n", -n, req->fds[bit]);
diff --git a/arch/um/include/shared/os.h b/arch/um/include/shared/os.h
index 21d704b..de5d572 100644
--- a/arch/um/include/shared/os.h
+++ b/arch/um/include/shared/os.h
@@ -146,6 +146,8 @@ extern int os_read_file(int fd, void *buf, int len);
extern int os_write_file(int fd, const void *buf, int count);
extern int os_sync_file(int fd);
extern int os_file_size(const char *file, unsigned long long *size_out);
+extern int os_pread_file(int fd, void *buf, int len, unsigned long long offset);
+extern int os_pwrite_file(int fd, const void *buf, int count, unsigned long long offset);
extern int os_file_modtime(const char *file, unsigned long *modtime);
extern int os_pipe(int *fd, int stream, int close_on_exec);
extern int os_set_fd_async(int fd);
diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c
index 26e0164..2db18cb 100644
--- a/arch/um/os-Linux/file.c
+++ b/arch/um/os-Linux/file.c
@@ -264,6 +264,15 @@ int os_read_file(int fd, void *buf, int len)
return n;
}
+int os_pread_file(int fd, void *buf, int len, unsigned long long offset)
+{
+ int n = pread(fd, buf, len, offset);
+
+ if (n < 0)
+ return -errno;
+ return n;
+}
+
int os_write_file(int fd, const void *buf, int len)
{
int n = write(fd, (void *) buf, len);
@@ -282,6 +291,16 @@ int os_sync_file(int fd)
return n;
}
+int os_pwrite_file(int fd, const void *buf, int len, unsigned long long offset)
+{
+ int n = pwrite(fd, (void *) buf, len, offset);
+
+ if (n < 0)
+ return -errno;
+ return n;
+}
+
+
int os_file_size(const char *file, unsigned long long *size_out)
{
struct uml_stat buf;
--
2.1.4
------------------------------------------------------------------------------
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions
2015-11-08 15:20 [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions Anton Ivanov
@ 2015-11-08 17:10 ` Anton Ivanov
2015-11-20 18:47 ` Anton Ivanov
1 sibling, 0 replies; 5+ messages in thread
From: Anton Ivanov @ 2015-11-08 17:10 UTC (permalink / raw)
To: user-mode-linux-devel
I am going to send in a couple of more which bulk-up the transactions
(this forms most of the improvement) later this week.
This one is obvious - qemu has been using it for ages.
A.
On 08/11/15 15:20, Anton Ivanov wrote:
> This decreases the number of syscalls per read/write by half.
>
> Signed-off-by: Anton Ivanov <aivanov@brocade.com>
> ---
> arch/um/drivers/ubd_kern.c | 27 +++++----------------------
> arch/um/include/shared/os.h | 2 ++
> arch/um/os-Linux/file.c | 19 +++++++++++++++++++
> 3 files changed, 26 insertions(+), 22 deletions(-)
>
> diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c
> index e8ab93c..39ba207 100644
> --- a/arch/um/drivers/ubd_kern.c
> +++ b/arch/um/drivers/ubd_kern.c
> @@ -535,11 +535,7 @@ static int read_cow_bitmap(int fd, void *buf, int offset, int len)
> {
> int err;
>
> - err = os_seek_file(fd, offset);
> - if (err < 0)
> - return err;
> -
> - err = os_read_file(fd, buf, len);
> + err = os_pread_file(fd, buf, len, offset);
> if (err < 0)
> return err;
>
> @@ -1377,14 +1373,8 @@ static int update_bitmap(struct io_thread_req *req)
> if(req->cow_offset == -1)
> return 0;
>
> - n = os_seek_file(req->fds[1], req->cow_offset);
> - if(n < 0){
> - printk("do_io - bitmap lseek failed : err = %d\n", -n);
> - return 1;
> - }
> -
> - n = os_write_file(req->fds[1], &req->bitmap_words,
> - sizeof(req->bitmap_words));
> + n = os_pwrite_file(req->fds[1], &req->bitmap_words,
> + sizeof(req->bitmap_words), req->cow_offset);
> if(n != sizeof(req->bitmap_words)){
> printk("do_io - bitmap update failed, err = %d fd = %d\n", -n,
> req->fds[1]);
> @@ -1399,7 +1389,6 @@ static void do_io(struct io_thread_req *req)
> char *buf;
> unsigned long len;
> int n, nsectors, start, end, bit;
> - int err;
> __u64 off;
>
> if (req->op == UBD_FLUSH) {
> @@ -1428,18 +1417,12 @@ static void do_io(struct io_thread_req *req)
> len = (end - start) * req->sectorsize;
> buf = &req->buffer[start * req->sectorsize];
>
> - err = os_seek_file(req->fds[bit], off);
> - if(err < 0){
> - printk("do_io - lseek failed : err = %d\n", -err);
> - req->error = 1;
> - return;
> - }
> if(req->op == UBD_READ){
> n = 0;
> do {
> buf = &buf[n];
> len -= n;
> - n = os_read_file(req->fds[bit], buf, len);
> + n = os_pread_file(req->fds[bit], buf, len, off);
> if (n < 0) {
> printk("do_io - read failed, err = %d "
> "fd = %d\n", -n, req->fds[bit]);
> @@ -1449,7 +1432,7 @@ static void do_io(struct io_thread_req *req)
> } while((n < len) && (n != 0));
> if (n < len) memset(&buf[n], 0, len - n);
> } else {
> - n = os_write_file(req->fds[bit], buf, len);
> + n = os_pwrite_file(req->fds[bit], buf, len, off);
> if(n != len){
> printk("do_io - write failed err = %d "
> "fd = %d\n", -n, req->fds[bit]);
> diff --git a/arch/um/include/shared/os.h b/arch/um/include/shared/os.h
> index 21d704b..de5d572 100644
> --- a/arch/um/include/shared/os.h
> +++ b/arch/um/include/shared/os.h
> @@ -146,6 +146,8 @@ extern int os_read_file(int fd, void *buf, int len);
> extern int os_write_file(int fd, const void *buf, int count);
> extern int os_sync_file(int fd);
> extern int os_file_size(const char *file, unsigned long long *size_out);
> +extern int os_pread_file(int fd, void *buf, int len, unsigned long long offset);
> +extern int os_pwrite_file(int fd, const void *buf, int count, unsigned long long offset);
> extern int os_file_modtime(const char *file, unsigned long *modtime);
> extern int os_pipe(int *fd, int stream, int close_on_exec);
> extern int os_set_fd_async(int fd);
> diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c
> index 26e0164..2db18cb 100644
> --- a/arch/um/os-Linux/file.c
> +++ b/arch/um/os-Linux/file.c
> @@ -264,6 +264,15 @@ int os_read_file(int fd, void *buf, int len)
> return n;
> }
>
> +int os_pread_file(int fd, void *buf, int len, unsigned long long offset)
> +{
> + int n = pread(fd, buf, len, offset);
> +
> + if (n < 0)
> + return -errno;
> + return n;
> +}
> +
> int os_write_file(int fd, const void *buf, int len)
> {
> int n = write(fd, (void *) buf, len);
> @@ -282,6 +291,16 @@ int os_sync_file(int fd)
> return n;
> }
>
> +int os_pwrite_file(int fd, const void *buf, int len, unsigned long long offset)
> +{
> + int n = pwrite(fd, (void *) buf, len, offset);
> +
> + if (n < 0)
> + return -errno;
> + return n;
> +}
> +
> +
> int os_file_size(const char *file, unsigned long long *size_out)
> {
> struct uml_stat buf;
------------------------------------------------------------------------------
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions
2015-11-08 15:20 [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions Anton Ivanov
2015-11-08 17:10 ` Anton Ivanov
@ 2015-11-20 18:47 ` Anton Ivanov
2015-11-23 22:24 ` Richard Weinberger
1 sibling, 1 reply; 5+ messages in thread
From: Anton Ivanov @ 2015-11-20 18:47 UTC (permalink / raw)
To: user-mode-linux-devel
Hi list, hi Richard.
Have you had time to review this one? I think it is not contentious - it
is something QEMU has been doing for a very long time now. It also gives
a measurable speed up, especially for random IO.
I am going to hold off on the rest of the ubd patches because they bulk
up the transactions. This is dangerous if you end up in a reentrant
situation.
A.
On 08/11/15 15:20, Anton Ivanov wrote:
> This decreases the number of syscalls per read/write by half.
>
> Signed-off-by: Anton Ivanov <aivanov@brocade.com>
> ---
> arch/um/drivers/ubd_kern.c | 27 +++++----------------------
> arch/um/include/shared/os.h | 2 ++
> arch/um/os-Linux/file.c | 19 +++++++++++++++++++
> 3 files changed, 26 insertions(+), 22 deletions(-)
>
> diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c
> index e8ab93c..39ba207 100644
> --- a/arch/um/drivers/ubd_kern.c
> +++ b/arch/um/drivers/ubd_kern.c
> @@ -535,11 +535,7 @@ static int read_cow_bitmap(int fd, void *buf, int offset, int len)
> {
> int err;
>
> - err = os_seek_file(fd, offset);
> - if (err < 0)
> - return err;
> -
> - err = os_read_file(fd, buf, len);
> + err = os_pread_file(fd, buf, len, offset);
> if (err < 0)
> return err;
>
> @@ -1377,14 +1373,8 @@ static int update_bitmap(struct io_thread_req *req)
> if(req->cow_offset == -1)
> return 0;
>
> - n = os_seek_file(req->fds[1], req->cow_offset);
> - if(n < 0){
> - printk("do_io - bitmap lseek failed : err = %d\n", -n);
> - return 1;
> - }
> -
> - n = os_write_file(req->fds[1], &req->bitmap_words,
> - sizeof(req->bitmap_words));
> + n = os_pwrite_file(req->fds[1], &req->bitmap_words,
> + sizeof(req->bitmap_words), req->cow_offset);
> if(n != sizeof(req->bitmap_words)){
> printk("do_io - bitmap update failed, err = %d fd = %d\n", -n,
> req->fds[1]);
> @@ -1399,7 +1389,6 @@ static void do_io(struct io_thread_req *req)
> char *buf;
> unsigned long len;
> int n, nsectors, start, end, bit;
> - int err;
> __u64 off;
>
> if (req->op == UBD_FLUSH) {
> @@ -1428,18 +1417,12 @@ static void do_io(struct io_thread_req *req)
> len = (end - start) * req->sectorsize;
> buf = &req->buffer[start * req->sectorsize];
>
> - err = os_seek_file(req->fds[bit], off);
> - if(err < 0){
> - printk("do_io - lseek failed : err = %d\n", -err);
> - req->error = 1;
> - return;
> - }
> if(req->op == UBD_READ){
> n = 0;
> do {
> buf = &buf[n];
> len -= n;
> - n = os_read_file(req->fds[bit], buf, len);
> + n = os_pread_file(req->fds[bit], buf, len, off);
> if (n < 0) {
> printk("do_io - read failed, err = %d "
> "fd = %d\n", -n, req->fds[bit]);
> @@ -1449,7 +1432,7 @@ static void do_io(struct io_thread_req *req)
> } while((n < len) && (n != 0));
> if (n < len) memset(&buf[n], 0, len - n);
> } else {
> - n = os_write_file(req->fds[bit], buf, len);
> + n = os_pwrite_file(req->fds[bit], buf, len, off);
> if(n != len){
> printk("do_io - write failed err = %d "
> "fd = %d\n", -n, req->fds[bit]);
> diff --git a/arch/um/include/shared/os.h b/arch/um/include/shared/os.h
> index 21d704b..de5d572 100644
> --- a/arch/um/include/shared/os.h
> +++ b/arch/um/include/shared/os.h
> @@ -146,6 +146,8 @@ extern int os_read_file(int fd, void *buf, int len);
> extern int os_write_file(int fd, const void *buf, int count);
> extern int os_sync_file(int fd);
> extern int os_file_size(const char *file, unsigned long long *size_out);
> +extern int os_pread_file(int fd, void *buf, int len, unsigned long long offset);
> +extern int os_pwrite_file(int fd, const void *buf, int count, unsigned long long offset);
> extern int os_file_modtime(const char *file, unsigned long *modtime);
> extern int os_pipe(int *fd, int stream, int close_on_exec);
> extern int os_set_fd_async(int fd);
> diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c
> index 26e0164..2db18cb 100644
> --- a/arch/um/os-Linux/file.c
> +++ b/arch/um/os-Linux/file.c
> @@ -264,6 +264,15 @@ int os_read_file(int fd, void *buf, int len)
> return n;
> }
>
> +int os_pread_file(int fd, void *buf, int len, unsigned long long offset)
> +{
> + int n = pread(fd, buf, len, offset);
> +
> + if (n < 0)
> + return -errno;
> + return n;
> +}
> +
> int os_write_file(int fd, const void *buf, int len)
> {
> int n = write(fd, (void *) buf, len);
> @@ -282,6 +291,16 @@ int os_sync_file(int fd)
> return n;
> }
>
> +int os_pwrite_file(int fd, const void *buf, int len, unsigned long long offset)
> +{
> + int n = pwrite(fd, (void *) buf, len, offset);
> +
> + if (n < 0)
> + return -errno;
> + return n;
> +}
> +
> +
> int os_file_size(const char *file, unsigned long long *size_out)
> {
> struct uml_stat buf;
------------------------------------------------------------------------------
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions
2015-11-20 18:47 ` Anton Ivanov
@ 2015-11-23 22:24 ` Richard Weinberger
2015-11-24 8:02 ` Anton Ivanov
0 siblings, 1 reply; 5+ messages in thread
From: Richard Weinberger @ 2015-11-23 22:24 UTC (permalink / raw)
To: Anton Ivanov; +Cc: user-mode-linux-devel@lists.sourceforge.net
On Fri, Nov 20, 2015 at 7:47 PM, Anton Ivanov
<anton.ivanov@kot-begemot.co.uk> wrote:
> Hi list, hi Richard.
>
> Have you had time to review this one? I think it is not contentious - it
> is something QEMU has been doing for a very long time now. It also gives
> a measurable speed up, especially for random IO.
>
> I am going to hold off on the rest of the ubd patches because they bulk
> up the transactions. This is dangerous if you end up in a reentrant
> situation.
Sorry for the delay.
The patch looks useful! Thanks a lot!
Please CC me in future such that patches don't get lost.
I handle CC'ed mails with higher priority.
(This is my way to deal with the LKML storm ;))
--
Thanks,
//richard
------------------------------------------------------------------------------
Go from Idea to Many App Stores Faster with Intel(R) XDK
Give your users amazing mobile app experiences with Intel(R) XDK.
Use one codebase in this all-in-one HTML5 development environment.
Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs.
http://pubads.g.doubleclick.net/gampad/clk?id=254741551&iu=/4140
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions
2015-11-23 22:24 ` Richard Weinberger
@ 2015-11-24 8:02 ` Anton Ivanov
0 siblings, 0 replies; 5+ messages in thread
From: Anton Ivanov @ 2015-11-24 8:02 UTC (permalink / raw)
To: Richard Weinberger; +Cc: user-mode-linux-devel@lists.sourceforge.net
On 23/11/15 22:24, Richard Weinberger wrote:
> On Fri, Nov 20, 2015 at 7:47 PM, Anton Ivanov
> <anton.ivanov@kot-begemot.co.uk> wrote:
>> Hi list, hi Richard.
>>
>> Have you had time to review this one? I think it is not contentious - it
>> is something QEMU has been doing for a very long time now. It also gives
>> a measurable speed up, especially for random IO.
>>
>> I am going to hold off on the rest of the ubd patches because they bulk
>> up the transactions. This is dangerous if you end up in a reentrant
>> situation.
> Sorry for the delay.
> The patch looks useful! Thanks a lot!
>
> Please CC me in future such that patches don't get lost.
OK.
I have a few that follow it to improve UBD even further, but I am going
to hold them off for now until we have the IRQ controller sorted.
Multi-read/write and irq/io handler reentrancy do not get along very well :(
A.
> I handle CC'ed mails with higher priority.
> (This is my way to deal with the LKML storm ;))
>
------------------------------------------------------------------------------
Go from Idea to Many App Stores Faster with Intel(R) XDK
Give your users amazing mobile app experiences with Intel(R) XDK.
Use one codebase in this all-in-one HTML5 development environment.
Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs.
http://pubads.g.doubleclick.net/gampad/clk?id=254741551&iu=/4140
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-11-24 8:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-08 15:20 [uml-devel] [PATCH] Update UBD to use pread/pwrite family of functions Anton Ivanov
2015-11-08 17:10 ` Anton Ivanov
2015-11-20 18:47 ` Anton Ivanov
2015-11-23 22:24 ` Richard Weinberger
2015-11-24 8:02 ` Anton Ivanov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox