lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Mon, 1 Jul 2013 16:58:52 +0100
From:	Ben Hutchings <bhutchings@...arflare.com>
To:	Yuval Mintz <yuvalmin@...adcom.com>
CC:	<netdev@...r.kernel.org>, <joe@...ches.com>, <eilong@...adcom.com>
Subject: Re: [PATCH v2] Ethtool: Beautify private flags print

On Sun, 2013-05-26 at 07:55 +0300, Yuval Mintz wrote:
> When printing the private flags of the device, align all strings
> to have the same length.
> 
> Signed-off-by: Yuval Mintz <yuvalmin@...adcom.com>
> ---
> Changes from V1:
>   - use "%-*s" instead of printing white spaces in for-loop.

Applied; sorry for the delay.

Ben.

> ---
>  ethtool.c | 12 +++++++++++-
>  1 file changed, 11 insertions(+), 1 deletion(-)
> 
> diff --git a/ethtool.c b/ethtool.c
> index 8cc10b5..57a6e01 100644
> --- a/ethtool.c
> +++ b/ethtool.c
> @@ -3445,6 +3445,7 @@ static int do_gprivflags(struct cmd_context *ctx)
>  	struct ethtool_gstrings *strings;
>  	struct ethtool_value flags;
>  	unsigned int i;
> +	int max_len = 0, cur_len;
>  
>  	if (ctx->argc != 0)
>  		exit_bad_args();
> @@ -3472,9 +3473,18 @@ static int do_gprivflags(struct cmd_context *ctx)
>  		return 1;
>  	}
>  
> +	/* Find longest string and align all strings accordingly */
> +	for (i = 0; i < strings->len; i++) {
> +		cur_len = strlen((const char*)strings->data +
> +					      i * ETH_GSTRING_LEN);
> +		if (cur_len > max_len)
> +			max_len = cur_len;
> +	}
> +
>  	printf("Private flags for %s:\n", ctx->devname);
>  	for (i = 0; i < strings->len; i++)
> -		printf("%s: %s\n",
> +		printf("%-*s: %s\n",
> +		       max_len,
>  		       (const char *)strings->data + i * ETH_GSTRING_LEN,
>  		       (flags.data & (1U << i)) ? "on" : "off");
>  

-- 
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