DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
@ 2019-05-08 21:02 David Christensen
  2019-05-08 21:02 ` David Christensen
  2019-05-08 21:24 ` Thomas Monjalon
  0 siblings, 2 replies; 10+ messages in thread
From: David Christensen @ 2019-05-08 21:02 UTC (permalink / raw)
  To: dev; +Cc: David Christensen

Change "much" to "match" in a printf.

Signed-off-by: David Christensen <drc@linux.vnet.ibm.com>
---
v2:
* None
v3:
* None

 app/test/test_barrier.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_barrier.c b/app/test/test_barrier.c
index 82b572c..c219d56 100644
--- a/app/test/test_barrier.c
+++ b/app/test/test_barrier.c
@@ -252,7 +252,7 @@ struct lcore_plock_test {
 
 		/* race condition occurred, lock doesn't work properly */
 		if (sum[i] != pt[i].val || 2 * iter != pt[i].iter) {
-			printf("error: local and shared sums don't much\n");
+			printf("error: local and shared sums don't match\n");
 			rc = -1;
 		}
 	}
-- 
1.8.3.1

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

* [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-08 21:02 [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement David Christensen
@ 2019-05-08 21:02 ` David Christensen
  2019-05-08 21:24 ` Thomas Monjalon
  1 sibling, 0 replies; 10+ messages in thread
From: David Christensen @ 2019-05-08 21:02 UTC (permalink / raw)
  To: dev; +Cc: David Christensen

Change "much" to "match" in a printf.

Signed-off-by: David Christensen <drc@linux.vnet.ibm.com>
---
v2:
* None
v3:
* None

 app/test/test_barrier.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_barrier.c b/app/test/test_barrier.c
index 82b572c..c219d56 100644
--- a/app/test/test_barrier.c
+++ b/app/test/test_barrier.c
@@ -252,7 +252,7 @@ struct lcore_plock_test {
 
 		/* race condition occurred, lock doesn't work properly */
 		if (sum[i] != pt[i].val || 2 * iter != pt[i].iter) {
-			printf("error: local and shared sums don't much\n");
+			printf("error: local and shared sums don't match\n");
 			rc = -1;
 		}
 	}
-- 
1.8.3.1


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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-08 21:02 [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement David Christensen
  2019-05-08 21:02 ` David Christensen
@ 2019-05-08 21:24 ` Thomas Monjalon
  2019-05-08 21:24   ` Thomas Monjalon
  2019-05-08 22:50   ` David Christensen
  1 sibling, 2 replies; 10+ messages in thread
From: Thomas Monjalon @ 2019-05-08 21:24 UTC (permalink / raw)
  To: David Christensen; +Cc: dev

Hi David,

08/05/2019 23:02, David Christensen:
> v2:
> * None
> v3:
> * None

It seems your emails are not threaded at all.
It makes really hard to review them.
All patches of a patchset must be in the same thread,
ideally with a cover letter.
All versions of a patchset must be in the same thread,
ideally with the cover letter v1 being the common ancestor.
Please check http://core.dpdk.org/contribute/#send

You need also to report the acks you got in previous versions.

Thanks

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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-08 21:24 ` Thomas Monjalon
@ 2019-05-08 21:24   ` Thomas Monjalon
  2019-05-08 22:50   ` David Christensen
  1 sibling, 0 replies; 10+ messages in thread
From: Thomas Monjalon @ 2019-05-08 21:24 UTC (permalink / raw)
  To: David Christensen; +Cc: dev

Hi David,

08/05/2019 23:02, David Christensen:
> v2:
> * None
> v3:
> * None

It seems your emails are not threaded at all.
It makes really hard to review them.
All patches of a patchset must be in the same thread,
ideally with a cover letter.
All versions of a patchset must be in the same thread,
ideally with the cover letter v1 being the common ancestor.
Please check http://core.dpdk.org/contribute/#send

You need also to report the acks you got in previous versions.

Thanks



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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-08 21:24 ` Thomas Monjalon
  2019-05-08 21:24   ` Thomas Monjalon
@ 2019-05-08 22:50   ` David Christensen
  2019-05-08 22:50     ` David Christensen
  2019-05-09  7:46     ` Thomas Monjalon
  1 sibling, 2 replies; 10+ messages in thread
From: David Christensen @ 2019-05-08 22:50 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev


> It seems your emails are not threaded at all.
> It makes really hard to review them.
> All patches of a patchset must be in the same thread,
> ideally with a cover letter.
> All versions of a patchset must be in the same thread,
> ideally with the cover letter v1 being the common ancestor.
> Please check http://core.dpdk.org/contribute/#send
> 
> You need also to report the acks you got in previous versions.

I messed up with the first post in the patch series (no 0/4 message). In 
order to fix the long line problem, which post would you suggest I use 
as an anchor for my reply-to?  The original v1 1/4, the v3 1/4, or some 
other?

Dave

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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-08 22:50   ` David Christensen
@ 2019-05-08 22:50     ` David Christensen
  2019-05-09  7:46     ` Thomas Monjalon
  1 sibling, 0 replies; 10+ messages in thread
From: David Christensen @ 2019-05-08 22:50 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev


> It seems your emails are not threaded at all.
> It makes really hard to review them.
> All patches of a patchset must be in the same thread,
> ideally with a cover letter.
> All versions of a patchset must be in the same thread,
> ideally with the cover letter v1 being the common ancestor.
> Please check http://core.dpdk.org/contribute/#send
> 
> You need also to report the acks you got in previous versions.

I messed up with the first post in the patch series (no 0/4 message). In 
order to fix the long line problem, which post would you suggest I use 
as an anchor for my reply-to?  The original v1 1/4, the v3 1/4, or some 
other?

Dave


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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-08 22:50   ` David Christensen
  2019-05-08 22:50     ` David Christensen
@ 2019-05-09  7:46     ` Thomas Monjalon
  2019-05-09  7:46       ` Thomas Monjalon
  2019-05-09 20:03       ` Thomas Monjalon
  1 sibling, 2 replies; 10+ messages in thread
From: Thomas Monjalon @ 2019-05-09  7:46 UTC (permalink / raw)
  To: David Christensen; +Cc: dev

09/05/2019 00:50, David Christensen:
> 
> > It seems your emails are not threaded at all.
> > It makes really hard to review them.
> > All patches of a patchset must be in the same thread,
> > ideally with a cover letter.
> > All versions of a patchset must be in the same thread,
> > ideally with the cover letter v1 being the common ancestor.
> > Please check http://core.dpdk.org/contribute/#send
> > 
> > You need also to report the acks you got in previous versions.
> 
> I messed up with the first post in the patch series (no 0/4 message). In 
> order to fix the long line problem, which post would you suggest I use 
> as an anchor for my reply-to?  The original v1 1/4, the v3 1/4, or some 
> other?

The patches of v3 are not threaded together,
so when doing a v4 you can skip --in-reply-to.

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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-09  7:46     ` Thomas Monjalon
@ 2019-05-09  7:46       ` Thomas Monjalon
  2019-05-09 20:03       ` Thomas Monjalon
  1 sibling, 0 replies; 10+ messages in thread
From: Thomas Monjalon @ 2019-05-09  7:46 UTC (permalink / raw)
  To: David Christensen; +Cc: dev

09/05/2019 00:50, David Christensen:
> 
> > It seems your emails are not threaded at all.
> > It makes really hard to review them.
> > All patches of a patchset must be in the same thread,
> > ideally with a cover letter.
> > All versions of a patchset must be in the same thread,
> > ideally with the cover letter v1 being the common ancestor.
> > Please check http://core.dpdk.org/contribute/#send
> > 
> > You need also to report the acks you got in previous versions.
> 
> I messed up with the first post in the patch series (no 0/4 message). In 
> order to fix the long line problem, which post would you suggest I use 
> as an anchor for my reply-to?  The original v1 1/4, the v3 1/4, or some 
> other?

The patches of v3 are not threaded together,
so when doing a v4 you can skip --in-reply-to.



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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-09  7:46     ` Thomas Monjalon
  2019-05-09  7:46       ` Thomas Monjalon
@ 2019-05-09 20:03       ` Thomas Monjalon
  2019-05-09 20:03         ` Thomas Monjalon
  1 sibling, 1 reply; 10+ messages in thread
From: Thomas Monjalon @ 2019-05-09 20:03 UTC (permalink / raw)
  To: David Christensen; +Cc: dev

09/05/2019 09:46, Thomas Monjalon:
> 09/05/2019 00:50, David Christensen:
> > > It seems your emails are not threaded at all.
> > > It makes really hard to review them.
> > > All patches of a patchset must be in the same thread,
> > > ideally with a cover letter.
> > > All versions of a patchset must be in the same thread,
> > > ideally with the cover letter v1 being the common ancestor.
> > > Please check http://core.dpdk.org/contribute/#send
> > > 
> > > You need also to report the acks you got in previous versions.
> > 
> > I messed up with the first post in the patch series (no 0/4 message). In 
> > order to fix the long line problem, which post would you suggest I use 
> > as an anchor for my reply-to?  The original v1 1/4, the v3 1/4, or some 
> > other?
> 
> The patches of v3 are not threaded together,
> so when doing a v4 you can skip --in-reply-to.

Series applied with added acks, fixes lines, etc, thanks.

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

* Re: [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement
  2019-05-09 20:03       ` Thomas Monjalon
@ 2019-05-09 20:03         ` Thomas Monjalon
  0 siblings, 0 replies; 10+ messages in thread
From: Thomas Monjalon @ 2019-05-09 20:03 UTC (permalink / raw)
  To: David Christensen; +Cc: dev

09/05/2019 09:46, Thomas Monjalon:
> 09/05/2019 00:50, David Christensen:
> > > It seems your emails are not threaded at all.
> > > It makes really hard to review them.
> > > All patches of a patchset must be in the same thread,
> > > ideally with a cover letter.
> > > All versions of a patchset must be in the same thread,
> > > ideally with the cover letter v1 being the common ancestor.
> > > Please check http://core.dpdk.org/contribute/#send
> > > 
> > > You need also to report the acks you got in previous versions.
> > 
> > I messed up with the first post in the patch series (no 0/4 message). In 
> > order to fix the long line problem, which post would you suggest I use 
> > as an anchor for my reply-to?  The original v1 1/4, the v3 1/4, or some 
> > other?
> 
> The patches of v3 are not threaded together,
> so when doing a v4 you can skip --in-reply-to.

Series applied with added acks, fixes lines, etc, thanks.



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

end of thread, other threads:[~2019-05-09 20:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-08 21:02 [dpdk-dev] [PATCH v3 1/4] test: fix typo in print statement David Christensen
2019-05-08 21:02 ` David Christensen
2019-05-08 21:24 ` Thomas Monjalon
2019-05-08 21:24   ` Thomas Monjalon
2019-05-08 22:50   ` David Christensen
2019-05-08 22:50     ` David Christensen
2019-05-09  7:46     ` Thomas Monjalon
2019-05-09  7:46       ` Thomas Monjalon
2019-05-09 20:03       ` Thomas Monjalon
2019-05-09 20:03         ` Thomas Monjalon

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