mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
dmfilemapd: log closedir errors with log_sys_error()
This commit is contained in:
parent
5dfd35f2f8
commit
d71071a1af
@ -179,13 +179,16 @@ static int _is_open_in_pid(pid_t pid, const char *path)
|
|||||||
}
|
}
|
||||||
link_buf[len] = '\0';
|
link_buf[len] = '\0';
|
||||||
if (!strcmp(deleted_path, link_buf)) {
|
if (!strcmp(deleted_path, link_buf)) {
|
||||||
closedir(pid_d);
|
if (closedir(pid_d))
|
||||||
|
log_sys_error("closedir", path_buf);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bad:
|
bad:
|
||||||
closedir(pid_d);
|
if (closedir(pid_d))
|
||||||
|
log_sys_error("closedir", path_buf);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -225,11 +228,15 @@ static int _is_open(const char *path)
|
|||||||
if (!pid)
|
if (!pid)
|
||||||
continue;
|
continue;
|
||||||
if (_is_open_in_pid(pid, path)) {
|
if (_is_open_in_pid(pid, path)) {
|
||||||
closedir(proc_d);
|
if (closedir(pid_d))
|
||||||
|
log_sys_error("closedir", DEFAULT_PROC_DIR);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
closedir(proc_d);
|
|
||||||
|
if (closedir(pid_d))
|
||||||
|
log_sys_error("closedir", DEFAULT_PROC_DIR);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user