From: Lennart Poettering Date: Mon, 11 Oct 2021 11:50:54 +0000 (+0200) Subject: ethtool-util: let's use userspace types in userspace code X-Git-Tag: v250-rc1~533^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95fe7b28d3ca353b549a1d5d23898743c51b66a7;p=thirdparty%2Fsystemd.git ethtool-util: let's use userspace types in userspace code Using kernel types __u32 is fine for headers shared by the kernel, but if we define something in userspace and only use it in userspace, in our own .c files, let's stick to userspace fixed-length types. --- diff --git a/src/shared/ethtool-util.c b/src/shared/ethtool-util.c index ee7be4635fa..333e5a48797 100644 --- a/src/shared/ethtool-util.c +++ b/src/shared/ethtool-util.c @@ -756,7 +756,7 @@ int ethtool_set_features(int *ethtool_fd, const char *ifname, const int features static int get_glinksettings(int fd, struct ifreq *ifr, struct ethtool_link_usettings **ret) { struct ecmd { struct ethtool_link_settings req; - __u32 link_mode_data[3 * ETHTOOL_LINK_MODE_MASK_MAX_KERNEL_NU32]; + uint32_t link_mode_data[3 * ETHTOOL_LINK_MODE_MASK_MAX_KERNEL_NU32]; } ecmd = { .req.cmd = ETHTOOL_GLINKSETTINGS, }; @@ -857,7 +857,7 @@ static int get_gset(int fd, struct ifreq *ifr, struct ethtool_link_usettings **r static int set_slinksettings(int fd, struct ifreq *ifr, const struct ethtool_link_usettings *u) { struct { struct ethtool_link_settings req; - __u32 link_mode_data[3 * ETHTOOL_LINK_MODE_MASK_MAX_KERNEL_NU32]; + uint32_t link_mode_data[3 * ETHTOOL_LINK_MODE_MASK_MAX_KERNEL_NU32]; } ecmd = {}; unsigned offset;