blob: d091805b24938892776dc6b54fc5f5ffaa9682e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* statx -> stat conversion functions for coreutils
Copyright (C) 2019-2020 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
#ifndef COREUTILS_STATX_H
# define COREUTILS_STATX_H
# if HAVE_STATX && defined STATX_INO
/* Much of the format printing requires a struct stat or timespec */
static inline struct timespec
statx_timestamp_to_timespec (struct statx_timestamp tsx)
{
struct timespec ts;
ts.tv_sec = tsx.tv_sec;
ts.tv_nsec = tsx.tv_nsec;
return ts;
}
static inline void
statx_to_stat (struct statx *stx, struct stat *stat)
{
stat->st_dev = makedev (stx->stx_dev_major, stx->stx_dev_minor);
stat->st_ino = stx->stx_ino;
stat->st_mode = stx->stx_mode;
stat->st_nlink = stx->stx_nlink;
stat->st_uid = stx->stx_uid;
stat->st_gid = stx->stx_gid;
stat->st_rdev = makedev (stx->stx_rdev_major, stx->stx_rdev_minor);
stat->st_size = stx->stx_size;
stat->st_blksize = stx->stx_blksize;
/* define to avoid sc_prohibit_stat_st_blocks. */
# define SC_ST_BLOCKS st_blocks
stat->SC_ST_BLOCKS = stx->stx_blocks;
stat->st_atim = statx_timestamp_to_timespec (stx->stx_atime);
stat->st_mtim = statx_timestamp_to_timespec (stx->stx_mtime);
stat->st_ctim = statx_timestamp_to_timespec (stx->stx_ctime);
}
# endif /* HAVE_STATX && defined STATX_INO */
#endif /* COREUTILS_STATX_H */
|