From 4087cb9e8fb90957d90d577e62e8ba056c2258cf Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 6 Nov 2013 17:34:54 +0100 Subject: [PATCH] path-util: paths_check_timestamp() opimizations --- src/shared/path-util.c | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/src/shared/path-util.c b/src/shared/path-util.c index fcacf541e..6c4efbfd9 100644 --- a/src/shared/path-util.c +++ b/src/shared/path-util.c @@ -428,6 +428,8 @@ int path_is_os_tree(const char *path) { int find_binary(const char *name, char **filename) { assert(name); + assert(filename); + if (strchr(name, '/')) { char *p; @@ -474,33 +476,37 @@ int find_binary(const char *name, char **filename) { } } -bool paths_check_timestamp(char **paths, usec_t *timestamp, bool update) -{ - unsigned int i; +bool paths_check_timestamp(char **paths, usec_t *timestamp, bool update) { bool changed = false; + char **i; assert(timestamp); if (paths == NULL) - goto out; + return false; - for (i = 0; paths[i]; i++) { + STRV_FOREACH(i, paths) { struct stat stats; + usec_t u; - if (stat(paths[i], &stats) < 0) + if (stat(*i, &stats) < 0) continue; + u = timespec_load(&stats.st_mtim); + /* first check */ - if (*timestamp >= timespec_load(&stats.st_mtim)) + if (*timestamp >= u) continue; - log_debug("timestamp of '%s' changed\n", paths[i]); - changed = true; + log_debug("timestamp of '%s' changed\n", *i); /* update timestamp */ - if (update) - *timestamp = timespec_load(&stats.st_mtim); + if (update) { + *timestamp = u; + changed = true; + } else + return true; } -out: + return changed; } -- 2.30.2