From: Alyssa Ross Date: Tue, 28 May 2024 13:18:41 +0000 (+0200) Subject: libext2fs: fix unused parameter warnings/errors X-Git-Tag: v1.47.2-rc1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=967bcb155295c5e33c0edc6555bd4e25e9307899;p=thirdparty%2Fe2fsprogs.git libext2fs: fix unused parameter warnings/errors This fixes building dependent packages that use -Werror. Signed-off-by: Alyssa Ross Link: https://lore.kernel.org/r/20240528131841.576999-1-hi@alyssa.is Signed-off-by: Theodore Ts'o --- diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index 6e87829f..ff22f66b 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -585,7 +585,8 @@ typedef struct ext2_struct_inode_scan *ext2_inode_scan; */ #define EXT2_I_SIZE(i) ((i)->i_size | ((__u64) (i)->i_size_high << 32)) -static inline __u32 __encode_extra_time(time_t seconds, __u32 nsec) +static inline __u32 __encode_extra_time(time_t seconds EXT2FS_ATTR((unused)), + __u32 nsec) { __u32 extra = 0; @@ -595,7 +596,8 @@ static inline __u32 __encode_extra_time(time_t seconds, __u32 nsec) #endif return extra | (nsec << EXT4_EPOCH_BITS); } -static inline time_t __decode_extra_sec(time_t seconds, __u32 extra) +static inline time_t __decode_extra_sec(time_t seconds, + __u32 extra EXT2FS_ATTR((unused))) { #if (SIZEOF_TIME_T > 4) if (extra & EXT4_EPOCH_MASK) @@ -630,7 +632,8 @@ do { \ ((struct ext2_inode_large *)(inode))->field ## _extra) : \ (time_t)(inode)->field) -static inline void __sb_set_tstamp(__u32 *lo, __u8 *hi, time_t seconds) +static inline void __sb_set_tstamp(__u32 *lo, __u8 *hi EXT2FS_ATTR((unused)), + time_t seconds) { *lo = seconds & 0xffffffff; #if (SIZEOF_TIME_T > 4) @@ -639,7 +642,7 @@ static inline void __sb_set_tstamp(__u32 *lo, __u8 *hi, time_t seconds) *hi = 0; #endif } -static inline time_t __sb_get_tstamp(__u32 *lo, __u8 *hi) +static inline time_t __sb_get_tstamp(__u32 *lo, __u8 *hi EXT2FS_ATTR((unused))) { #if (SIZEOF_TIME_T == 4) return *lo;