Home
last modified time | relevance | path

Searched refs:ofd_path (Results 1 – 1 of 1) sorted by relevance

/systemd-251/src/pstore/
Dpstore.c119 _cleanup_free_ char *ifd_path = NULL, *ofd_path = NULL; in move_file() local
132 ofd_path = path_join(arg_archivedir, subdir, pe->dirent.d_name); in move_file()
133 if (!ofd_path) in move_file()
137 … suffix = arg_storage == PSTORE_STORAGE_EXTERNAL ? strjoina(" moved to ", ofd_path) : (char *)"."; in move_file()
158 r = mkdir_parents(ofd_path, 0755); in move_file()
160 return log_error_errno(r, "Failed to create directory %s: %m", ofd_path); in move_file()
161 r = copy_file_atomic(ifd_path, ofd_path, 0600, 0, 0, COPY_REPLACE); in move_file()
163 … return log_error_errno(r, "Failed to copy_file_atomic: %s to %s", ifd_path, ofd_path); in move_file()
177 _cleanup_free_ char *ofd_path = NULL; in write_dmesg() local
187 ofd_path = path_join(arg_archivedir, id, "dmesg.txt"); in write_dmesg()
[all …]