aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/util.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2019-02-20 07:28:00 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-02-20 15:09:28 -0500
commitb4409ae112caa6315f6ee678e953b9fc93e6919c (patch)
tree02414271cef0931689a94445bc151049217c2e77 /tools/perf/util/util.c
parentdeb83da16c1f3412fcb33c8944b3d854c4b265d6 (diff)
perf tools: Make rm_rf() remove single file
Let rm_rf() remove a file if it's provided by path, not just directories. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Alexey Budankov <alexey.budankov@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/20190220122800.864-7-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/util.c')
-rw-r--r--tools/perf/util/util.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/tools/perf/util/util.c b/tools/perf/util/util.c
index 320b0fef249a..3ee410fc047a 100644
--- a/tools/perf/util/util.c
+++ b/tools/perf/util/util.c
@@ -120,16 +120,26 @@ int mkdir_p(char *path, mode_t mode)
120int rm_rf(const char *path) 120int rm_rf(const char *path)
121{ 121{
122 DIR *dir; 122 DIR *dir;
123 int ret = 0; 123 int ret;
124 struct dirent *d; 124 struct dirent *d;
125 char namebuf[PATH_MAX]; 125 char namebuf[PATH_MAX];
126 struct stat statbuf;
126 127
128 /* Do not fail if there's no file. */
129 ret = lstat(path, &statbuf);
130 if (ret)
131 return 0;
132
133 /* Try to remove any file we get. */
134 if (!(statbuf.st_mode & S_IFDIR))
135 return unlink(path);
136
137 /* We have directory in path. */
127 dir = opendir(path); 138 dir = opendir(path);
128 if (dir == NULL) 139 if (dir == NULL)
129 return 0; 140 return -1;
130 141
131 while ((d = readdir(dir)) != NULL && !ret) { 142 while ((d = readdir(dir)) != NULL && !ret) {
132 struct stat statbuf;
133 143
134 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, "..")) 144 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
135 continue; 145 continue;