qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] .gitignore: Ignore storage-daemon files
@ 2020-06-12 10:58 Roman Bolshakov
  2020-06-12 13:30 ` Philippe Mathieu-Daudé
  2020-06-16 15:01 ` Kevin Wolf
  0 siblings, 2 replies; 3+ messages in thread
From: Roman Bolshakov @ 2020-06-12 10:58 UTC (permalink / raw)
  To: qemu-trivial; +Cc: Kevin Wolf, Roman Bolshakov, open list:All patches CC here

The files are generated.

Fixes: 2af282ec51a ("qemu-storage-daemon: Add --monitor option")
Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
---
 .gitignore | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/.gitignore b/.gitignore
index 0c5af83aa7..90acb4347d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -34,18 +34,18 @@
 /qapi/qapi-builtin-types.[ch]
 /qapi/qapi-builtin-visit.[ch]
 /qapi/qapi-commands-*.[ch]
-/qapi/qapi-commands.[ch]
-/qapi/qapi-emit-events.[ch]
+**/qapi/qapi-commands.[ch]
+**/qapi/qapi-emit-events.[ch]
 /qapi/qapi-events-*.[ch]
-/qapi/qapi-events.[ch]
-/qapi/qapi-init-commands.[ch]
-/qapi/qapi-introspect.[ch]
+**/qapi/qapi-events.[ch]
+**/qapi/qapi-init-commands.[ch]
+**/qapi/qapi-introspect.[ch]
 /qapi/qapi-types-*.[ch]
-/qapi/qapi-types.[ch]
+**/qapi/qapi-types.[ch]
 /qapi/qapi-visit-*.[ch]
 !/qapi/qapi-visit-core.c
-/qapi/qapi-visit.[ch]
-/qapi/qapi-doc.texi
+**/qapi/qapi-visit.[ch]
+**/qapi/qapi-doc.texi
 /qemu-edid
 /qemu-img
 /qemu-nbd
@@ -59,6 +59,7 @@
 /qemu-keymap
 /qemu-monitor.texi
 /qemu-monitor-info.texi
+/qemu-storage-daemon
 /qemu-version.h
 /qemu-version.h.tmp
 /module_block.h
-- 
2.26.1



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

* Re: [PATCH] .gitignore: Ignore storage-daemon files
  2020-06-12 10:58 [PATCH] .gitignore: Ignore storage-daemon files Roman Bolshakov
@ 2020-06-12 13:30 ` Philippe Mathieu-Daudé
  2020-06-16 15:01 ` Kevin Wolf
  1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-06-12 13:30 UTC (permalink / raw)
  To: Roman Bolshakov, Markus Armbruster
  Cc: qemu-trivial, Kevin Wolf, open list:All patches CC here

+Markus (qapi)

On 6/12/20 12:58 PM, Roman Bolshakov wrote:
> The files are generated.
> 
> Fixes: 2af282ec51a ("qemu-storage-daemon: Add --monitor option")
> Cc: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
> ---
>  .gitignore | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/.gitignore b/.gitignore
> index 0c5af83aa7..90acb4347d 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -34,18 +34,18 @@
>  /qapi/qapi-builtin-types.[ch]
>  /qapi/qapi-builtin-visit.[ch]
>  /qapi/qapi-commands-*.[ch]
> -/qapi/qapi-commands.[ch]
> -/qapi/qapi-emit-events.[ch]
> +**/qapi/qapi-commands.[ch]
> +**/qapi/qapi-emit-events.[ch]
>  /qapi/qapi-events-*.[ch]
> -/qapi/qapi-events.[ch]
> -/qapi/qapi-init-commands.[ch]
> -/qapi/qapi-introspect.[ch]
> +**/qapi/qapi-events.[ch]
> +**/qapi/qapi-init-commands.[ch]
> +**/qapi/qapi-introspect.[ch]
>  /qapi/qapi-types-*.[ch]
> -/qapi/qapi-types.[ch]
> +**/qapi/qapi-types.[ch]
>  /qapi/qapi-visit-*.[ch]
>  !/qapi/qapi-visit-core.c
> -/qapi/qapi-visit.[ch]
> -/qapi/qapi-doc.texi
> +**/qapi/qapi-visit.[ch]
> +**/qapi/qapi-doc.texi
>  /qemu-edid
>  /qemu-img
>  /qemu-nbd
> @@ -59,6 +59,7 @@
>  /qemu-keymap
>  /qemu-monitor.texi
>  /qemu-monitor-info.texi
> +/qemu-storage-daemon
>  /qemu-version.h
>  /qemu-version.h.tmp
>  /module_block.h
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>



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

* Re: [PATCH] .gitignore: Ignore storage-daemon files
  2020-06-12 10:58 [PATCH] .gitignore: Ignore storage-daemon files Roman Bolshakov
  2020-06-12 13:30 ` Philippe Mathieu-Daudé
@ 2020-06-16 15:01 ` Kevin Wolf
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2020-06-16 15:01 UTC (permalink / raw)
  To: Roman Bolshakov; +Cc: qemu-trivial, open list:All patches CC here

Am 12.06.2020 um 12:58 hat Roman Bolshakov geschrieben:
> The files are generated.
> 
> Fixes: 2af282ec51a ("qemu-storage-daemon: Add --monitor option")
> Cc: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>

Thanks, applied to the block branch.

Kevin



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

end of thread, other threads:[~2020-06-16 15:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-12 10:58 [PATCH] .gitignore: Ignore storage-daemon files Roman Bolshakov
2020-06-12 13:30 ` Philippe Mathieu-Daudé
2020-06-16 15:01 ` 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).