public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -tip] perf tools: gitignore *.data
@ 2009-07-03  6:32 Jaswinder Singh Rajput
  2009-07-03  6:40 ` Jaswinder Singh Rajput
  0 siblings, 1 reply; 7+ messages in thread
From: Jaswinder Singh Rajput @ 2009-07-03  6:32 UTC (permalink / raw)
  To: Ingo Molnar, Sam Ravnborg, Peter Zijlstra, x86 maintainers, LKML


perf.data made by perf report is a data file and
need to be ignored by git

Added *.data so that perf.data and its friends will be ignored.

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
---
 tools/perf/.gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index d69a759..057deea 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -14,3 +14,4 @@ common-cmds.h
 tags
 TAGS
 cscope*
+*.data
-- 
1.6.2.5




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

* [PATCH -tip] perf tools: gitignore *.data
@ 2009-07-03  6:39 Jaswinder Singh Rajput
  2009-07-03 10:38 ` Ingo Molnar
  0 siblings, 1 reply; 7+ messages in thread
From: Jaswinder Singh Rajput @ 2009-07-03  6:39 UTC (permalink / raw)
  To: Ingo Molnar, Sam Ravnborg, Peter Zijlstra, x86 maintainers, LKML


perf.data made by perf record is a data file and
need to be ignored by git

Added *.data so that perf.data and its friends will be ignored.

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
---
 tools/perf/.gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore
index d69a759..057deea 100644
--- a/tools/perf/.gitignore
+++ b/tools/perf/.gitignore
@@ -14,3 +14,4 @@ common-cmds.h
 tags
 TAGS
 cscope*
+*.data
-- 
1.6.2.5




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

* Re: [PATCH -tip] perf tools: gitignore *.data
  2009-07-03  6:32 Jaswinder Singh Rajput
@ 2009-07-03  6:40 ` Jaswinder Singh Rajput
  0 siblings, 0 replies; 7+ messages in thread
From: Jaswinder Singh Rajput @ 2009-07-03  6:40 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Sam Ravnborg, Peter Zijlstra, x86 maintainers, LKML

On Fri, 2009-07-03 at 12:02 +0530, Jaswinder Singh Rajput wrote:
> perf.data made by perf report is a data file and
> need to be ignored by git
> 

Sorry, due to typo I send new patch.

Thanks,
--
JSR

http://userweb.kernel.org/~jaswinder/



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

* Re: [PATCH -tip] perf tools: gitignore *.data
  2009-07-03  6:39 [PATCH -tip] perf tools: gitignore *.data Jaswinder Singh Rajput
@ 2009-07-03 10:38 ` Ingo Molnar
  2009-07-03 13:09   ` Frederic Weisbecker
  0 siblings, 1 reply; 7+ messages in thread
From: Ingo Molnar @ 2009-07-03 10:38 UTC (permalink / raw)
  To: Jaswinder Singh Rajput, Mike Galbraith, Paul Mackerras,
	Frédéric Weisbecker, Arnaldo Carvalho de Melo,
	Robert Richter, Steven Rostedt, Thomas Gleixner, Anton Blanchard
  Cc: Sam Ravnborg, Peter Zijlstra, x86 maintainers, LKML


* Jaswinder Singh Rajput <jaswinder@kernel.org> wrote:

> perf.data made by perf record is a data file and need to be 
> ignored by git
> 
> Added *.data so that perf.data and its friends will be ignored.

>  cscope*
> +*.data

ok, this is something i wanted to revisit eventually - the 
'perf.data' name sucks a bit - as .data postfix is quite unspecific.

Perhaps trace.perf is a better default name, and all files would 
have the .perf postfix?

I've Cc:-ed a number of folks who might have an opinion about this - 
what would be the best default naming and postfix for perf binary 
files?

	Ingo

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

* Re: [PATCH -tip] perf tools: gitignore *.data
  2009-07-03 10:38 ` Ingo Molnar
@ 2009-07-03 13:09   ` Frederic Weisbecker
  2009-07-03 13:18     ` Ingo Molnar
  0 siblings, 1 reply; 7+ messages in thread
From: Frederic Weisbecker @ 2009-07-03 13:09 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Jaswinder Singh Rajput, Mike Galbraith, Paul Mackerras,
	Arnaldo Carvalho de Melo, Robert Richter, Steven Rostedt,
	Thomas Gleixner, Anton Blanchard, Sam Ravnborg, Peter Zijlstra,
	x86 maintainers, LKML

On Fri, Jul 03, 2009 at 12:38:52PM +0200, Ingo Molnar wrote:
> 
> * Jaswinder Singh Rajput <jaswinder@kernel.org> wrote:
> 
> > perf.data made by perf record is a data file and need to be 
> > ignored by git
> > 
> > Added *.data so that perf.data and its friends will be ignored.
> 
> >  cscope*
> > +*.data
> 
> ok, this is something i wanted to revisit eventually - the 
> 'perf.data' name sucks a bit - as .data postfix is quite unspecific.
> 
> Perhaps trace.perf is a better default name, and all files would 
> have the .perf postfix?
> 
> I've Cc:-ed a number of folks who might have an opinion about this - 
> what would be the best default naming and postfix for perf binary 
> files?
> 
> 	Ingo


