Skip to content

Commit

Permalink
perf tools: Don't die() in perf_header__new()
Browse files Browse the repository at this point in the history
Propagate the errors instead, the users are the ones to decide
what to do if a library call fails.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <1258427892-16312-3-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Arnaldo Carvalho de Melo authored and Ingo Molnar committed Nov 17, 2009
1 parent 5875412 commit a9a70bb
Showing 2 changed files with 16 additions and 7 deletions.
5 changes: 5 additions & 0 deletions tools/perf/builtin-record.c
Original file line number Diff line number Diff line change
@@ -439,6 +439,11 @@ static int __cmd_record(int argc, const char **argv)
else
header = perf_header__new();

if (header == NULL) {
pr_err("Not enough memory for reading perf file header\n");
return -1;
}

if (raw_samples) {
perf_header__set_feat(header, HEADER_TRACE_INFO);
} else {
18 changes: 11 additions & 7 deletions tools/perf/util/header.c
Original file line number Diff line number Diff line change
@@ -65,14 +65,15 @@ struct perf_header *perf_header__new(void)
{
struct perf_header *self = calloc(sizeof(*self), 1);

if (!self)
die("nomem");

self->size = 1;
self->attr = malloc(sizeof(void *));
if (self != NULL) {
self->size = 1;
self->attr = malloc(sizeof(void *));

if (!self->attr)
die("nomem");
if (self->attr == NULL) {
free(self);
self = NULL;
}
}

return self;
}
@@ -426,6 +427,9 @@ struct perf_header *perf_header__read(int fd)
u64 f_id;
int nr_attrs, nr_ids, i, j;

if (self == NULL)
die("nomem");

if (perf_file_header__read(&f_header, self, fd) < 0)
die("incompatible file format");

0 comments on commit a9a70bb

Please sign in to comment.