DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] maintainers: update for interrupt subsystem
@ 2020-06-03 15:22 Harman Kalra
  2020-06-16 22:10 ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Harman Kalra @ 2020-06-03 15:22 UTC (permalink / raw)
  To: dev, Thomas Monjalon
  Cc: stephen, jgrajcia, david.marchand, anatoly.burakov,
	cunming.liang, jianfeng.tan, ndabilpuram, jia.guo, danny.zhou,
	jblunck, nelio.laranjeiro, bluca, shahafs, Harman Kalra

updating MAINTAINERS file for interrupt subsytem.

Signed-off-by: Harman Kalra <hkalra@marvell.com>
---
 MAINTAINERS | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index d2b286701..2f93e4aec 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -181,7 +181,6 @@ F: app/test/test_cycles.c
 F: app/test/test_debug.c
 F: app/test/test_eal*
 F: app/test/test_errno.c
-F: app/test/test_interrupts.c
 F: app/test/test_logs.c
 F: app/test/test_memcpy*
 F: app/test/test_per_lcore.c
@@ -221,6 +220,14 @@ F: app/test/test_malloc.c
 F: app/test/test_memory.c
 F: app/test/test_memzone.c
 
+Interrupt Subsystem
+M: Harman Kalra <hkalra@marvell.com>
+F: lib/librte_eal/include/rte_interrupts.h
+F: lib/librte_eal/include/rte_eal_interrupts.h
+F: lib/librte_eal/linux/eal_interrupts.c
+F: lib/librte_eal/freebsd/eal_interrupts.c
+F: app/test/test_interrupts.c
+
 Keep alive
 F: lib/librte_eal/include/rte_keepalive.h
 F: lib/librte_eal/common/rte_keepalive.c
-- 
2.18.0


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

* Re: [dpdk-dev] [PATCH] maintainers: update for interrupt subsystem
  2020-06-03 15:22 [dpdk-dev] [PATCH] maintainers: update for interrupt subsystem Harman Kalra
@ 2020-06-16 22:10 ` Thomas Monjalon
  2020-06-17 12:13   ` [dpdk-dev] [EXT] " Harman Kalra
  2020-06-17 12:28   ` [dpdk-dev] [PATCH v3] " Harman Kalra
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Monjalon @ 2020-06-16 22:10 UTC (permalink / raw)
  To: Harman Kalra
  Cc: dev, stephen, jgrajcia, david.marchand, anatoly.burakov,
	cunming.liang, jianfeng.tan, ndabilpuram, jia.guo, danny.zhou,
	bluca, shahafs

03/06/2020 17:22, Harman Kalra:
> updating MAINTAINERS file for interrupt subsytem.
> 
> Signed-off-by: Harman Kalra <hkalra@marvell.com>
> ---
> +Interrupt Subsystem
> +M: Harman Kalra <hkalra@marvell.com>
> +F: lib/librte_eal/include/rte_interrupts.h
> +F: lib/librte_eal/include/rte_eal_interrupts.h
> +F: lib/librte_eal/linux/eal_interrupts.c
> +F: lib/librte_eal/freebsd/eal_interrupts.c

Would you agree simplifying those lines to the following?
F: lib/librte_eal/*/*interrupts.*




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

* Re: [dpdk-dev] [EXT] Re: [PATCH] maintainers: update for interrupt subsystem
  2020-06-16 22:10 ` Thomas Monjalon
@ 2020-06-17 12:13   ` Harman Kalra
  2020-06-17 12:28   ` [dpdk-dev] [PATCH v3] " Harman Kalra
  1 sibling, 0 replies; 5+ messages in thread
From: Harman Kalra @ 2020-06-17 12:13 UTC (permalink / raw)
  To: Thomas Monjalon
  Cc: dev, stephen, jgrajcia, david.marchand, anatoly.burakov,
	cunming.liang, jianfeng.tan, jia.guo, danny.zhou, bluca, shahafs

