diff mbox series

[net-next,v9,3/4] MAINTAINERS: add Rust PHY abstractions for ETHERNET PHY LIBRARY

Message ID 20231205011420.1246000-4-fujita.tomonori@gmail.com (mailing list archive)
State Superseded
Delegated to: Netdev Maintainers
Headers show
Series Rust abstractions for network PHY drivers | expand

Checks

Context Check Description
netdev/series_format success Posting correctly formatted
netdev/tree_selection success Clearly marked for net-next
netdev/ynl fail Tree is dirty after regen; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 8 this patch: 8
netdev/cc_maintainers warning 4 maintainers not CCed: bjorn3_gh@protonmail.com a.hindborg@samsung.com gary@garyguo.net alex.gaynor@gmail.com
netdev/build_clang success Errors and warnings before: 8 this patch: 8
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 8 this patch: 8
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 14 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

FUJITA Tomonori Dec. 5, 2023, 1:14 a.m. UTC
Adds me as a maintainer and Trevor as a reviewer.

The files are placed at rust/kernel/ directory for now but the files
are likely to be moved to net/ directory once a new Rust build system
is implemented.

Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
---
 MAINTAINERS | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Jarkko Sakkinen Dec. 5, 2023, 1:49 a.m. UTC | #1
On Tue Dec 5, 2023 at 3:14 AM EET, FUJITA Tomonori wrote:
> Adds me as a maintainer and Trevor as a reviewer.
>
> The files are placed at rust/kernel/ directory for now but the files
> are likely to be moved to net/ directory once a new Rust build system
> is implemented.
>
> Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
> Reviewed-by: Andrew Lunn <andrew@lunn.ch>

This is lacking sob from Trevor.

BR, Jarkko
Trevor Gross Dec. 5, 2023, 1:53 a.m. UTC | #2
On Mon, Dec 4, 2023 at 8:16 PM FUJITA Tomonori
<fujita.tomonori@gmail.com> wrote:
>
> Adds me as a maintainer and Trevor as a reviewer.
>
> The files are placed at rust/kernel/ directory for now but the files
> are likely to be moved to net/ directory once a new Rust build system
> is implemented.
>
> Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
> Reviewed-by: Andrew Lunn <andrew@lunn.ch>
> ---

You may add:

Signed-off-by: Trevor Gross <tmgross@umich.edu>
Trevor Gross Dec. 5, 2023, 1:53 a.m. UTC | #3
On Mon, Dec 4, 2023 at 8:49 PM Jarkko Sakkinen <jarkko@kernel.org> wrote:
>
> On Tue Dec 5, 2023 at 3:14 AM EET, FUJITA Tomonori wrote:
> > Adds me as a maintainer and Trevor as a reviewer.
> >
> > The files are placed at rust/kernel/ directory for now but the files
> > are likely to be moved to net/ directory once a new Rust build system
> > is implemented.
> >
> > Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
> > Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>
> This is lacking sob from Trevor.
>
> BR, Jarkko

Thanks, was not aware this was needed.
Jarkko Sakkinen Dec. 5, 2023, 1:57 a.m. UTC | #4
On Tue Dec 5, 2023 at 3:53 AM EET, Trevor Gross wrote:
> On Mon, Dec 4, 2023 at 8:49 PM Jarkko Sakkinen <jarkko@kernel.org> wrote:
> >
> > On Tue Dec 5, 2023 at 3:14 AM EET, FUJITA Tomonori wrote:
> > > Adds me as a maintainer and Trevor as a reviewer.
> > >
> > > The files are placed at rust/kernel/ directory for now but the files
> > > are likely to be moved to net/ directory once a new Rust build system
> > > is implemented.
> > >
> > > Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
> > > Reviewed-by: Andrew Lunn <andrew@lunn.ch>
> >
> > This is lacking sob from Trevor.
> >
> > BR, Jarkko
>
> Thanks, was not aware this was needed.

Trevor is an actor here so it is just common sense to be aware that
the person is signed up for the job. Compare to any other contract
that you've made in your span of life :-)

BR, Jarkko
FUJITA Tomonori Dec. 5, 2023, 3:45 a.m. UTC | #5
On Mon, 4 Dec 2023 20:53:23 -0500
Trevor Gross <tmgross@umich.edu> wrote:

> On Mon, Dec 4, 2023 at 8:16 PM FUJITA Tomonori
> <fujita.tomonori@gmail.com> wrote:
>>
>> Adds me as a maintainer and Trevor as a reviewer.
>>
>> The files are placed at rust/kernel/ directory for now but the files
>> are likely to be moved to net/ directory once a new Rust build system
>> is implemented.
>>
>> Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
>> Reviewed-by: Andrew Lunn <andrew@lunn.ch>
>> ---
> 
> You may add:
> 
> Signed-off-by: Trevor Gross <tmgross@umich.edu>

Thanks, I will.
diff mbox series

Patch

diff --git a/MAINTAINERS b/MAINTAINERS
index 2d2865c1e479..0166188446ac 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7922,6 +7922,14 @@  F:	include/uapi/linux/mdio.h
 F:	include/uapi/linux/mii.h
 F:	net/core/of_net.c
 
+ETHERNET PHY LIBRARY [RUST]
+M:	FUJITA Tomonori <fujita.tomonori@gmail.com>
+R:	Trevor Gross <tmgross@umich.edu>
+L:	netdev@vger.kernel.org
+L:	rust-for-linux@vger.kernel.org
+S:	Maintained
+F:	rust/kernel/net/phy.rs
+
 EXEC & BINFMT API
 R:	Eric Biederman <ebiederm@xmission.com>
 R:	Kees Cook <keescook@chromium.org>