提交 eadc84cc 编写于 作者: F Frederic Weisbecker 提交者: Ingo Molnar

perfcounter: Handle some IO return values

Building perfcounter tools raises the following warnings:

 builtin-record.c: In function ‘atexit_header’:
 builtin-record.c:464: erreur: ignoring return value of ‘pwrite’, declared with attribute warn_unused_result
 builtin-record.c: In function ‘__cmd_record’:
 builtin-record.c:503: erreur: ignoring return value of ‘read’, declared with attribute warn_unused_result

 builtin-report.c: In function ‘__cmd_report’:
 builtin-report.c:1403: erreur: ignoring return value of ‘read’, declared with attribute warn_unused_result

This patch handles these IO return values.
Signed-off-by: NFrederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <1245456100-5477-1-git-send-email-fweisbec@gmail.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 92bf309a
...@@ -461,7 +461,8 @@ static void atexit_header(void) ...@@ -461,7 +461,8 @@ static void atexit_header(void)
{ {
file_header.data_size += bytes_written; file_header.data_size += bytes_written;
pwrite(output, &file_header, sizeof(file_header), 0); if (pwrite(output, &file_header, sizeof(file_header), 0) == -1)
perror("failed to write on file headers");
} }
static int __cmd_record(int argc, const char **argv) static int __cmd_record(int argc, const char **argv)
...@@ -500,7 +501,11 @@ static int __cmd_record(int argc, const char **argv) ...@@ -500,7 +501,11 @@ static int __cmd_record(int argc, const char **argv)
} }
if (!file_new) { if (!file_new) {
read(output, &file_header, sizeof(file_header)); if (read(output, &file_header, sizeof(file_header)) == -1) {
perror("failed to read file headers");
exit(-1);
}
lseek(output, file_header.data_size, SEEK_CUR); lseek(output, file_header.data_size, SEEK_CUR);
} }
......
...@@ -1400,7 +1400,10 @@ static int __cmd_report(void) ...@@ -1400,7 +1400,10 @@ static int __cmd_report(void)
exit(0); exit(0);
} }
read(input, &file_header, sizeof(file_header)); if (read(input, &file_header, sizeof(file_header)) == -1) {
perror("failed to read file headers");
exit(-1);
}
if (sort__has_parent && if (sort__has_parent &&
!(file_header.sample_type & PERF_SAMPLE_CALLCHAIN)) { !(file_header.sample_type & PERF_SAMPLE_CALLCHAIN)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册