On Wed, Jun 17, 2020 at 12:10:40AM +0200, Thomas Monjalon wrote:
> External Email
> 
> ----------------------------------------------------------------------
> 03/06/2020 17:22, Harman Kalra:
> > updating MAINTAINERS file for interrupt subsytem.
> > 
> > Signed-off-by: Harman Kalra <hkalra@marvell.com>
> > ---
> > +Interrupt Subsystem
> > +M: Harman Kalra <hkalra@marvell.com>
> > +F: lib/librte_eal/include/rte_interrupts.h
> > +F: lib/librte_eal/include/rte_eal_interrupts.h
> > +F: lib/librte_eal/linux/eal_interrupts.c
> > +F: lib/librte_eal/freebsd/eal_interrupts.c
> 
> Would you agree simplifying those lines to the following?
> F: lib/librte_eal/*/*interrupts.*

Sure, will send the updated patch

Thanks
Harman
		       
> 
> 
> 

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

* [dpdk-dev] [PATCH v3] maintainers: update for interrupt subsystem
  2020-06-16 22:10 ` Thomas Monjalon
  2020-06-17 12:13   ` [dpdk-dev] [EXT] " Harman Kalra
@ 2020-06-17 12:28   ` Harman Kalra
  2020-06-23 21:21     ` Thomas Monjalon
  1 sibling, 1 reply; 5+ messages in thread
From: Harman Kalra @ 2020-06-17 12:28 UTC (permalink / raw)
  To: dev, Thomas Monjalon
  Cc: stephen, jgrajcia, david.marchand, anatoly.burakov,
	cunming.liang, jianfeng.tan, ndabilpuram, jia.guo, danny.zhou,
	jblunck, nelio.laranjeiro, bluca, shahafs, Harman Kalra

updating MAINTAINERS file for interrupt subsytem.

Signed-off-by: Harman Kalra <hkalra@marvell.com>
---
V2: simplified way for covering all interrupt related files.

V3: in replying to original mail.

 MAINTAINERS | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 816696caf..45b6c3a99 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -182,7 +182,6 @@ F: app/test/test_cycles.c
 F: app/test/test_debug.c
 F: app/test/test_eal*
 F: app/test/test_errno.c
-F: app/test/test_interrupts.c
 F: app/test/test_logs.c
 F: app/test/test_memcpy*
 F: app/test/test_per_lcore.c
@@ -223,6 +222,11 @@ F: app/test/test_malloc.c
 F: app/test/test_memory.c
 F: app/test/test_memzone.c
 
+Interrupt Subsystem
+M: Harman Kalra <hkalra@marvell.com>
+F: lib/librte_eal/*/*interrupts.*
+F: app/test/test_interrupts.c
+
 Keep alive
 F: lib/librte_eal/include/rte_keepalive.h
 F: lib/librte_eal/common/rte_keepalive.c
-- 
2.18.0


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

* Re: [dpdk-dev] [PATCH v3] maintainers: update for interrupt subsystem
  2020-06-17 12:28   ` [dpdk-dev] [PATCH v3] " Harman Kalra
@ 2020-06-23 21:21     ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2020-06-23 21:21 UTC (permalink / raw)
  To: Harman Kalra
  Cc: dev, stephen, jgrajcia, david.marchand, anatoly.burakov,
	cunming.liang, jianfeng.tan, ndabilpuram, jia.guo, bluca,
	shahafs

17/06/2020 14:28, Harman Kalra:
> updating MAINTAINERS file for interrupt subsytem.
> 
> Signed-off-by: Harman Kalra <hkalra@marvell.com>
> ---
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> +Interrupt Subsystem
> +M: Harman Kalra <hkalra@marvell.com>
> +F: lib/librte_eal/*/*interrupts.*
> +F: app/test/test_interrupts.c

Applied, thanks for volunteering




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

end of thread, other threads:[~2020-06-23 21:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-03 15:22 [dpdk-dev] [PATCH] maintainers: update for interrupt subsystem Harman Kalra
2020-06-16 22:10 ` Thomas Monjalon
2020-06-17 12:13   ` [dpdk-dev] [EXT] " Harman Kalra
2020-06-17 12:28   ` [dpdk-dev] [PATCH v3] " Harman Kalra
2020-06-23 21:21     ` 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).