summaryrefslogtreecommitdiffstats
path: root/zfs
diff options
context:
space:
mode:
authorChristian Goettsche <cgzones@googlemail.com>2020-11-18 15:12:18 +0100
committerBenBE <BenBE@geshi.org>2020-11-19 23:51:50 +0100
commitf5c3349bdb9cae2eec5adb9892445d3a1b482ec4 (patch)
tree72d2d82c7e2fac5f95205d344a837fa15022e516 /zfs
parent7cf527759481a760b0f08da16add3a5120048572 (diff)
IWYU update (FreeBSD)
Diffstat (limited to 'zfs')
-rw-r--r--zfs/ZfsArcStats.c16
-rw-r--r--zfs/openzfs_sysctl.c13
2 files changed, 5 insertions, 24 deletions
diff --git a/zfs/ZfsArcStats.c b/zfs/ZfsArcStats.c
index ae565633..bead8461 100644
--- a/zfs/ZfsArcStats.c
+++ b/zfs/ZfsArcStats.c
@@ -5,22 +5,6 @@ Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text.
*/
-/*{
-typedef struct ZfsArcStats_ {
- int enabled;
- int isCompressed;
- unsigned long long int max;
- unsigned long long int size;
- unsigned long long int MFU;
- unsigned long long int MRU;
- unsigned long long int anon;
- unsigned long long int header;
- unsigned long long int other;
- unsigned long long int compressed;
- unsigned long long int uncompressed;
-} ZfsArcStats;
-}*/
-
#include "Macros.h"
static int make_iso_compilers_happy ATTR_UNUSED;
diff --git a/zfs/openzfs_sysctl.c b/zfs/openzfs_sysctl.c
index 59d7469f..fd00d61b 100644
--- a/zfs/openzfs_sysctl.c
+++ b/zfs/openzfs_sysctl.c
@@ -6,12 +6,13 @@ in the source distribution for its full text.
*/
#include "zfs/openzfs_sysctl.h"
-#include "zfs/ZfsArcStats.h"
-#include <unistd.h>
#include <stdlib.h>
-#include <sys/types.h>
-#include <sys/sysctl.h>
+#include <sys/types.h> // IWYU pragma: keep
+#include <sys/sysctl.h> // needs <sys/types.h> for u_int with gcc
+
+#include "zfs/ZfsArcStats.h"
+
static int MIB_kstat_zfs_misc_arcstats_size[5];
static int MIB_kstat_zfs_misc_arcstats_c_max[5];
@@ -23,10 +24,6 @@ static int MIB_kstat_zfs_misc_arcstats_other_size[5];
static int MIB_kstat_zfs_misc_arcstats_compressed_size[5];
static int MIB_kstat_zfs_misc_arcstats_uncompressed_size[5];
-/*{
-#include "zfs/ZfsArcStats.h"
-}*/
-
void openzfs_sysctl_init(ZfsArcStats* stats) {
size_t len;
unsigned long long int arcSize;

© 2014-2024 Faster IT GmbH | imprint | privacy policy