* [Qemu-devel] [PATCH] MAINTAINERS: Add an entry for the include/hw/virtio/dataplane folder
@ 2016-02-25 10:14 Thomas Huth
2016-02-25 10:23 ` Paolo Bonzini
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Huth @ 2016-02-25 10:14 UTC (permalink / raw)
To: stefanha, qemu-devel; +Cc: mst
dataplane header files belong to virtio-blk, so there should be a
corresponding entry in the MAINTAINERS file.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
MAINTAINERS | 1 +
1 file changed, 1 insertion(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index cda55c4..901a1b2 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -891,6 +891,7 @@ S: Supported
F: hw/block/virtio-blk.c
F: hw/block/dataplane/*
F: hw/virtio/dataplane/*
+F: include/hw/virtio/dataplane/
T: git git://github.com/stefanha/qemu.git block
virtio-ccw
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] MAINTAINERS: Add an entry for the include/hw/virtio/dataplane folder
2016-02-25 10:14 [Qemu-devel] [PATCH] MAINTAINERS: Add an entry for the include/hw/virtio/dataplane folder Thomas Huth
@ 2016-02-25 10:23 ` Paolo Bonzini
2016-02-25 10:27 ` Thomas Huth
0 siblings, 1 reply; 4+ messages in thread
From: Paolo Bonzini @ 2016-02-25 10:23 UTC (permalink / raw)
To: Thomas Huth, stefanha, qemu-devel; +Cc: mst
On 25/02/2016 11:14, Thomas Huth wrote:
> dataplane header files belong to virtio-blk, so there should be a
> corresponding entry in the MAINTAINERS file.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> MAINTAINERS | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index cda55c4..901a1b2 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -891,6 +891,7 @@ S: Supported
> F: hw/block/virtio-blk.c
> F: hw/block/dataplane/*
> F: hw/virtio/dataplane/*
> +F: include/hw/virtio/dataplane/
> T: git git://github.com/stefanha/qemu.git block
>
> virtio-ccw
>
The folder is going away in the next pull request from mst. :)
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] MAINTAINERS: Add an entry for the include/hw/virtio/dataplane folder
2016-02-25 10:23 ` Paolo Bonzini
@ 2016-02-25 10:27 ` Thomas Huth
2016-02-25 10:31 ` Paolo Bonzini
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Huth @ 2016-02-25 10:27 UTC (permalink / raw)
To: Paolo Bonzini, stefanha, qemu-devel; +Cc: mst
On 25.02.2016 11:23, Paolo Bonzini wrote:
>
>
> On 25/02/2016 11:14, Thomas Huth wrote:
>> dataplane header files belong to virtio-blk, so there should be a
>> corresponding entry in the MAINTAINERS file.
>>
>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>> ---
>> MAINTAINERS | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index cda55c4..901a1b2 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -891,6 +891,7 @@ S: Supported
>> F: hw/block/virtio-blk.c
>> F: hw/block/dataplane/*
>> F: hw/virtio/dataplane/*
>> +F: include/hw/virtio/dataplane/
>> T: git git://github.com/stefanha/qemu.git block
>>
>> virtio-ccw
>>
>
> The folder is going away in the next pull request from mst. :)
Ooops, ok, then please simply ignore this patch :-)
Thomas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] MAINTAINERS: Add an entry for the include/hw/virtio/dataplane folder
2016-02-25 10:27 ` Thomas Huth
@ 2016-02-25 10:31 ` Paolo Bonzini
0 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2016-02-25 10:31 UTC (permalink / raw)
To: Thomas Huth, stefanha, qemu-devel; +Cc: mst
On 25/02/2016 11:27, Thomas Huth wrote:
> On 25.02.2016 11:23, Paolo Bonzini wrote:
>>
>>
>> On 25/02/2016 11:14, Thomas Huth wrote:
>>> dataplane header files belong to virtio-blk, so there should be a
>>> corresponding entry in the MAINTAINERS file.
>>>
>>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>>> ---
>>> MAINTAINERS | 1 +
>>> 1 file changed, 1 insertion(+)
>>>
>>> diff --git a/MAINTAINERS b/MAINTAINERS
>>> index cda55c4..901a1b2 100644
>>> --- a/MAINTAINERS
>>> +++ b/MAINTAINERS
>>> @@ -891,6 +891,7 @@ S: Supported
>>> F: hw/block/virtio-blk.c
>>> F: hw/block/dataplane/*
>>> F: hw/virtio/dataplane/*
>>> +F: include/hw/virtio/dataplane/
>>> T: git git://github.com/stefanha/qemu.git block
>>>
>>> virtio-ccw
>>>
>>
>> The folder is going away in the next pull request from mst. :)
>
> Ooops, ok, then please simply ignore this patch :-)
Well, I now notice that I didn't remove hw/virtio/dataplane/* from
MAINTAINERS when killing the code, so here's another thing to fix in the
file.
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-25 10:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-25 10:14 [Qemu-devel] [PATCH] MAINTAINERS: Add an entry for the include/hw/virtio/dataplane folder Thomas Huth
2016-02-25 10:23 ` Paolo Bonzini
2016-02-25 10:27 ` Thomas Huth
2016-02-25 10:31 ` Paolo Bonzini
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).