perf header: Revamp do_write()
authorDavid Carrillo-Cisneros <[email protected]>
Tue, 18 Jul 2017 04:25:38 +0000 (21:25 -0700)
committerArnaldo Carvalho de Melo <[email protected]>
Wed, 19 Jul 2017 02:14:30 +0000 (23:14 -0300)
Now that writen takes a const buffer, use it in do_write instead of
duplicating its functionality.

Export do_write to use it consistently in header.c and build_id.c .

Signed-off-by: David Carrillo-Cisneros <[email protected]>
Acked-by: David Ahern <[email protected]>
Acked-by: Jiri Olsa <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: He Kuang <[email protected]>
Cc: Masami Hiramatsu <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Turner <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Simon Que <[email protected]>
Cc: Stephane Eranian <[email protected]>
Cc: Wang Nan <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/build-id.c
tools/perf/util/header.c
tools/perf/util/header.h

index e9665150e9b17b20f865247bfa3a45d81cb4b696..4baa5329439f7e586964a843a1ce80e9e696946b 100644 (file)
@@ -304,7 +304,7 @@ static int write_buildid(const char *name, size_t name_len, u8 *build_id,
        b.header.misc = misc;
        b.header.size = sizeof(b) + len;
 
-       err = writen(fd, &b, sizeof(b));
+       err = do_write(fd, &b, sizeof(b));
        if (err < 0)
                return err;
 
index 8dda19b68ac455e4ff57c80d9e491b155c996094..954f0ef8e7126619276076b3e254827372c94040 100644 (file)
@@ -75,17 +75,13 @@ bool perf_header__has_feat(const struct perf_header *header, int feat)
 }
 
 /* Return: 0 if succeded, -ERR if failed. */
-static int do_write(int fd, const void *buf, size_t size)
+int do_write(int fd, const void *buf, size_t size)
 {
-       while (size) {
-               int ret = write(fd, buf, size);
-
-               if (ret < 0)
-                       return -errno;
+       ssize_t ret;
 
-               size -= ret;
-               buf += ret;
-       }
+       ret  = writen(fd, buf, size);
+       if (ret != (ssize_t)size)
+               return ret < 0 ? (int)ret : -1;
 
        return 0;
 }
index d30109b421eef0efb6820e8c8cc036a53dbb7ff3..e98489c8bba74c1f2edd513f45fc0ef76691ce41 100644 (file)
@@ -144,6 +144,8 @@ bool is_perf_magic(u64 magic);
 
 #define NAME_ALIGN 64
 
+int do_write(int fd, const void *buf, size_t size);
+
 int write_padded(int fd, const void *bf, size_t count, size_t count_aligned);
 
 /*