All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level
@ 2015-11-09  7:09 Peter Lieven
  2015-11-10  2:50 ` Fam Zheng
  2015-11-13  9:45 ` Stefan Hajnoczi
  0 siblings, 2 replies; 10+ messages in thread
From: Peter Lieven @ 2015-11-09  7:09 UTC (permalink / raw)
  To: qemu-devel, qemu-block; +Cc: kwolf, famz, stefanha, Peter Lieven, mreitz

recent libnfs versions support logging debug messages. Add
support for it in qemu through an URL parameter.

Example:
 qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2

Signed-off-by: Peter Lieven <pl@kamp.de>
---
v4->v5: add a comment in the code why we limit the debug level [Stefan]
v3->v4: revert to the initial version, but limit max debug level
v2->v3: use a per-drive option instead of a global one. [Stefan]
v1->v2: reworked patch to accept the debug level as a cmdline
        parameter instead of an URI parameter [Stefan]

 block/nfs.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/block/nfs.c b/block/nfs.c
index fd79f89..ab1e267 100644
--- a/block/nfs.c
+++ b/block/nfs.c
@@ -36,6 +36,7 @@
 #include <nfsc/libnfs.h>
 
 #define QEMU_NFS_MAX_READAHEAD_SIZE 1048576
+#define QEMU_NFS_MAX_DEBUG_LEVEL 2
 
 typedef struct NFSClient {
     struct nfs_context *context;
@@ -334,6 +335,17 @@ static int64_t nfs_client_open(NFSClient *client, const char *filename,
             }
             nfs_set_readahead(client->context, val);
 #endif
+#ifdef LIBNFS_FEATURE_DEBUG
+        } else if (!strcmp(qp->p[i].name, "debug")) {
+            /* limit the maximum debug level to avoid potential flooding
+             * of our log files. */
+            if (val > QEMU_NFS_MAX_DEBUG_LEVEL) {
+                error_report("NFS Warning: Limiting NFS debug level"
+                             " to %d", QEMU_NFS_MAX_DEBUG_LEVEL);
+                val = QEMU_NFS_MAX_DEBUG_LEVEL;
+            }
+            nfs_set_debug(client->context, val);
+#endif
         } else {
             error_setg(errp, "Unknown NFS parameter name: %s",
                        qp->p[i].name);
-- 
1.9.1

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

* Re: [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-09  7:09 [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level Peter Lieven
@ 2015-11-10  2:50 ` Fam Zheng
  2015-11-13  9:45 ` Stefan Hajnoczi
  1 sibling, 0 replies; 10+ messages in thread
From: Fam Zheng @ 2015-11-10  2:50 UTC (permalink / raw)
  To: Peter Lieven; +Cc: kwolf, qemu-block, stefanha, qemu-devel, mreitz

On Mon, 11/09 08:09, Peter Lieven wrote:
> recent libnfs versions support logging debug messages. Add
> support for it in qemu through an URL parameter.
> 
> Example:
>  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
> 
> Signed-off-by: Peter Lieven <pl@kamp.de>
> ---
> v4->v5: add a comment in the code why we limit the debug level [Stefan]
> v3->v4: revert to the initial version, but limit max debug level
> v2->v3: use a per-drive option instead of a global one. [Stefan]
> v1->v2: reworked patch to accept the debug level as a cmdline
>         parameter instead of an URI parameter [Stefan]
> 
>  block/nfs.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/block/nfs.c b/block/nfs.c
> index fd79f89..ab1e267 100644
> --- a/block/nfs.c
> +++ b/block/nfs.c
> @@ -36,6 +36,7 @@
>  #include <nfsc/libnfs.h>
>  
>  #define QEMU_NFS_MAX_READAHEAD_SIZE 1048576
> +#define QEMU_NFS_MAX_DEBUG_LEVEL 2
>  
>  typedef struct NFSClient {
>      struct nfs_context *context;
> @@ -334,6 +335,17 @@ static int64_t nfs_client_open(NFSClient *client, const char *filename,
>              }
>              nfs_set_readahead(client->context, val);
>  #endif
> +#ifdef LIBNFS_FEATURE_DEBUG
> +        } else if (!strcmp(qp->p[i].name, "debug")) {
> +            /* limit the maximum debug level to avoid potential flooding
> +             * of our log files. */
> +            if (val > QEMU_NFS_MAX_DEBUG_LEVEL) {
> +                error_report("NFS Warning: Limiting NFS debug level"
> +                             " to %d", QEMU_NFS_MAX_DEBUG_LEVEL);
> +                val = QEMU_NFS_MAX_DEBUG_LEVEL;
> +            }
> +            nfs_set_debug(client->context, val);
> +#endif

It would be slightly nicer to do:

        } else if (!strcmp(qp->p[i].name, "debug")) {
#ifdef LIBNFS_FEATURE_DEBUG
            /* limit the maximum debug level to avoid potential flooding
             * of our log files. */
            if (val > QEMU_NFS_MAX_DEBUG_LEVEL) {
                error_report("NFS Warning: Limiting NFS debug level"
                             " to %d", QEMU_NFS_MAX_DEBUG_LEVEL);
                val = QEMU_NFS_MAX_DEBUG_LEVEL;
            }
            nfs_set_debug(client->context, val);
#else
            error_report("Specifying debug level is only supported by libnfs"
                         " version >= XXX");
#endif

So that you know which one out of QEMU and libnfs to upgrade when the option is
refused. :)

But it's your call. Either way:

Reviewed-by: Fam Zheng <famz@redhat.com>

>          } else {
>              error_setg(errp, "Unknown NFS parameter name: %s",
>                         qp->p[i].name);
> -- 
> 1.9.1
> 

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

* Re: [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-09  7:09 [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level Peter Lieven
  2015-11-10  2:50 ` Fam Zheng
@ 2015-11-13  9:45 ` Stefan Hajnoczi
  2015-11-13  9:52   ` Peter Lieven
                     ` (2 more replies)
  1 sibling, 3 replies; 10+ messages in thread
From: Stefan Hajnoczi @ 2015-11-13  9:45 UTC (permalink / raw)
  To: Peter Lieven; +Cc: kwolf, famz, qemu-block, qemu-devel, mreitz

[-- Attachment #1: Type: text/plain, Size: 1091 bytes --]

On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
> recent libnfs versions support logging debug messages. Add
> support for it in qemu through an URL parameter.
> 
> Example:
>  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
> 
> Signed-off-by: Peter Lieven <pl@kamp.de>
> ---
> v4->v5: add a comment in the code why we limit the debug level [Stefan]
> v3->v4: revert to the initial version, but limit max debug level
> v2->v3: use a per-drive option instead of a global one. [Stefan]
> v1->v2: reworked patch to accept the debug level as a cmdline
>         parameter instead of an URI parameter [Stefan]
> 
>  block/nfs.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)

Hi Peter,
Please use my official maintainer email address <stefanha@redhat.com>
when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
hard freeze deadline.

Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
patch didn't make it.  My block-next branch will be opening on Monday
and I'll merge this patch there for QEMU 2.6.

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-13  9:45 ` Stefan Hajnoczi
@ 2015-11-13  9:52   ` Peter Lieven
  2015-11-16  3:25     ` Stefan Hajnoczi
  2015-11-13 18:19   ` [Qemu-devel] [Qemu-block] " Jeff Cody
  2016-01-11  8:51   ` [Qemu-devel] " Peter Lieven
  2 siblings, 1 reply; 10+ messages in thread
From: Peter Lieven @ 2015-11-13  9:52 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: kwolf, famz, qemu-block, qemu-devel, mreitz

Am 13.11.2015 um 10:45 schrieb Stefan Hajnoczi:
> On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
>> recent libnfs versions support logging debug messages. Add
>> support for it in qemu through an URL parameter.
>>
>> Example:
>>  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
>>
>> Signed-off-by: Peter Lieven <pl@kamp.de>
>> ---
>> v4->v5: add a comment in the code why we limit the debug level [Stefan]
>> v3->v4: revert to the initial version, but limit max debug level
>> v2->v3: use a per-drive option instead of a global one. [Stefan]
>> v1->v2: reworked patch to accept the debug level as a cmdline
>>         parameter instead of an URI parameter [Stefan]
>>
>>  block/nfs.c | 12 ++++++++++++
>>  1 file changed, 12 insertions(+)
> Hi Peter,
> Please use my official maintainer email address <stefanha@redhat.com>
> when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
> hard freeze deadline.

Okay. I think I used that email because you replayed to earlier versions
of this Patch from your Gmail address.

>
> Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
> patch didn't make it.  My block-next branch will be opening on Monday
> and I'll merge this patch there for QEMU 2.6.

Thats not critical in this case. I think same applies for the ATAPI stuff
we worked on? There you used also your GMail account. Or can this
be treated as a bugfix?

Peter

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

* Re: [Qemu-devel] [Qemu-block] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-13  9:45 ` Stefan Hajnoczi
  2015-11-13  9:52   ` Peter Lieven
@ 2015-11-13 18:19   ` Jeff Cody
  2015-11-16  3:26     ` Stefan Hajnoczi
  2016-01-11  8:51   ` [Qemu-devel] " Peter Lieven
  2 siblings, 1 reply; 10+ messages in thread
From: Jeff Cody @ 2015-11-13 18:19 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: kwolf, famz, qemu-block, Peter Lieven, qemu-devel, mreitz

On Fri, Nov 13, 2015 at 05:45:09PM +0800, Stefan Hajnoczi wrote:
> On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
> > recent libnfs versions support logging debug messages. Add
> > support for it in qemu through an URL parameter.
> > 
> > Example:
> >  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
> > 
> > Signed-off-by: Peter Lieven <pl@kamp.de>
> > ---
> > v4->v5: add a comment in the code why we limit the debug level [Stefan]
> > v3->v4: revert to the initial version, but limit max debug level
> > v2->v3: use a per-drive option instead of a global one. [Stefan]
> > v1->v2: reworked patch to accept the debug level as a cmdline
> >         parameter instead of an URI parameter [Stefan]
> > 
> >  block/nfs.c | 12 ++++++++++++
> >  1 file changed, 12 insertions(+)
> 
> Hi Peter,
> Please use my official maintainer email address <stefanha@redhat.com>
> when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
> hard freeze deadline.
> 
> Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
> patch didn't make it.  My block-next branch will be opening on Monday
> and I'll merge this patch there for QEMU 2.6.
>

Actually, this should go in through my branch, right?  I didn't see it
before the hard freeze either (I was not on the cc list).  If you want
to queue it that is fine, otherwise I'll add it to my 2.6 queue.

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

* Re: [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-13  9:52   ` Peter Lieven
@ 2015-11-16  3:25     ` Stefan Hajnoczi
  2015-11-16 16:27       ` John Snow
  0 siblings, 1 reply; 10+ messages in thread
From: Stefan Hajnoczi @ 2015-11-16  3:25 UTC (permalink / raw)
  To: Peter Lieven; +Cc: kwolf, famz, qemu-block, jsnow, qemu-devel, mreitz

[-- Attachment #1: Type: text/plain, Size: 1715 bytes --]

On Fri, Nov 13, 2015 at 10:52:49AM +0100, Peter Lieven wrote:
> Am 13.11.2015 um 10:45 schrieb Stefan Hajnoczi:
> > On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
> >> recent libnfs versions support logging debug messages. Add
> >> support for it in qemu through an URL parameter.
> >>
> >> Example:
> >>  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
> >>
> >> Signed-off-by: Peter Lieven <pl@kamp.de>
> >> ---
> >> v4->v5: add a comment in the code why we limit the debug level [Stefan]
> >> v3->v4: revert to the initial version, but limit max debug level
> >> v2->v3: use a per-drive option instead of a global one. [Stefan]
> >> v1->v2: reworked patch to accept the debug level as a cmdline
> >>         parameter instead of an URI parameter [Stefan]
> >>
> >>  block/nfs.c | 12 ++++++++++++
> >>  1 file changed, 12 insertions(+)
> > Hi Peter,
> > Please use my official maintainer email address <stefanha@redhat.com>
> > when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
> > hard freeze deadline.
> 
> Okay. I think I used that email because you replayed to earlier versions
> of this Patch from your Gmail address.
> 
> >
> > Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
> > patch didn't make it.  My block-next branch will be opening on Monday
> > and I'll merge this patch there for QEMU 2.6.
> 
> Thats not critical in this case. I think same applies for the ATAPI stuff
> we worked on? There you used also your GMail account. Or can this
> be treated as a bugfix?

The ATAPI patches go through John Snow.  It's up to him whether they are
considered a bug fix suitable for 2.5 or too risky.

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [Qemu-devel] [Qemu-block] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-13 18:19   ` [Qemu-devel] [Qemu-block] " Jeff Cody
@ 2015-11-16  3:26     ` Stefan Hajnoczi
  0 siblings, 0 replies; 10+ messages in thread
From: Stefan Hajnoczi @ 2015-11-16  3:26 UTC (permalink / raw)
  To: Jeff Cody; +Cc: kwolf, famz, qemu-block, Peter Lieven, qemu-devel, mreitz

[-- Attachment #1: Type: text/plain, Size: 1877 bytes --]

On Fri, Nov 13, 2015 at 01:19:55PM -0500, Jeff Cody wrote:
> On Fri, Nov 13, 2015 at 05:45:09PM +0800, Stefan Hajnoczi wrote:
> > On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
> > > recent libnfs versions support logging debug messages. Add
> > > support for it in qemu through an URL parameter.
> > > 
> > > Example:
> > >  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
> > > 
> > > Signed-off-by: Peter Lieven <pl@kamp.de>
> > > ---
> > > v4->v5: add a comment in the code why we limit the debug level [Stefan]
> > > v3->v4: revert to the initial version, but limit max debug level
> > > v2->v3: use a per-drive option instead of a global one. [Stefan]
> > > v1->v2: reworked patch to accept the debug level as a cmdline
> > >         parameter instead of an URI parameter [Stefan]
> > > 
> > >  block/nfs.c | 12 ++++++++++++
> > >  1 file changed, 12 insertions(+)
> > 
> > Hi Peter,
> > Please use my official maintainer email address <stefanha@redhat.com>
> > when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
> > hard freeze deadline.
> > 
> > Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
> > patch didn't make it.  My block-next branch will be opening on Monday
> > and I'll merge this patch there for QEMU 2.6.
> >
> 
> Actually, this should go in through my branch, right?  I didn't see it
> before the hard freeze either (I was not on the cc list).  If you want
> to queue it that is fine, otherwise I'll add it to my 2.6 queue.

Yes:

$ scripts/get_maintainer.pl -f block/nfs.c
Jeff Cody <jcody@redhat.com> (maintainer:NFS)
Peter Lieven <pl@kamp.de> (maintainer:NFS)
Kevin Wolf <kwolf@redhat.com> (supporter:Block layer core)
qemu-block@nongnu.org (open list:NFS)

I've been involved with the review of this series for a while and
overlooked it.

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-16  3:25     ` Stefan Hajnoczi
@ 2015-11-16 16:27       ` John Snow
  0 siblings, 0 replies; 10+ messages in thread
From: John Snow @ 2015-11-16 16:27 UTC (permalink / raw)
  To: Stefan Hajnoczi, Peter Lieven; +Cc: kwolf, famz, qemu-block, qemu-devel, mreitz



On 11/15/2015 10:25 PM, Stefan Hajnoczi wrote:
> On Fri, Nov 13, 2015 at 10:52:49AM +0100, Peter Lieven wrote:
>> Am 13.11.2015 um 10:45 schrieb Stefan Hajnoczi:
>>> On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
>>>> recent libnfs versions support logging debug messages. Add
>>>> support for it in qemu through an URL parameter.
>>>>
>>>> Example:
>>>>  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
>>>>
>>>> Signed-off-by: Peter Lieven <pl@kamp.de>
>>>> ---
>>>> v4->v5: add a comment in the code why we limit the debug level [Stefan]
>>>> v3->v4: revert to the initial version, but limit max debug level
>>>> v2->v3: use a per-drive option instead of a global one. [Stefan]
>>>> v1->v2: reworked patch to accept the debug level as a cmdline
>>>>         parameter instead of an URI parameter [Stefan]
>>>>
>>>>  block/nfs.c | 12 ++++++++++++
>>>>  1 file changed, 12 insertions(+)
>>> Hi Peter,
>>> Please use my official maintainer email address <stefanha@redhat.com>
>>> when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
>>> hard freeze deadline.
>>
>> Okay. I think I used that email because you replayed to earlier versions
>> of this Patch from your Gmail address.
>>
>>>
>>> Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
>>> patch didn't make it.  My block-next branch will be opening on Monday
>>> and I'll merge this patch there for QEMU 2.6.
>>
>> Thats not critical in this case. I think same applies for the ATAPI stuff
>> we worked on? There you used also your GMail account. Or can this
>> be treated as a bugfix?
> 
> The ATAPI patches go through John Snow.  It's up to him whether they are
> considered a bug fix suitable for 2.5 or too risky.
> 
> Stefan
> 

I've tested them pretty thoroughly; I think they're safe (ATAPI-wise)
provided the buffered DMA helpers look sane (They look sane to me.) The
modifications to the giant atapi-return-code blob are well understood at
this point and are definitely fine.

--js

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

* Re: [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level
  2015-11-13  9:45 ` Stefan Hajnoczi
  2015-11-13  9:52   ` Peter Lieven
  2015-11-13 18:19   ` [Qemu-devel] [Qemu-block] " Jeff Cody
@ 2016-01-11  8:51   ` Peter Lieven
  2016-01-11 10:47     ` [Qemu-devel] [Qemu-block] " Jeff Cody
  2 siblings, 1 reply; 10+ messages in thread
From: Peter Lieven @ 2016-01-11  8:51 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: kwolf, famz, qemu-block, qemu-devel, mreitz, Stefan Hajnoczi

Am 13.11.2015 um 10:45 schrieb Stefan Hajnoczi:
> On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
>> recent libnfs versions support logging debug messages. Add
>> support for it in qemu through an URL parameter.
>>
>> Example:
>>  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
>>
>> Signed-off-by: Peter Lieven <pl@kamp.de>
>> ---
>> v4->v5: add a comment in the code why we limit the debug level [Stefan]
>> v3->v4: revert to the initial version, but limit max debug level
>> v2->v3: use a per-drive option instead of a global one. [Stefan]
>> v1->v2: reworked patch to accept the debug level as a cmdline
>>         parameter instead of an URI parameter [Stefan]
>>
>>  block/nfs.c | 12 ++++++++++++
>>  1 file changed, 12 insertions(+)
> Hi Peter,
> Please use my official maintainer email address <stefanha@redhat.com>
> when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
> hard freeze deadline.
>
> Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
> patch didn't make it.  My block-next branch will be opening on Monday
> and I'll merge this patch there for QEMU 2.6.

Hi Stefan,

can you pick up this one for 2.6 now?

Thanks,
Peter

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

* Re: [Qemu-devel] [Qemu-block] [PATCH V5] block/nfs: add support for setting debug level
  2016-01-11  8:51   ` [Qemu-devel] " Peter Lieven
@ 2016-01-11 10:47     ` Jeff Cody
  0 siblings, 0 replies; 10+ messages in thread
From: Jeff Cody @ 2016-01-11 10:47 UTC (permalink / raw)
  To: Peter Lieven
  Cc: kwolf, famz, qemu-block, Stefan Hajnoczi, qemu-devel, mreitz,
	Stefan Hajnoczi

On Mon, Jan 11, 2016 at 09:51:39AM +0100, Peter Lieven wrote:
> Am 13.11.2015 um 10:45 schrieb Stefan Hajnoczi:
> > On Mon, Nov 09, 2015 at 08:09:33AM +0100, Peter Lieven wrote:
> >> recent libnfs versions support logging debug messages. Add
> >> support for it in qemu through an URL parameter.
> >>
> >> Example:
> >>  qemu -cdrom nfs://127.0.0.1/iso/my.iso?debug=2
> >>
> >> Signed-off-by: Peter Lieven <pl@kamp.de>
> >> ---
> >> v4->v5: add a comment in the code why we limit the debug level [Stefan]
> >> v3->v4: revert to the initial version, but limit max debug level
> >> v2->v3: use a per-drive option instead of a global one. [Stefan]
> >> v1->v2: reworked patch to accept the debug level as a cmdline
> >>         parameter instead of an URI parameter [Stefan]
> >>
> >>  block/nfs.c | 12 ++++++++++++
> >>  1 file changed, 12 insertions(+)
> > Hi Peter,
> > Please use my official maintainer email address <stefanha@redhat.com>
> > when CCing me.  I didn't spot the mail to GMail until after the QEMU 2.5
> > hard freeze deadline.
> >
> > Only bug fixes are being merged for QEMU 2.5 now.  I'm sorry that this
> > patch didn't make it.  My block-next branch will be opening on Monday
> > and I'll merge this patch there for QEMU 2.6.
> 
> Hi Stefan,
> 
> can you pick up this one for 2.6 now?
> 
> Thanks,
> Peter
> 
>

Hi Peter,

I've applied it to my branch, for 2.6:

git://github.com/codyprime/qemu-kvm-jtc.git block


Thanks,
Jeff

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

end of thread, other threads:[~2016-01-11 10:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-09  7:09 [Qemu-devel] [PATCH V5] block/nfs: add support for setting debug level Peter Lieven
2015-11-10  2:50 ` Fam Zheng
2015-11-13  9:45 ` Stefan Hajnoczi
2015-11-13  9:52   ` Peter Lieven
2015-11-16  3:25     ` Stefan Hajnoczi
2015-11-16 16:27       ` John Snow
2015-11-13 18:19   ` [Qemu-devel] [Qemu-block] " Jeff Cody
2015-11-16  3:26     ` Stefan Hajnoczi
2016-01-11  8:51   ` [Qemu-devel] " Peter Lieven
2016-01-11 10:47     ` [Qemu-devel] [Qemu-block] " Jeff Cody

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.