netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net 0/2] MAINTAINERS: Update Yotam Gigi details
@ 2017-10-30  9:41 Yuval Mintz
  2017-10-30  9:41 ` [PATCH net 1/2] MAINTAINERS: Update Yotam's E-mail Yuval Mintz
  2017-10-30  9:41 ` [PATCH net 2/2] MAINTAINERS: Remove Yotam from mlxfw Yuval Mintz
  0 siblings, 2 replies; 5+ messages in thread
From: Yuval Mintz @ 2017-10-30  9:41 UTC (permalink / raw)
  To: netdev, davem; +Cc: mlxsw, yotam.gi, Yuval Mintz

Yotam has left Mellanox [at least temporarily] and we want to thank
him for his effort and wish him best of luck in his future endeavors.

This patch comes to re-organize Yotam's  maintainer responsibilities -

  a. Yotam is planning to continue (co-)maintaining IFE & PSAMPLE,
     so we're simply removing his corporate E-mail, replacing it with
     his private one.

  b. For mlxfw we're providing a mailing list as a replacement for his
     contact details.

Dave,

Please consider applying this to 'net'.

Thanks,
Yuval


Yotam Gigi (1):
  MAINTAINERS: Update Yotam's E-mail

Yuval Mintz (1):
  MAINTAINERS: Remove Yotam from mlxfw

 MAINTAINERS            | 6 +++---
 net/ife/ife.c          | 2 +-
 net/psample/psample.c  | 2 +-
 net/sched/act_sample.c | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

-- 
2.4.3

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

* [PATCH net 1/2] MAINTAINERS: Update Yotam's E-mail
  2017-10-30  9:41 [PATCH net 0/2] MAINTAINERS: Update Yotam Gigi details Yuval Mintz
@ 2017-10-30  9:41 ` Yuval Mintz
  2017-11-01  3:19   ` David Miller
  2017-10-30  9:41 ` [PATCH net 2/2] MAINTAINERS: Remove Yotam from mlxfw Yuval Mintz
  1 sibling, 1 reply; 5+ messages in thread
From: Yuval Mintz @ 2017-10-30  9:41 UTC (permalink / raw)
  To: netdev, davem; +Cc: mlxsw, yotam.gi, Yuval Mintz

From: Yotam Gigi <yotam.gi@gmail.com>

For the time being I will be available in my private mail. Update both the
MAINTAINERS file and the individual modules MODULE_AUTHOR directive with
the new address.

Signed-off-by: Yotam Gigi <yotam.gi@gmail.com>
Signed-off-by: Yuval Mintz <yuvalm@mellanox.com>
---
 MAINTAINERS            | 4 ++--
 net/ife/ife.c          | 2 +-
 net/psample/psample.c  | 2 +-
 net/sched/act_sample.c | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 3e95dd7..beac4ee 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -6677,7 +6677,7 @@ F:	include/net/ieee802154_netdev.h
 F:	Documentation/networking/ieee802154.txt
 
 IFE PROTOCOL
-M:	Yotam Gigi <yotamg@mellanox.com>
+M:	Yotam Gigi <yotam.gi@gmail.com>
 M:	Jamal Hadi Salim <jhs@mojatatu.com>
 F:	net/ife
 F:	include/net/ife.h
@@ -10897,7 +10897,7 @@ S:	Maintained
 F:	drivers/block/ps3vram.c
 
 PSAMPLE PACKET SAMPLING SUPPORT:
-M:	Yotam Gigi <yotamg@mellanox.com>
+M:	Yotam Gigi <yotam.gi@gmail.com>
 S:	Maintained
 F:	net/psample
 F:	include/net/psample.h
diff --git a/net/ife/ife.c b/net/ife/ife.c
index f360341..7d1ec76 100644
--- a/net/ife/ife.c
+++ b/net/ife/ife.c
@@ -137,6 +137,6 @@ int ife_tlv_meta_encode(void *skbdata, u16 attrtype, u16 dlen, const void *dval)
 EXPORT_SYMBOL_GPL(ife_tlv_meta_encode);
 
 MODULE_AUTHOR("Jamal Hadi Salim <jhs@mojatatu.com>");
-MODULE_AUTHOR("Yotam Gigi <yotamg@mellanox.com>");
+MODULE_AUTHOR("Yotam Gigi <yotam.gi@gmail.com>");
 MODULE_DESCRIPTION("Inter-FE LFB action");
 MODULE_LICENSE("GPL");
diff --git a/net/psample/psample.c b/net/psample/psample.c
index 3a6ad0f..64f9562 100644
--- a/net/psample/psample.c
+++ b/net/psample/psample.c
@@ -296,6 +296,6 @@ static void __exit psample_module_exit(void)
 module_init(psample_module_init);
 module_exit(psample_module_exit);
 
-MODULE_AUTHOR("Yotam Gigi <yotamg@mellanox.com>");
+MODULE_AUTHOR("Yotam Gigi <yotam.gi@gmail.com>");
 MODULE_DESCRIPTION("netlink channel for packet sampling");
 MODULE_LICENSE("GPL v2");
diff --git a/net/sched/act_sample.c b/net/sched/act_sample.c
index a9f9a2cc..8b5abcd 100644
--- a/net/sched/act_sample.c
+++ b/net/sched/act_sample.c
@@ -271,6 +271,6 @@ static void __exit sample_cleanup_module(void)
 module_init(sample_init_module);
 module_exit(sample_cleanup_module);
 
-MODULE_AUTHOR("Yotam Gigi <yotamg@mellanox.com>");
+MODULE_AUTHOR("Yotam Gigi <yotam.gi@gmail.com>");
 MODULE_DESCRIPTION("Packet sampling action");
 MODULE_LICENSE("GPL v2");
-- 
2.4.3

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

* [PATCH net 2/2] MAINTAINERS: Remove Yotam from mlxfw
  2017-10-30  9:41 [PATCH net 0/2] MAINTAINERS: Update Yotam Gigi details Yuval Mintz
  2017-10-30  9:41 ` [PATCH net 1/2] MAINTAINERS: Update Yotam's E-mail Yuval Mintz
