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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 7 Jun 2016 01:29:07 +0000
From:	Fugang Duan <fugang.duan@....com>
To:	Colin King <colin.king@...onical.com>,
	"netdev@...r.kernel.org" <netdev@...r.kernel.org>
CC:	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH][V2] net: fec: fix spelling mistakes and add missing
 newline

From: Colin King <colin.king@...onical.com> Sent: Monday, June 06, 2016 4:22 PM
> To: Fugang Duan <fugang.duan@....com>; netdev@...r.kernel.org
> Cc: linux-kernel@...r.kernel.org
> Subject: [PATCH][V2] net: fec: fix spelling mistakes and add missing newline
> 
> From: Colin Ian King <colin.king@...onical.com>
> 
> trivial fix to spelling mistakes and add missing newline in pr_err messages
> 
> Signed-off-by: Colin Ian King <colin.king@...onical.com>
> ---
>  drivers/net/ethernet/freescale/fec_main.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/net/ethernet/freescale/fec_main.c
> b/drivers/net/ethernet/freescale/fec_main.c
> index 3c0255e..fea0f33 100644
> --- a/drivers/net/ethernet/freescale/fec_main.c
> +++ b/drivers/net/ethernet/freescale/fec_main.c
> @@ -2416,24 +2416,24 @@ fec_enet_set_coalesce(struct net_device *ndev,
> struct ethtool_coalesce *ec)
>  		return -EOPNOTSUPP;
> 
>  	if (ec->rx_max_coalesced_frames > 255) {
> -		pr_err("Rx coalesced frames exceed hardware limiation");
> +		pr_err("Rx coalesced frames exceed hardware limitation\n");
>  		return -EINVAL;
>  	}
> 
>  	if (ec->tx_max_coalesced_frames > 255) {
> -		pr_err("Tx coalesced frame exceed hardware limiation");
> +		pr_err("Tx coalesced frame exceed hardware limitation\n");
>  		return -EINVAL;
>  	}
> 
>  	cycle = fec_enet_us_to_itr_clock(ndev, fep->rx_time_itr);
>  	if (cycle > 0xFFFF) {
> -		pr_err("Rx coalesed usec exceeed hardware limiation");
> +		pr_err("Rx coalesced usec exceed hardware limitation\n");
>  		return -EINVAL;
>  	}
> 
>  	cycle = fec_enet_us_to_itr_clock(ndev, fep->tx_time_itr);
>  	if (cycle > 0xFFFF) {
> -		pr_err("Rx coalesed usec exceeed hardware limiation");
> +		pr_err("Rx coalesced usec exceed hardware limitation\n");
>  		return -EINVAL;
>  	}
> 
> --
> 2.8.1

Acked-by: Fugang Duan <fugang.duan@....com>

Powered by blists - more mailing lists