summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorнаб <nabijaczleweli@nabijaczleweli.xyz>2023-08-17 22:05:14 +0200
committerRich Felker <dalias@aerifal.cx>2023-08-19 14:46:20 -0400
commit7291c6c66a8d033bb487e6d8c8b003c8a7b6a550 (patch)
tree57ae71aa246bd948d2ae65f22caac009cc8e663e /src
parent39e43f0881b12d602ddcb8a9e9295456354b765b (diff)
downloadmusl-7291c6c66a8d033bb487e6d8c8b003c8a7b6a550.tar.gz
statvfs: allocate spare for f_type
This is the only missing part in struct statvfs. The LSB calls [f]statfs() deprecated, and its weird types are definitely off-putting. However, its use is required to get f_type. Instead, allocate one of the six spares to f_type, copied directly from struct statfs. This then becomes a small extension to the standard interface on Linux, instead of two different interfaces, one of which is quite odd due to being an ABI type, and there no longer is any reason to use statfs(). The underlying kernel type is a mess, but all architectures agree on u32 (or more) for the ABI, and all filesystem magicks are 32-bit integers. Since commit 6567db65f495cf7c11f5c1e60a3e54543d5a69bc (prior to 1.0.0), the spare slots have been zero-filled, so on all versions that may be reasonably be encountered in the wild, applications can rely on a nonzero f_type as indication that the new field has been filled in.
Diffstat (limited to 'src')
-rw-r--r--src/stat/statvfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stat/statvfs.c b/src/stat/statvfs.c
index bfbb5fee..bc12da8b 100644
--- a/src/stat/statvfs.c
+++ b/src/stat/statvfs.c
@@ -39,6 +39,7 @@ static void fixup(struct statvfs *out, const struct statfs *in)
out->f_fsid = in->f_fsid.__val[0];
out->f_flag = in->f_flags;
out->f_namemax = in->f_namelen;
+ out->f_type = in->f_type;
}
int statvfs(const char *restrict path, struct statvfs *restrict buf)