perf util: Move do_read from session to util
Not really something to be exported from session.c. Rename it to 'readn' as others did in the past. Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: Tom Zanussi <tzanussi@gmail.com> LKML-Reference: <new-submission> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
daec78a09d
commit
1e7972cc5c
5 changed files with 23 additions and 24 deletions
|
@ -114,3 +114,20 @@ unsigned long convert_unit(unsigned long value, char *unit)
|
|||
|
||||
return value;
|
||||
}
|
||||
|
||||
int readn(int fd, void *buf, size_t n)
|
||||
{
|
||||
void *buf_start = buf;
|
||||
|
||||
while (n) {
|
||||
int ret = read(fd, buf, n);
|
||||
|
||||
if (ret <= 0)
|
||||
return ret;
|
||||
|
||||
n -= ret;
|
||||
buf += ret;
|
||||
}
|
||||
|
||||
return buf - buf_start;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue