summaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-07-25 19:09:27 +0000
committerGitHub <noreply@github.com>2020-07-25 19:09:27 +0000
commit57b6bd77002830526b1a8160d7c499584d2d2a8b (patch)
treeb1c705bba74c60decab3dad71067a9768f2943df /src/sys
parentb1ba07447315df4cd7b414410e793b17e6c722a7 (diff)
parentec05dd7f5aaffb9a8d807ccfc8bff6f376923e95 (diff)
downloadnix-57b6bd77002830526b1a8160d7c499584d2d2a8b.zip
Merge #1224
1224: Update the Linux CI environment to Ubuntu Bionic r=asomers a=asomers Co-authored-by: Alan Somers <asomers@gmail.com> Co-authored-by: Alan Somers <asomers@axcient.com>
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/statfs.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sys/statfs.rs b/src/sys/statfs.rs
index a7b30e30..8e90a58d 100644
--- a/src/sys/statfs.rs
+++ b/src/sys/statfs.rs
@@ -72,6 +72,8 @@ pub const NFS_SUPER_MAGIC: FsType = FsType(libc::NFS_SUPER_MAGIC);
#[cfg(all(target_os = "linux", not(target_env = "musl"), not(target_arch = "s390x")))]
pub const OPENPROM_SUPER_MAGIC: FsType = FsType(libc::OPENPROM_SUPER_MAGIC);
#[cfg(all(target_os = "linux", not(target_env = "musl"), not(target_arch = "s390x")))]
+pub const OVERLAYFS_SUPER_MAGIC: FsType = FsType(libc::OVERLAYFS_SUPER_MAGIC);
+#[cfg(all(target_os = "linux", not(target_env = "musl"), not(target_arch = "s390x")))]
pub const PROC_SUPER_MAGIC: FsType = FsType(libc::PROC_SUPER_MAGIC);
#[cfg(all(target_os = "linux", not(target_env = "musl"), not(target_arch = "s390x")))]
pub const QNX4_SUPER_MAGIC: FsType = FsType(libc::QNX4_SUPER_MAGIC);