util: make it easy to initialize the crtime from the current time in fd_setcrtime()

This commit is contained in:
Lennart Poettering 2015-01-08 01:27:13 +01:00
parent dfd1520d3a
commit d61b600dde
2 changed files with 4 additions and 1 deletions

View File

@ -2623,7 +2623,7 @@ int journal_file_open(
* attributes are not supported we'll just skip this,
* and rely solely on mtime/atime/ctime of the file. */
fd_setcrtime(f->fd, now(CLOCK_REALTIME));
fd_setcrtime(f->fd, 0);
#ifdef HAVE_GCRYPT
/* Try to load the FSPRG state, and if we can't, then

View File

@ -7670,6 +7670,9 @@ int fd_setcrtime(int fd, usec_t usec) {
assert(fd >= 0);
if (usec <= 0)
usec = now(CLOCK_REALTIME);
le = htole64((uint64_t) usec);
if (fsetxattr(fd, "user.crtime_usec", &le, sizeof(le), 0) < 0)
return -errno;