[PATCH] .gitignore: Ignore storage-daemon files

Roman Bolshakov posted 1 patch 3 years, 10 months ago
Test docker-mingw@fedora passed
Test checkpatch passed
Test asan passed
Test docker-quick@centos7 passed
Test FreeBSD passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200612105830.17082-1-r.bolshakov@yadro.com
.gitignore | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
[PATCH] .gitignore: Ignore storage-daemon files
Posted by Roman Bolshakov 3 years, 10 months ago
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


Re: [PATCH] .gitignore: Ignore storage-daemon files
Posted by Philippe Mathieu-Daudé 3 years, 10 months ago
+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>


Re: [PATCH] .gitignore: Ignore storage-daemon files
Posted by Kevin Wolf 3 years, 10 months ago
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