diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-09-06 11:50:41 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-09-06 11:50:41 -0400 |
commit | 75e44b471c511bc2aec0e869ab0d23d249890734 (patch) | |
tree | 70d917ae07381a709c16155e67200f1a065e2106 /src | |
parent | d7ae549e31ccf19a28375b1f72ec898eeace3c58 (diff) | |
download | postgresql-75e44b471c511bc2aec0e869ab0d23d249890734.tar.gz postgresql-75e44b471c511bc2aec0e869ab0d23d249890734.zip |
Remove useless lstat() call in pg_rewind.
This is duplicative of an lstat that was just done by the calling
function (traverse_datadir), besides which we weren't really doing
anything with the results. There's not much point in checking to
see if someone removed the file since the previous lstat, since the
FILE_ACTION_REMOVE code would have to deal with missing-file cases
anyway. Moreover, the "exists = false" assignment was a dead store;
nothing was done with that value later.
A syscall saved is a syscall earned, so back-patch to 9.5
where this code was introduced.
Discussion: https://postgr.es/m/1221796.1599329320@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_rewind/filemap.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/bin/pg_rewind/filemap.c b/src/bin/pg_rewind/filemap.c index 197163d5544..8ea7fafa27f 100644 --- a/src/bin/pg_rewind/filemap.c +++ b/src/bin/pg_rewind/filemap.c @@ -343,8 +343,6 @@ process_target_file(const char *path, file_type_t type, size_t oldsize, const char *link_target) { bool exists; - char localpath[MAXPGPATH]; - struct stat statbuf; file_entry_t key; file_entry_t *key_ptr; filemap_t *map = filemap; @@ -356,16 +354,6 @@ process_target_file(const char *path, file_type_t type, size_t oldsize, * the source data folder when processing the source files. */ - snprintf(localpath, sizeof(localpath), "%s/%s", datadir_target, path); - if (lstat(localpath, &statbuf) < 0) - { - if (errno != ENOENT) - pg_fatal("could not stat file \"%s\": %s\n", - localpath, strerror(errno)); - - exists = false; - } - if (map->array == NULL) { /* on first call, initialize lookup array */ |