diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-05 11:57:37 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-05 11:57:37 -0700 | 
| commit | 39c12be86aaedd2f81bfb2236aca5333a2334dea (patch) | |
| tree | ba3edacaa130bc875813674ed960b100c9158e64 /tools/perf | |
| parent | 231d0aefd88e94129cb8fb84794f9bb788c6366e (diff) | |
| parent | 0f940cb7d970f4fd569bb5f9f49774422f2ccbee (diff) | |
Merge branch 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
  perf trace scripting: Fix extern struct definitions
  perf ui hist browser: Fix segfault on 'a' for annotate
  perf tools: Fix build breakage
  perf, x86: Handle in flight NMIs on P4 platform
  oprofile, ARM: Release resources on failure
  oprofile: Add Support for Intel CPU Family 6 / Model 29
Diffstat (limited to 'tools/perf')
| -rw-r--r-- | tools/perf/Makefile | 2 | ||||
| -rw-r--r-- | tools/perf/util/trace-event-scripting.c | 4 | ||||
| -rw-r--r-- | tools/perf/util/ui/browsers/hists.c | 2 | 
3 files changed, 4 insertions, 4 deletions
| diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 4f1fa77c1feb..1950e19af1cf 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile @@ -1017,7 +1017,7 @@ builtin-revert.o wt-status.o: wt-status.h  # we compile into subdirectories. if the target directory is not the source directory, they might not exists. So  # we depend the various files onto their directories.  DIRECTORY_DEPS = $(LIB_OBJS) $(BUILTIN_OBJS) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h -$(DIRECTORY_DEPS): $(sort $(dir $(DIRECTORY_DEPS))) +$(DIRECTORY_DEPS): | $(sort $(dir $(DIRECTORY_DEPS)))  # In the second step, we make a rule to actually create these directories  $(sort $(dir $(DIRECTORY_DEPS))):  	$(QUIET_MKDIR)$(MKDIR) -p $@ 2>/dev/null diff --git a/tools/perf/util/trace-event-scripting.c b/tools/perf/util/trace-event-scripting.c index 7ea983acfaea..f7af2fca965d 100644 --- a/tools/perf/util/trace-event-scripting.c +++ b/tools/perf/util/trace-event-scripting.c @@ -97,7 +97,7 @@ void setup_python_scripting(void)  	register_python_scripting(&python_scripting_unsupported_ops);  }  #else -struct scripting_ops python_scripting_ops; +extern struct scripting_ops python_scripting_ops;  void setup_python_scripting(void)  { @@ -158,7 +158,7 @@ void setup_perl_scripting(void)  	register_perl_scripting(&perl_scripting_unsupported_ops);  }  #else -struct scripting_ops perl_scripting_ops; +extern struct scripting_ops perl_scripting_ops;  void setup_perl_scripting(void)  { diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c index dafdf6775d77..6866aa4c41e0 100644 --- a/tools/perf/util/ui/browsers/hists.c +++ b/tools/perf/util/ui/browsers/hists.c @@ -773,7 +773,7 @@ int hists__browse(struct hists *self, const char *helpline, const char *ev_name)  			switch (key) {  			case 'a': -				if (browser->selection->map == NULL && +				if (browser->selection->map == NULL ||  				    browser->selection->map->dso->annotate_warned)  					continue;  				goto do_annotate; | 