perf.bin seems to me adequate as it tells everything (IMHO).


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

* Re: [PATCH -tip] perf tools: gitignore *.data
  2009-07-03 13:09   ` Frederic Weisbecker
@ 2009-07-03 13:18     ` Ingo Molnar
  2009-07-03 14:36       ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 7+ messages in thread
From: Ingo Molnar @ 2009-07-03 13:18 UTC (permalink / raw)
  To: Frederic Weisbecker
  Cc: Jaswinder Singh Rajput, Mike Galbraith, Paul Mackerras,
	Arnaldo Carvalho de Melo, Robert Richter, Steven Rostedt,
	Thomas Gleixner, Anton Blanchard, Sam Ravnborg, Peter Zijlstra,
	x86 maintainers, LKML


* Frederic Weisbecker <fweisbec@gmail.com> wrote:

> On Fri, Jul 03, 2009 at 12:38:52PM +0200, Ingo Molnar wrote:
> > 
> > * Jaswinder Singh Rajput <jaswinder@kernel.org> wrote:
> > 
> > > perf.data made by perf record is a data file and need to be 
> > > ignored by git
> > > 
> > > Added *.data so that perf.data and its friends will be ignored.
> > 
> > >  cscope*
> > > +*.data
> > 
> > ok, this is something i wanted to revisit eventually - the 
> > 'perf.data' name sucks a bit - as .data postfix is quite unspecific.
> > 
> > Perhaps trace.perf is a better default name, and all files would 
> > have the .perf postfix?
> > 
> > I've Cc:-ed a number of folks who might have an opinion about this - 
> > what would be the best default naming and postfix for perf binary 
> > files?
> > 
> > 	Ingo
> 
> perf.bin seems to me adequate as it tells everything (IMHO).

hm, .bin is pretty overloaded as well. It also suggests a 
'executable binary' in a certain way - which it isnt.

	Ingo

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

* Re: [PATCH -tip] perf tools: gitignore *.data
  2009-07-03 13:18     ` Ingo Molnar
@ 2009-07-03 14:36       ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 7+ messages in thread
From: Arnaldo Carvalho de Melo @ 2009-07-03 14:36 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Frederic Weisbecker, Jaswinder Singh Rajput, Mike Galbraith,
	Paul Mackerras, Arnaldo Carvalho de Melo, Robert Richter,
	Steven Rostedt, Thomas Gleixner, Anton Blanchard, Sam Ravnborg,
	Peter Zijlstra, x86 maintainers, LKML

Em Fri, Jul 03, 2009 at 03:18:24PM +0200, Ingo Molnar escreveu:
> 
> * Frederic Weisbecker <fweisbec@gmail.com> wrote:
> 
> > On Fri, Jul 03, 2009 at 12:38:52PM +0200, Ingo Molnar wrote:
> > > 
> > > * Jaswinder Singh Rajput <jaswinder@kernel.org> wrote:
> > > 
> > > > perf.data made by perf record is a data file and need to be 
> > > > ignored by git
> > > > 
> > > > Added *.data so that perf.data and its friends will be ignored.
> > > 
> > > >  cscope*
> > > > +*.data
> > > 
> > > ok, this is something i wanted to revisit eventually - the 
> > > 'perf.data' name sucks a bit - as .data postfix is quite unspecific.
> > > 
> > > Perhaps trace.perf is a better default name, and all files would 
> > > have the .perf postfix?
> > > 
> > > I've Cc:-ed a number of folks who might have an opinion about this - 
> > > what would be the best default naming and postfix for perf binary 
> > > files?
> > > 
> > > 	Ingo
> > 
> > perf.bin seems to me adequate as it tells everything (IMHO).
> 
> hm, .bin is pretty overloaded as well. It also suggests a 
> 'executable binary' in a certain way - which it isnt.

.samples
.perf
.perf_samples
.ps - oops, also used ;-)

- Arnaldo

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

end of thread, other threads:[~2009-07-03 14:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-03  6:39 [PATCH -tip] perf tools: gitignore *.data Jaswinder Singh Rajput
2009-07-03 10:38 ` Ingo Molnar
2009-07-03 13:09   ` Frederic Weisbecker
2009-07-03 13:18     ` Ingo Molnar
2009-07-03 14:36       ` Arnaldo Carvalho de Melo
  -- strict thread matches above, loose matches on Subject: below --
2009-07-03  6:32 Jaswinder Singh Rajput
2009-07-03  6:40 ` Jaswinder Singh Rajput

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox