qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] block: char devices on FreeBSD are not behind a pager
@ 2014-10-20 16:39 Roger Pau Monne
  2014-10-20 17:22 ` Kevin Wolf
  0 siblings, 1 reply; 4+ messages in thread
From: Roger Pau Monne @ 2014-10-20 16:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Stefan Hajnoczi, Roger Pau Monne

Acknowledge this and forcefully set BDRV_O_NOCACHE and O_DIRECT in order to
force QEMU to use aligned buffers.

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Cc: Kevin Wolf <kwolf@redhat.com>
Cc: Stefan Hajnoczi <stefanha@redhat.com>
---
 block/raw-posix.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/block/raw-posix.c b/block/raw-posix.c
index 86ce4f2..63841dd 100644
--- a/block/raw-posix.c
+++ b/block/raw-posix.c
@@ -472,6 +472,18 @@ static int raw_open_common(BlockDriverState *bs, QDict *options,
         }
 #endif
     }
+#ifdef __FreeBSD__
+    if (S_ISCHR(st.st_mode)) {
+        /*
+         * The file is a char device (disk), which on FreeBSD isn't behind
+         * a pager, so set BDRV_O_NOCACHE unconditionally. This is needed
+         * so Qemu makes sure all IO operations on the device are aligned
+         * to sector size, or else FreeBSD will reject them with EINVAL.
+         */
+        bs->open_flags |= BDRV_O_NOCACHE;
+        s->open_flags |= O_DIRECT;
+    }
+#endif
 
 #ifdef CONFIG_XFS
     if (platform_test_xfs_fd(s->fd)) {
-- 
1.9.3 (Apple Git-50)

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] block: char devices on FreeBSD are not behind a pager
  2014-10-20 16:39 [Qemu-devel] [PATCH] block: char devices on FreeBSD are not behind a pager Roger Pau Monne
@ 2014-10-20 17:22 ` Kevin Wolf
  2014-10-21  8:14   ` Roger Pau Monné
  0 siblings, 1 reply; 4+ messages in thread
From: Kevin Wolf @ 2014-10-20 17:22 UTC (permalink / raw)
  To: Roger Pau Monne; +Cc: qemu-devel, Stefan Hajnoczi

Am 20.10.2014 um 18:39 hat Roger Pau Monne geschrieben:
> Acknowledge this and forcefully set BDRV_O_NOCACHE and O_DIRECT in order to
> force QEMU to use aligned buffers.
> 
> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> Cc: Kevin Wolf <kwolf@redhat.com>
> Cc: Stefan Hajnoczi <stefanha@redhat.com>
> ---
>  block/raw-posix.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/block/raw-posix.c b/block/raw-posix.c
> index 86ce4f2..63841dd 100644
> --- a/block/raw-posix.c
> +++ b/block/raw-posix.c
> @@ -472,6 +472,18 @@ static int raw_open_common(BlockDriverState *bs, QDict *options,
>          }
>  #endif
>      }
> +#ifdef __FreeBSD__
> +    if (S_ISCHR(st.st_mode)) {
> +        /*
> +         * The file is a char device (disk), which on FreeBSD isn't behind
> +         * a pager, so set BDRV_O_NOCACHE unconditionally. This is needed
> +         * so Qemu makes sure all IO operations on the device are aligned
> +         * to sector size, or else FreeBSD will reject them with EINVAL.
> +         */
> +        bs->open_flags |= BDRV_O_NOCACHE;
> +        s->open_flags |= O_DIRECT;
> +    }
> +#endif

No, this doesn't look right. Block drivers must not modify the options
that they get. (Yes, the Linux AIO case is broken in this respect.
Hopefully we'll be able to fix it soon.)

Depending on what the real requirements are, I can see two options:

1. Require cache.direct=on (i.e. O_DIRECT) for char devices on FreeBSD.
   If the user didn't set the option, print a nice error message telling
   them what option to set.

2. If O_DIRECT isn't actually required to open the file, but you only
   need to make sure to use the right alignment, modify
   raw_probe_alignment() so that it returns an alignment > 1 even for
   non-O_DIRECT files on FreeBSD if they are character devices.

I don't know FreeBSD good enough, but if it fulfills the requirements,
option 2 is certainly the more elegant one.

Kevin

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] block: char devices on FreeBSD are not behind a pager
  2014-10-20 17:22 ` Kevin Wolf
@ 2014-10-21  8:14   ` Roger Pau Monné
  2014-10-21  9:36     ` Kevin Wolf
  0 siblings, 1 reply; 4+ messages in thread
From: Roger Pau Monné @ 2014-10-21  8:14 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: qemu-devel, Stefan Hajnoczi

