Skip to content

Commit

Permalink
perf_counter: tools: Better handle existing data files
Browse files Browse the repository at this point in the history
Provide an argument (-f) to overwrite existing data files.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: John Kacur <jkacur@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Jun 2, 2009
1 parent f70e87d commit 97124d5
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions Documentation/perf_counter/builtin-record.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "util/parse-events.h"
#include "util/string.h"

#include <unistd.h>
#include <sched.h>

#define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
Expand All @@ -26,7 +27,7 @@ static unsigned int realtime_prio = 0;
static int system_wide = 0;
static pid_t target_pid = -1;
static int inherit = 1;
static int nmi = 1;
static int force = 0;

const unsigned int default_count[] = {
1000000,
Expand Down Expand Up @@ -337,7 +338,6 @@ static void open_counters(int cpu, pid_t pid)
hw_event.config = event_id[counter];
hw_event.irq_period = event_count[counter];
hw_event.record_type = PERF_RECORD_IP | PERF_RECORD_TID;
hw_event.nmi = nmi;
hw_event.mmap = track;
hw_event.comm = track;
hw_event.inherit = (cpu < 0) && inherit;
Expand Down Expand Up @@ -387,13 +387,20 @@ static int __cmd_record(int argc, const char **argv)
int i, counter;
pid_t pid;
int ret;
struct stat st;

page_size = sysconf(_SC_PAGE_SIZE);
nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
assert(nr_cpus <= MAX_NR_CPUS);
assert(nr_cpus >= 0);

output = open(output_name, O_CREAT|O_EXCL|O_TRUNC|O_RDWR, S_IRUSR|S_IWUSR);
if (!stat(output_name, &st) && !force) {
fprintf(stderr, "Error, output file: %s exists, use -f to overwrite.\n",
output_name);
exit(-1);
}

output = open(output_name, O_CREAT|O_TRUNC|O_RDWR, S_IRUSR|S_IWUSR);
if (output < 0) {
perror("failed to create output file");
exit(-1);
Expand Down Expand Up @@ -473,6 +480,8 @@ static const struct option options[] = {
"collect data with this RT SCHED_FIFO priority"),
OPT_BOOLEAN('a', "all-cpus", &system_wide,
"system-wide collection from all CPUs"),
OPT_BOOLEAN('f', "force", &force,
"overwrite existing data file"),
OPT_END()
};

Expand Down

0 comments on commit 97124d5

Please sign in to comment.