qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] .gitignore: ignore some vhost-user* related files
@ 2019-07-12 14:41 Michal Privoznik
  2019-07-12 14:47 ` Marc-André Lureau
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Michal Privoznik @ 2019-07-12 14:41 UTC (permalink / raw)
  To: qemu-trivial; +Cc: marcandre.lureau, qemu-devel, laurent

Commit d52c454aadc creates
'/contrib/vhost-user-gpu/50-qemu-gpu.json' and '/vhost-user-gpu'
and commit 06914c97d3a creates '/vhost-user-input' neither of
which is ignored by git.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
---
 .gitignore | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitignore b/.gitignore
index fd6e6c38c7..e9bbc006d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -65,6 +65,8 @@
 /scsi/qemu-pr-helper
 /vhost-user-scsi
 /vhost-user-blk
+/vhost-user-gpu
+/vhost-user-input
 /fsdev/virtfs-proxy-helper
 *.tmp
 *.[1-9]
@@ -131,6 +133,7 @@
 /docs/interop/qemu-qmp-ref.info*
 /docs/interop/qemu-qmp-ref.txt
 /docs/version.texi
+/contrib/vhost-user-gpu/50-qemu-gpu.json
 *.tps
 .stgit-*
 .git-submodule-status
-- 
2.21.0



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

* Re: [Qemu-devel] [PATCH] .gitignore: ignore some vhost-user* related files
  2019-07-12 14:41 [Qemu-devel] [PATCH] .gitignore: ignore some vhost-user* related files Michal Privoznik
@ 2019-07-12 14:47 ` Marc-André Lureau
  2019-07-12 17:00 ` Philippe Mathieu-Daudé
  2019-08-21  8:41 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier
  2 siblings, 0 replies; 4+ messages in thread
From: Marc-André Lureau @ 2019-07-12 14:47 UTC (permalink / raw)
  To: Michal Privoznik; +Cc: qemu trival, QEMU, Laurent Vivier

On Fri, Jul 12, 2019 at 6:42 PM Michal Privoznik <mprivozn@redhat.com> wrote:
>
> Commit d52c454aadc creates
> '/contrib/vhost-user-gpu/50-qemu-gpu.json' and '/vhost-user-gpu'
> and commit 06914c97d3a creates '/vhost-user-input' neither of
> which is ignored by git.
>
> Signed-off-by: Michal Privoznik <mprivozn@redhat.com>

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>

> ---
>  .gitignore | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/.gitignore b/.gitignore
> index fd6e6c38c7..e9bbc006d3 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -65,6 +65,8 @@
>  /scsi/qemu-pr-helper
>  /vhost-user-scsi
>  /vhost-user-blk
> +/vhost-user-gpu
> +/vhost-user-input
>  /fsdev/virtfs-proxy-helper
>  *.tmp
>  *.[1-9]
> @@ -131,6 +133,7 @@
>  /docs/interop/qemu-qmp-ref.info*
>  /docs/interop/qemu-qmp-ref.txt
>  /docs/version.texi
> +/contrib/vhost-user-gpu/50-qemu-gpu.json
>  *.tps
>  .stgit-*
>  .git-submodule-status
> --
> 2.21.0
>
>


-- 
Marc-André Lureau


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

* Re: [Qemu-devel] [PATCH] .gitignore: ignore some vhost-user* related files
  2019-07-12 14:41 [Qemu-devel] [PATCH] .gitignore: ignore some vhost-user* related files Michal Privoznik
  2019-07-12 14:47 ` Marc-André Lureau
@ 2019-07-12 17:00 ` Philippe Mathieu-Daudé
  2019-08-21  8:41 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-07-12 17:00 UTC (permalink / raw)
  To: Michal Privoznik, qemu-trivial; +Cc: marcandre.lureau, qemu-devel, laurent

On 7/12/19 4:41 PM, Michal Privoznik wrote:
> Commit d52c454aadc creates
> '/contrib/vhost-user-gpu/50-qemu-gpu.json' and '/vhost-user-gpu'
> and commit 06914c97d3a creates '/vhost-user-input' neither of
> which is ignored by git.
> 
> Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
> ---
>  .gitignore | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/.gitignore b/.gitignore
> index fd6e6c38c7..e9bbc006d3 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -65,6 +65,8 @@
>  /scsi/qemu-pr-helper
>  /vhost-user-scsi
>  /vhost-user-blk
> +/vhost-user-gpu
> +/vhost-user-input
>  /fsdev/virtfs-proxy-helper
>  *.tmp
>  *.[1-9]
> @@ -131,6 +133,7 @@
>  /docs/interop/qemu-qmp-ref.info*
>  /docs/interop/qemu-qmp-ref.txt
>  /docs/version.texi
> +/contrib/vhost-user-gpu/50-qemu-gpu.json
>  *.tps
>  .stgit-*
>  .git-submodule-status
> 

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


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

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] .gitignore: ignore some vhost-user* related files
  2019-07-12 14:41 [Qemu-devel] [PATCH] .gitignore: ignore some vhost-user* related files Michal Privoznik
  2019-07-12 14:47 ` Marc-André Lureau
  2019-07-12 17:00 ` Philippe Mathieu-Daudé
@ 2019-08-21  8:41 ` Laurent Vivier
  2 siblings, 0 replies; 4+ messages in thread
From: Laurent Vivier @ 2019-08-21  8:41 UTC (permalink / raw)
  To: Michal Privoznik, qemu-trivial; +Cc: marcandre.lureau, qemu-devel

Le 12/07/2019 à 16:41, Michal Privoznik a écrit :
> Commit d52c454aadc creates
> '/contrib/vhost-user-gpu/50-qemu-gpu.json' and '/vhost-user-gpu'
> and commit 06914c97d3a creates '/vhost-user-input' neither of
> which is ignored by git.
> 
> Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
> ---
>  .gitignore | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/.gitignore b/.gitignore
> index fd6e6c38c7..e9bbc006d3 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -65,6 +65,8 @@
>  /scsi/qemu-pr-helper
>  /vhost-user-scsi
>  /vhost-user-blk
> +/vhost-user-gpu
> +/vhost-user-input
>  /fsdev/virtfs-proxy-helper
>  *.tmp
>  *.[1-9]
> @@ -131,6 +133,7 @@
>  /docs/interop/qemu-qmp-ref.info*
>  /docs/interop/qemu-qmp-ref.txt
>  /docs/version.texi
> +/contrib/vhost-user-gpu/50-qemu-gpu.json
>  *.tps
>  .stgit-*
>  .git-submodule-status
> 

Applied to my trivial-patches branch.

Thanks,
Laurent


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

end of thread, other threads:[~2019-08-21  8:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-12 14:41 [Qemu-devel] [PATCH] .gitignore: ignore some vhost-user* related files Michal Privoznik
2019-07-12 14:47 ` Marc-André Lureau
2019-07-12 17:00 ` Philippe Mathieu-Daudé
2019-08-21  8:41 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier

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).