net/failsafe: don't double space warning

Message ID 20200814173933.23981-1-stephen@networkplumber.org (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series net/failsafe: don't double space warning |

Checks

Context Check Description
ci/checkpatch warning coding style issues
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-testing success Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/Intel-compilation success Compilation OK

Commit Message

Stephen Hemminger Aug. 14, 2020, 5:39 p.m. UTC
  Already get a newline from WARN() macro call.

Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot")
Cc: matan@mellanox.com
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

---
 drivers/net/failsafe/failsafe_ether.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Gaëtan Rivet Aug. 14, 2020, 8:28 p.m. UTC | #1
On 14/08/20 10:39 -0700, Stephen Hemminger wrote:
> Already get a newline from WARN() macro call.
> 
> Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot")
> Cc: matan@mellanox.com
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

Acked-by: Gaetan Rivet <grive@u256.net>

> 
> ---
>  drivers/net/failsafe/failsafe_ether.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/failsafe/failsafe_ether.c b/drivers/net/failsafe/failsafe_ether.c
> index 2b748bd8b426..70972d67174f 100644
> --- a/drivers/net/failsafe/failsafe_ether.c
> +++ b/drivers/net/failsafe/failsafe_ether.c
> @@ -322,10 +322,10 @@ fs_dev_stats_save(struct sub_device *sdev)
>  	if (err) {
>  		uint64_t timestamp = sdev->stats_snapshot.timestamp;
>  
> -		WARN("Could not access latest statistics from sub-device %d.\n",
> +		WARN("Could not access latest statistics from sub-device %d.",
>  			 SUB_ID(sdev));
>  		if (timestamp != 0)
> -			WARN("Using latest snapshot taken before %"PRIu64" seconds.\n",
> +			WARN("Using latest snapshot taken before %"PRIu64" seconds.",
>  				 (rte_rdtsc() - timestamp) / rte_get_tsc_hz());
>  	}
>  	failsafe_stats_increment
> -- 
> 2.27.0
>
  
Gaëtan Rivet Aug. 14, 2020, 8:30 p.m. UTC | #2
On 14/08/20 22:28 +0200, Gaëtan Rivet wrote:
> On 14/08/20 10:39 -0700, Stephen Hemminger wrote:
> > Already get a newline from WARN() macro call.
> > 
> > Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot")
> > Cc: matan@mellanox.com
> > Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> 
> Acked-by: Gaetan Rivet <grive@u256.net>
> 

Ah, I forgot: the patch itself is fine, but it should be backported
probably. Missing Cc: stable, Fixes, and the title should be reworded "fix
double space warning" I think.

> > 
> > ---
> >  drivers/net/failsafe/failsafe_ether.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/net/failsafe/failsafe_ether.c b/drivers/net/failsafe/failsafe_ether.c
> > index 2b748bd8b426..70972d67174f 100644
> > --- a/drivers/net/failsafe/failsafe_ether.c
> > +++ b/drivers/net/failsafe/failsafe_ether.c
> > @@ -322,10 +322,10 @@ fs_dev_stats_save(struct sub_device *sdev)
> >  	if (err) {
> >  		uint64_t timestamp = sdev->stats_snapshot.timestamp;
> >  
> > -		WARN("Could not access latest statistics from sub-device %d.\n",
> > +		WARN("Could not access latest statistics from sub-device %d.",
> >  			 SUB_ID(sdev));
> >  		if (timestamp != 0)
> > -			WARN("Using latest snapshot taken before %"PRIu64" seconds.\n",
> > +			WARN("Using latest snapshot taken before %"PRIu64" seconds.",
> >  				 (rte_rdtsc() - timestamp) / rte_get_tsc_hz());
> >  	}
> >  	failsafe_stats_increment
> > -- 
> > 2.27.0
> > 
> 
> -- 
> Gaëtan
  
Ferruh Yigit Aug. 18, 2020, 6:32 p.m. UTC | #3
On 8/14/2020 9:30 PM, Gaëtan Rivet wrote:
> On 14/08/20 22:28 +0200, Gaëtan Rivet wrote:
>> On 14/08/20 10:39 -0700, Stephen Hemminger wrote:
>>> Already get a newline from WARN() macro call.
>>>
>>> Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot")
>>> Cc: matan@mellanox.com
>>> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>>
>> Acked-by: Gaetan Rivet <grive@u256.net>
>>
> 
> Ah, I forgot: the patch itself is fine, but it should be backported
> probably. Missing Cc: stable, Fixes, and the title should be reworded "fix
> double space warning" I think.
> 

Applied to dpdk-next-net/main, thanks.

(stable tag added, title updated as suggested)
  

Patch

diff --git a/drivers/net/failsafe/failsafe_ether.c b/drivers/net/failsafe/failsafe_ether.c
index 2b748bd8b426..70972d67174f 100644
--- a/drivers/net/failsafe/failsafe_ether.c
+++ b/drivers/net/failsafe/failsafe_ether.c
@@ -322,10 +322,10 @@  fs_dev_stats_save(struct sub_device *sdev)
 	if (err) {
 		uint64_t timestamp = sdev->stats_snapshot.timestamp;
 
-		WARN("Could not access latest statistics from sub-device %d.\n",
+		WARN("Could not access latest statistics from sub-device %d.",
 			 SUB_ID(sdev));
 		if (timestamp != 0)
-			WARN("Using latest snapshot taken before %"PRIu64" seconds.\n",
+			WARN("Using latest snapshot taken before %"PRIu64" seconds.",
 				 (rte_rdtsc() - timestamp) / rte_get_tsc_hz());
 	}
 	failsafe_stats_increment