@ 2017-10-30  9:41 ` Yuval Mintz
  2017-11-01  3:19   ` David Miller
  1 sibling, 1 reply; 5+ messages in thread
From: Yuval Mintz @ 2017-10-30  9:41 UTC (permalink / raw)
  To: netdev, davem; +Cc: mlxsw, yotam.gi, Yuval Mintz

Provide a mailing list for maintenance of the module instead.

Signed-off-by: Yuval Mintz <yuvalm@mellanox.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index beac4ee..e2dc868 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8750,7 +8750,7 @@ Q:	http://patchwork.ozlabs.org/project/netdev/list/
 F:	drivers/net/ethernet/mellanox/mlxsw/
 
 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
-M:	Yotam Gigi <yotamg@mellanox.com>
+M:	mlxsw@mellanox.com
 L:	netdev@vger.kernel.org
 S:	Supported
 W:	http://www.mellanox.com
-- 
2.4.3

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

* Re: [PATCH net 1/2] MAINTAINERS: Update Yotam's E-mail
  2017-10-30  9:41 ` [PATCH net 1/2] MAINTAINERS: Update Yotam's E-mail Yuval Mintz
@ 2017-11-01  3:19   ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2017-11-01  3:19 UTC (permalink / raw)
  To: yuvalm; +Cc: netdev, mlxsw, yotam.gi

From: Yuval Mintz <yuvalm@mellanox.com>
Date: Mon, 30 Oct 2017 11:41:36 +0200

> From: Yotam Gigi <yotam.gi@gmail.com>
> 
> For the time being I will be available in my private mail. Update both the
> MAINTAINERS file and the individual modules MODULE_AUTHOR directive with
> the new address.
> 
> Signed-off-by: Yotam Gigi <yotam.gi@gmail.com>
> Signed-off-by: Yuval Mintz <yuvalm@mellanox.com>

Applied.

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

* Re: [PATCH net 2/2] MAINTAINERS: Remove Yotam from mlxfw
  2017-10-30  9:41 ` [PATCH net 2/2] MAINTAINERS: Remove Yotam from mlxfw Yuval Mintz
@ 2017-11-01  3:19   ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2017-11-01  3:19 UTC (permalink / raw)
  To: yuvalm; +Cc: netdev, mlxsw, yotam.gi

From: Yuval Mintz <yuvalm@mellanox.com>
Date: Mon, 30 Oct 2017 11:41:37 +0200

> Provide a mailing list for maintenance of the module instead.
> 
> Signed-off-by: Yuval Mintz <yuvalm@mellanox.com>

Applied.

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

end of thread, other threads:[~2017-11-01  3:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-30  9:41 [PATCH net 0/2] MAINTAINERS: Update Yotam Gigi details Yuval Mintz
2017-10-30  9:41 ` [PATCH net 1/2] MAINTAINERS: Update Yotam's E-mail Yuval Mintz
2017-11-01  3:19   ` David Miller
2017-10-30  9:41 ` [PATCH net 2/2] MAINTAINERS: Remove Yotam from mlxfw Yuval Mintz
2017-11-01  3:19   ` David Miller

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