diff options
author | youzhongyang <[email protected]> | 2023-04-18 21:10:40 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-18 18:10:40 -0700 |
commit | 23f84d161ed0ef91854be6da301ccca5ede11eec (patch) | |
tree | 8d418ac4feee1c94b45b16a5c4f5f5afc566f5d9 /include/sys/dmu_objset.h | |
parent | f9e1c63f8c32141bb18c0270d565e3bfc1bbd233 (diff) |
Silence clang warning of flexible array not at end
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Jorgen Lundman <[email protected]>
Signed-off-by: Youzhong Yang <[email protected]>
Closes #14764
Diffstat (limited to 'include/sys/dmu_objset.h')
-rw-r--r-- | include/sys/dmu_objset.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sys/dmu_objset.h b/include/sys/dmu_objset.h index d22c68287..9f6e0fdd6 100644 --- a/include/sys/dmu_objset.h +++ b/include/sys/dmu_objset.h @@ -72,6 +72,10 @@ struct dmu_tx; */ #define OBJSET_CRYPT_PORTABLE_FLAGS_MASK (0) +#if defined(__clang__) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu-variable-sized-type-not-at-end" +#endif typedef struct objset_phys { dnode_phys_t os_meta_dnode; zil_header_t os_zil_header; @@ -88,6 +92,9 @@ typedef struct objset_phys { char os_pad1[OBJSET_PHYS_SIZE_V3 - OBJSET_PHYS_SIZE_V2 - sizeof (dnode_phys_t)]; } objset_phys_t; +#if defined(__clang__) +#pragma clang diagnostic pop +#endif typedef int (*dmu_objset_upgrade_cb_t)(objset_t *); |