diff options
author | Jiri Olsa <jolsa@redhat.com> | 2013-11-28 05:30:15 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-02 07:22:46 -0500 |
commit | 838d14520267769648fb2fc2a637107a1d102590 (patch) | |
tree | 48f16ca6aa41f01ac852114a224f3715578f1b15 | |
parent | 727ebd544f85285a223ecc6a2a57ef90202cdc7b (diff) |
perf tools: Fine tune readn function
Added a 'left' variable to make the flow clearer, and added a debug
check for the return value - returning 'n' is more obvious.
Added small comment for readn.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Original-patch-by: Ingo Molnar <mingo@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1385634619-8129-4-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/util/util.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/tools/perf/util/util.c b/tools/perf/util/util.c index 9440481e9092..6ea0b4ae9569 100644 --- a/tools/perf/util/util.c +++ b/tools/perf/util/util.c | |||
@@ -6,6 +6,7 @@ | |||
6 | #endif | 6 | #endif |
7 | #include <stdio.h> | 7 | #include <stdio.h> |
8 | #include <stdlib.h> | 8 | #include <stdlib.h> |
9 | #include <linux/kernel.h> | ||
9 | 10 | ||
10 | /* | 11 | /* |
11 | * XXX We need to find a better place for these things... | 12 | * XXX We need to find a better place for these things... |
@@ -151,21 +152,26 @@ unsigned long convert_unit(unsigned long value, char *unit) | |||
151 | return value; | 152 | return value; |
152 | } | 153 | } |
153 | 154 | ||
155 | /* | ||
156 | * Read exactly 'n' bytes or return an error. | ||
157 | */ | ||
154 | ssize_t readn(int fd, void *buf, size_t n) | 158 | ssize_t readn(int fd, void *buf, size_t n) |
155 | { | 159 | { |
156 | void *buf_start = buf; | 160 | void *buf_start = buf; |
161 | size_t left = n; | ||
157 | 162 | ||
158 | while (n) { | 163 | while (left) { |
159 | ssize_t ret = read(fd, buf, n); | 164 | ssize_t ret = read(fd, buf, left); |
160 | 165 | ||
161 | if (ret <= 0) | 166 | if (ret <= 0) |
162 | return ret; | 167 | return ret; |
163 | 168 | ||
164 | n -= ret; | 169 | left -= ret; |
165 | buf += ret; | 170 | buf += ret; |
166 | } | 171 | } |
167 | 172 | ||
168 | return buf - buf_start; | 173 | BUG_ON((size_t)(buf - buf_start) != n); |
174 | return n; | ||
169 | } | 175 | } |
170 | 176 | ||
171 | size_t hex_width(u64 v) | 177 | size_t hex_width(u64 v) |