]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
perf tools: Make copyfile_offset() static
authorArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 11 Sep 2017 13:50:26 +0000 (10:50 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 13 Sep 2017 12:49:16 +0000 (09:49 -0300)
There are no usage outside util.c and this is the only remaining reason
for fcntl.h to be included in util.h, to get the loff_t definition in
Alpine Linux, so make it static.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-2dzlsao7k6ihozs5karw6kpx@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/tests/builtin-test.c
tools/perf/util/data.c
tools/perf/util/dso.c
tools/perf/util/event.c
tools/perf/util/evlist.h
tools/perf/util/namespaces.c
tools/perf/util/pmu.c
tools/perf/util/probe-file.c
tools/perf/util/util.c
tools/perf/util/util.h
tools/perf/util/zlib.c

index 377bea0091638f04def45caa551992f9000aa530..d0fee35db0e7d2caff3be8bbf215706f510fff24 100644 (file)
@@ -3,6 +3,7 @@
  *
  * Builtin regression testing command: ever growing number of sanity tests
  */
+#include <fcntl.h>
 #include <errno.h>
 #include <unistd.h>
 #include <string.h>
index 263f5a906ba5a2bde3d0898a1e19d783920fca47..1123b30e3033b5df418083fc461be33f7c108657 100644 (file)
@@ -3,6 +3,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <errno.h>
+#include <fcntl.h>
 #include <unistd.h>
 #include <string.h>
 
index b9e087fb8247983f0f3aed7e984dc5eb2615de7c..ffd723179a4bd74ecd6f613398dfef0d35304837 100644 (file)
@@ -6,6 +6,7 @@
 #include <sys/stat.h>
 #include <unistd.h>
 #include <errno.h>
+#include <fcntl.h>
 #include "compress.h"
 #include "path.h"
 #include "symbol.h"
index 17c21ea68a72ebe6f6fcf284eff325c57dac828b..10366b87d0b5479adda7449abae05504f78bd5f3 100644 (file)
@@ -1,5 +1,6 @@
 #include <dirent.h>
 #include <errno.h>
+#include <fcntl.h>
 #include <inttypes.h>
 #include <linux/kernel.h>
 #include <linux/types.h>
index bf2c4936e35fca513667b07bc67b99b0f96a007d..b1c14f1fdc2798eafc8160fc20d86fe6bfca0746 100644 (file)
@@ -6,6 +6,7 @@
 #include <linux/refcount.h>
 #include <linux/list.h>
 #include <api/fd/array.h>
+#include <fcntl.h>
 #include <stdio.h>
 #include "../perf.h"
 #include "event.h"
index a58e91197729a40305d071809b95d83b49bc8548..5be021701f34e758aae5eda1d95bb7a9ce49ebad 100644 (file)
@@ -11,6 +11,7 @@
 #include "event.h"
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <fcntl.h>
 #include <limits.h>
 #include <sched.h>
 #include <stdlib.h>
index 7070638ab6009603aa8444a660152c53f30c74c1..0b11dfc0af4439fb994d359473607f9e37c8f9af 100644 (file)
@@ -2,6 +2,7 @@
 #include <linux/compiler.h>
 #include <sys/types.h>
 #include <errno.h>
+#include <fcntl.h>
 #include <sys/stat.h>
 #include <unistd.h>
 #include <stdio.h>
index cdf8d83a484c1408608c78cace95da4e29b0c242..4ae1123c67949a01cadc1f4080728b038e15b88b 100644 (file)
@@ -15,6 +15,7 @@
  *
  */
 #include <errno.h>
+#include <fcntl.h>
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <sys/uio.h>
index 4c360daa4e242cc493e4957a7d46eca62ecbca09..3c9c39711343917e54cd52c4412b8a99708c77b7 100644 (file)
@@ -6,6 +6,7 @@
 #include <sys/stat.h>
 #include <sys/utsname.h>
 #include <dirent.h>
+#include <fcntl.h>
 #include <inttypes.h>
 #include <signal.h>
 #include <stdio.h>
@@ -174,7 +175,7 @@ static int slow_copyfile(const char *from, const char *to, struct nsinfo *nsi)
        return err;
 }
 
-int copyfile_offset(int ifd, loff_t off_in, int ofd, loff_t off_out, u64 size)
+static int copyfile_offset(int ifd, loff_t off_in, int ofd, loff_t off_out, u64 size)
 {
        void *ptr;
        loff_t pgoff;
index b136c271125f02f99b017f070bbf8448ba9df426..03946d5e4741f51fd0fff14c6af11d5bb752b0a5 100644 (file)
@@ -5,7 +5,6 @@
 /* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
 #define _DEFAULT_SOURCE 1
 
-#include <fcntl.h>
 #include <stdbool.h>
 #include <stddef.h>
 #include <stdlib.h>
@@ -35,7 +34,6 @@ bool lsdir_no_dot_filter(const char *name, struct dirent *d);
 int copyfile(const char *from, const char *to);
 int copyfile_mode(const char *from, const char *to, mode_t mode);
 int copyfile_ns(const char *from, const char *to, struct nsinfo *nsi);
-int copyfile_offset(int fromfd, loff_t from_ofs, int tofd, loff_t to_ofs, u64 size);
 
 ssize_t readn(int fd, void *buf, size_t n);
 ssize_t writen(int fd, const void *buf, size_t n);
index 1329d843eb7b4ef490517a8d631054151575106d..7c1175310a1292db2b7b5bd05025816885a58601 100644 (file)
@@ -1,3 +1,4 @@
+#include <fcntl.h>
 #include <stdio.h>
 #include <unistd.h>
 #include <sys/stat.h>