DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/failsafe: don't double space warning
@ 2020-08-14 17:39 Stephen Hemminger
  2020-08-14 20:28 ` Gaëtan Rivet
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2020-08-14 17:39 UTC (permalink / raw)
  To: Gaetan Rivet; +Cc: dev, Stephen Hemminger, matan

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(-)

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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] net/failsafe: don't double space warning
  2020-08-14 17:39 [dpdk-dev] [PATCH] net/failsafe: don't double space warning Stephen Hemminger
@ 2020-08-14 20:28 ` Gaëtan Rivet
  2020-08-14 20:30   ` Gaëtan Rivet
  0 siblings, 1 reply; 4+ messages in thread
From: Gaëtan Rivet @ 2020-08-14 20:28 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev, matan

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] net/failsafe: don't double space warning
  2020-08-14 20:28 ` Gaëtan Rivet
@ 2020-08-14 20:30   ` Gaëtan Rivet
  2020-08-18 18:32     ` Ferruh Yigit
  0 siblings, 1 reply; 4+ messages in thread
From: Gaëtan Rivet @ 2020-08-14 20:30 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev, matan

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

-- 
Gaëtan

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] net/failsafe: don't double space warning
  2020-08-14 20:30   ` Gaëtan Rivet
@ 2020-08-18 18:32     ` Ferruh Yigit
  0 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2020-08-18 18:32 UTC (permalink / raw)
  To: Gaëtan Rivet, Stephen Hemminger; +Cc: dev, matan

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)


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-08-18 18:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-14 17:39 [dpdk-dev] [PATCH] net/failsafe: don't double space warning Stephen Hemminger
2020-08-14 20:28 ` Gaëtan Rivet
2020-08-14 20:30   ` Gaëtan Rivet
2020-08-18 18:32     ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).