mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
perf tools: Don't die() in perf_header__new()
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>
This commit is contained in:
parent
5875412152
commit
a9a70bbce7
@ -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 {
|
||||
|
@ -65,14 +65,15 @@ struct perf_header *perf_header__new(void)
|
||||
{
|
||||
struct perf_header *self = calloc(sizeof(*self), 1);
|
||||
|
||||
if (!self)
|
||||
die("nomem");
|
||||
if (self != NULL) {
|
||||
self->size = 1;
|
||||
self->attr = malloc(sizeof(void *));
|
||||
|
||||
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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user