El 20/10/14 a les 19.22, Kevin Wolf ha escrit:
> Am 20.10.2014 um 18:39 hat Roger Pau Monne geschrieben:
>> Acknowledge this and forcefully set BDRV_O_NOCACHE and O_DIRECT in order to
>> force QEMU to use aligned buffers.
>>
>> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
>> Cc: Kevin Wolf <kwolf@redhat.com>
>> Cc: Stefan Hajnoczi <stefanha@redhat.com>
>> ---
>>  block/raw-posix.c | 12 ++++++++++++
>>  1 file changed, 12 insertions(+)
>>
>> diff --git a/block/raw-posix.c b/block/raw-posix.c
>> index 86ce4f2..63841dd 100644
>> --- a/block/raw-posix.c
>> +++ b/block/raw-posix.c
>> @@ -472,6 +472,18 @@ static int raw_open_common(BlockDriverState *bs, QDict *options,
>>          }
>>  #endif
>>      }
>> +#ifdef __FreeBSD__
>> +    if (S_ISCHR(st.st_mode)) {
>> +        /*
>> +         * The file is a char device (disk), which on FreeBSD isn't behind
>> +         * a pager, so set BDRV_O_NOCACHE unconditionally. This is needed
>> +         * so Qemu makes sure all IO operations on the device are aligned
>> +         * to sector size, or else FreeBSD will reject them with EINVAL.
>> +         */
>> +        bs->open_flags |= BDRV_O_NOCACHE;
>> +        s->open_flags |= O_DIRECT;
>> +    }
>> +#endif
> 
> No, this doesn't look right. Block drivers must not modify the options
> that they get. (Yes, the Linux AIO case is broken in this respect.
> Hopefully we'll be able to fix it soon.)
> 
> Depending on what the real requirements are, I can see two options:
> 
> 1. Require cache.direct=on (i.e. O_DIRECT) for char devices on FreeBSD.
>    If the user didn't set the option, print a nice error message telling
>    them what option to set.
> 
> 2. If O_DIRECT isn't actually required to open the file, but you only
>    need to make sure to use the right alignment, modify
>    raw_probe_alignment() so that it returns an alignment > 1 even for
>    non-O_DIRECT files on FreeBSD if they are character devices.
> 
> I don't know FreeBSD good enough, but if it fulfills the requirements,
> option 2 is certainly the more elegant one.

Thanks for the review. O_DIRECT is not required to open the file, so
option 2 seems sensible.

I've added a new flag to BDRVRawState that's used to check if underlying
device needs requests to be aligned. This flag is set by default if
BDRV_O_NOCACHE is used, or if the OS is FreeBSD and the underlying
device is a char dev. This new flag is used as a replacement of the
O_DIRECT and BDRV_O_NOCACHE checks that were used in raw_probe_alignment
and raw_aio_submit. Does this sound OK?

Roger.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] block: char devices on FreeBSD are not behind a pager
  2014-10-21  8:14   ` Roger Pau Monné
@ 2014-10-21  9:36     ` Kevin Wolf
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin Wolf @ 2014-10-21  9:36 UTC (permalink / raw)
  To: Roger Pau Monné; +Cc: qemu-devel, Stefan Hajnoczi

Am 21.10.2014 um 10:14 hat Roger Pau Monné geschrieben:
> El 20/10/14 a les 19.22, Kevin Wolf ha escrit:
> > Am 20.10.2014 um 18:39 hat Roger Pau Monne geschrieben:
> >> Acknowledge this and forcefully set BDRV_O_NOCACHE and O_DIRECT in order to
> >> force QEMU to use aligned buffers.
> >>
> >> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> >> Cc: Kevin Wolf <kwolf@redhat.com>
> >> Cc: Stefan Hajnoczi <stefanha@redhat.com>
> >> ---
> >>  block/raw-posix.c | 12 ++++++++++++
> >>  1 file changed, 12 insertions(+)
> >>
> >> diff --git a/block/raw-posix.c b/block/raw-posix.c
> >> index 86ce4f2..63841dd 100644
> >> --- a/block/raw-posix.c
> >> +++ b/block/raw-posix.c
> >> @@ -472,6 +472,18 @@ static int raw_open_common(BlockDriverState *bs, QDict *options,
> >>          }
> >>  #endif
> >>      }
> >> +#ifdef __FreeBSD__
> >> +    if (S_ISCHR(st.st_mode)) {
> >> +        /*
> >> +         * The file is a char device (disk), which on FreeBSD isn't behind
> >> +         * a pager, so set BDRV_O_NOCACHE unconditionally. This is needed
> >> +         * so Qemu makes sure all IO operations on the device are aligned
> >> +         * to sector size, or else FreeBSD will reject them with EINVAL.
> >> +         */
> >> +        bs->open_flags |= BDRV_O_NOCACHE;
> >> +        s->open_flags |= O_DIRECT;
> >> +    }
> >> +#endif
> > 
> > No, this doesn't look right. Block drivers must not modify the options
> > that they get. (Yes, the Linux AIO case is broken in this respect.
> > Hopefully we'll be able to fix it soon.)
> > 
> > Depending on what the real requirements are, I can see two options:
> > 
> > 1. Require cache.direct=on (i.e. O_DIRECT) for char devices on FreeBSD.
> >    If the user didn't set the option, print a nice error message telling
> >    them what option to set.
> > 
> > 2. If O_DIRECT isn't actually required to open the file, but you only
> >    need to make sure to use the right alignment, modify
> >    raw_probe_alignment() so that it returns an alignment > 1 even for
> >    non-O_DIRECT files on FreeBSD if they are character devices.
> > 
> > I don't know FreeBSD good enough, but if it fulfills the requirements,
> > option 2 is certainly the more elegant one.
> 
> Thanks for the review. O_DIRECT is not required to open the file, so
> option 2 seems sensible.
> 
> I've added a new flag to BDRVRawState that's used to check if underlying
> device needs requests to be aligned. This flag is set by default if
> BDRV_O_NOCACHE is used, or if the OS is FreeBSD and the underlying
> device is a char dev. This new flag is used as a replacement of the
> O_DIRECT and BDRV_O_NOCACHE checks that were used in raw_probe_alignment
> and raw_aio_submit. Does this sound OK?

Yes, this sounds reasonable to me.

Kevin

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-10-21  9:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-20 16:39 [Qemu-devel] [PATCH] block: char devices on FreeBSD are not behind a pager Roger Pau Monne
2014-10-20 17:22 ` Kevin Wolf
2014-10-21  8:14   ` Roger Pau Monné
2014-10-21  9:36     ` Kevin Wolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).