[libc-commits] [libc] [libc] Refactor statfs Linux syscalls and provide 'struct statfs' (PR #212930)

Pavel Labath via libc-commits libc-commits at lists.llvm.org
Thu Jul 30 06:31:30 PDT 2026


================
@@ -0,0 +1,36 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// Definition of type struct statfs.
+///
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_TYPES_STRUCT_STATFS_H
+#define LLVM_LIBC_TYPES_STRUCT_STATFS_H
+
+#include "fsblkcnt_t.h"
+#include "fsfilcnt_t.h"
+#include "fsid_t.h"
+
+struct statfs {
----------------
labath wrote:

Just noting that some of the more... exotic architectures (e.g. s390 or mips) have different layouts for this struct.  Arm, x86 and risc should be fine though...

https://github.com/llvm/llvm-project/pull/212930


More information about the libc-commits mailing list