All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] gitignore: Ignore various generated files
@ 2013-12-13 17:51 Damien Lespiau
  2013-12-13 17:51 ` [PATCH 2/2] intel/test_decode: Allow gen8 to be infered from the batch filenames Damien Lespiau
  2013-12-13 18:03 ` [PATCH 1/2] gitignore: Ignore various generated files Daniel Vetter
  0 siblings, 2 replies; 5+ messages in thread
From: Damien Lespiau @ 2013-12-13 17:51 UTC (permalink / raw)
  To: dri-devel; +Cc: intel-gfx

- *.log/*.trs are generated by make check
- TAGS are generated by make tags
- build-aux, config.h.in~ by autoconf
- *.sw? are temporary files create by vim
- name_from_fd wasn't ignored yet for some reason

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
---
 .gitignore | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 5447f5c..17f6cb6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,10 +9,13 @@ bsd-core/*/machine
 *.ko.cmd
 *.la
 *.lo
+*.log
 *.mod.c
 *.mod.o
 *.o
 *.o.cmd
+*.sw?
+*.trs
 .depend
 .deps
 .libs
@@ -21,13 +24,15 @@ bsd-core/*/machine
 .*install*
 Makefile
 Makefile.in
+TAGS
 aclocal.m4
 autom4te.cache
+build-aux
 bus_if.h
 compile
 config.guess
 config.h
-config.h.in
+config.h.in*
 config.log
 config.status
 config.sub
@@ -82,6 +87,7 @@ tests/setversion
 tests/updatedraw
 tests/modeprint/modeprint
 tests/modetest/modetest
+tests/name_from_fd
 tests/kmstest/kmstest
 tests/vbltest/vbltest
 tests/radeon/radeon_ttm
-- 
1.8.3.1

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

* [PATCH 2/2] intel/test_decode: Allow gen8 to be infered from the batch filenames
  2013-12-13 17:51 [PATCH 1/2] gitignore: Ignore various generated files Damien Lespiau
@ 2013-12-13 17:51 ` Damien Lespiau
  2013-12-13 18:05   ` Daniel Vetter
  2013-12-13 18:03 ` [PATCH 1/2] gitignore: Ignore various generated files Daniel Vetter
  1 sibling, 1 reply; 5+ messages in thread
From: Damien Lespiau @ 2013-12-13 17:51 UTC (permalink / raw)
  To: dri-devel; +Cc: intel-gfx

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
---
 intel/test_decode.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/intel/test_decode.c b/intel/test_decode.c
index 0fcdf3b..b710f34 100644
--- a/intel/test_decode.c
+++ b/intel/test_decode.c
@@ -146,6 +146,7 @@ infer_devid(const char *batch_filename)
 		{ "gen5", PCI_CHIP_ILD_G },
 		{ "gen6", PCI_CHIP_SANDYBRIDGE_GT2 },
 		{ "gen7", PCI_CHIP_IVYBRIDGE_GT2 },
+		{ "gen8", 0x1616 },
 		{ NULL, 0 },
 	};
 	int i;
-- 
1.8.3.1

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

* Re: [PATCH 1/2] gitignore: Ignore various generated files
  2013-12-13 17:51 [PATCH 1/2] gitignore: Ignore various generated files Damien Lespiau
  2013-12-13 17:51 ` [PATCH 2/2] intel/test_decode: Allow gen8 to be infered from the batch filenames Damien Lespiau
@ 2013-12-13 18:03 ` Daniel Vetter
  2013-12-13 18:20   ` Damien Lespiau
  1 sibling, 1 reply; 5+ messages in thread
From: Daniel Vetter @ 2013-12-13 18:03 UTC (permalink / raw)
  To: Damien Lespiau; +Cc: intel-gfx, dri-devel

On Fri, Dec 13, 2013 at 05:51:25PM +0000, Damien Lespiau wrote:
> - *.log/*.trs are generated by make check
> - TAGS are generated by make tags
> - build-aux, config.h.in~ by autoconf
> - *.sw? are temporary files create by vim
> - name_from_fd wasn't ignored yet for some reason
> 
> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>

With *~ added this is Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> ---
>  .gitignore | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/.gitignore b/.gitignore
> index 5447f5c..17f6cb6 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -9,10 +9,13 @@ bsd-core/*/machine
>  *.ko.cmd
>  *.la
>  *.lo
> +*.log
>  *.mod.c
>  *.mod.o
>  *.o
>  *.o.cmd
> +*.sw?
> +*.trs
>  .depend
>  .deps
>  .libs
> @@ -21,13 +24,15 @@ bsd-core/*/machine
>  .*install*
>  Makefile
>  Makefile.in
> +TAGS
>  aclocal.m4
>  autom4te.cache
> +build-aux
>  bus_if.h
>  compile
>  config.guess
>  config.h
> -config.h.in
> +config.h.in*
>  config.log
>  config.status
>  config.sub
> @@ -82,6 +87,7 @@ tests/setversion
>  tests/updatedraw
>  tests/modeprint/modeprint
>  tests/modetest/modetest
> +tests/name_from_fd
>  tests/kmstest/kmstest
>  tests/vbltest/vbltest
>  tests/radeon/radeon_ttm
> -- 
> 1.8.3.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

* Re: [PATCH 2/2] intel/test_decode: Allow gen8 to be infered from the batch filenames
  2013-12-13 17:51 ` [PATCH 2/2] intel/test_decode: Allow gen8 to be infered from the batch filenames Damien Lespiau
@ 2013-12-13 18:05   ` Daniel Vetter
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Vetter @ 2013-12-13 18:05 UTC (permalink / raw)
  To: Damien Lespiau; +Cc: intel-gfx, dri-devel

On Fri, Dec 13, 2013 at 05:51:26PM +0000, Damien Lespiau wrote:
> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
> ---
>  intel/test_decode.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/intel/test_decode.c b/intel/test_decode.c
> index 0fcdf3b..b710f34 100644
> --- a/intel/test_decode.c
> +++ b/intel/test_decode.c
> @@ -146,6 +146,7 @@ infer_devid(const char *batch_filename)
>  		{ "gen5", PCI_CHIP_ILD_G },
>  		{ "gen6", PCI_CHIP_SANDYBRIDGE_GT2 },
>  		{ "gen7", PCI_CHIP_IVYBRIDGE_GT2 },
> +		{ "gen8", 0x1616 },
>  		{ NULL, 0 },

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>  	};
>  	int i;
> -- 
> 1.8.3.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

* Re: [PATCH 1/2] gitignore: Ignore various generated files
  2013-12-13 18:03 ` [PATCH 1/2] gitignore: Ignore various generated files Daniel Vetter
@ 2013-12-13 18:20   ` Damien Lespiau
  0 siblings, 0 replies; 5+ messages in thread
From: Damien Lespiau @ 2013-12-13 18:20 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx, dri-devel

On Fri, Dec 13, 2013 at 07:03:11PM +0100, Daniel Vetter wrote:
> On Fri, Dec 13, 2013 at 05:51:25PM +0000, Damien Lespiau wrote:
> > - *.log/*.trs are generated by make check
> > - TAGS are generated by make tags
> > - build-aux, config.h.in~ by autoconf
> > - *.sw? are temporary files create by vim
> > - name_from_fd wasn't ignored yet for some reason
> > 
> > Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
> 
> With *~ added this is Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>

Pushed the two patches with the *~ addition, thanks for the review.

-- 
Damien

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

end of thread, other threads:[~2013-12-13 18:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-13 17:51 [PATCH 1/2] gitignore: Ignore various generated files Damien Lespiau
2013-12-13 17:51 ` [PATCH 2/2] intel/test_decode: Allow gen8 to be infered from the batch filenames Damien Lespiau
2013-12-13 18:05   ` Daniel Vetter
2013-12-13 18:03 ` [PATCH 1/2] gitignore: Ignore various generated files Daniel Vetter
2013-12-13 18:20   ` Damien Lespiau

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.