linux-wpan.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154
       [not found] <20240122184543.2501493-1-leitao@debian.org>
@ 2024-01-22 18:45 ` Breno Leitao
  2024-01-24 16:51   ` Miquel Raynal
  0 siblings, 1 reply; 5+ messages in thread
From: Breno Leitao @ 2024-01-22 18:45 UTC (permalink / raw)
  To: kuba, davem, abeni, edumazet, Alexander Aring, Stefan Schmidt,
	Miquel Raynal, Paolo Abeni
  Cc: dsahern, weiwan, open list:IEEE 802.15.4 SUBSYSTEM,
	open list:NETWORKING [GENERAL],
	open list

W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to ieee802154 modules.

Signed-off-by: Breno Leitao <leitao@debian.org>
Acked-by: Stefan Schmidt <stefan@datenfreihafen.org>
---
 net/ieee802154/6lowpan/core.c | 1 +
 net/ieee802154/socket.c       | 1 +
 2 files changed, 2 insertions(+)

diff --git a/net/ieee802154/6lowpan/core.c b/net/ieee802154/6lowpan/core.c
index 2c087b7f17c5..e643f52663f9 100644
--- a/net/ieee802154/6lowpan/core.c
+++ b/net/ieee802154/6lowpan/core.c
@@ -280,5 +280,6 @@ static void __exit lowpan_cleanup_module(void)
 
 module_init(lowpan_init_module);
 module_exit(lowpan_cleanup_module);
+MODULE_DESCRIPTION("IPv6 over Low power Wireless Personal Area Network IEEE 802.15.4 core");
 MODULE_LICENSE("GPL");
 MODULE_ALIAS_RTNL_LINK("lowpan");
diff --git a/net/ieee802154/socket.c b/net/ieee802154/socket.c
index 00302e8b9615..990a83455dcf 100644
--- a/net/ieee802154/socket.c
+++ b/net/ieee802154/socket.c
@@ -1137,4 +1137,5 @@ module_init(af_ieee802154_init);
 module_exit(af_ieee802154_remove);
 
 MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("IEEE 802.15.4 socket interface");
 MODULE_ALIAS_NETPROTO(PF_IEEE802154);
-- 
2.39.3


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

* Re: [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154
  2024-01-22 18:45 ` [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154 Breno Leitao
@ 2024-01-24 16:51   ` Miquel Raynal
  2024-01-25 10:01     ` Breno Leitao
  0 siblings, 1 reply; 5+ messages in thread
From: Miquel Raynal @ 2024-01-24 16:51 UTC (permalink / raw)
  To: Breno Leitao
  Cc: kuba, davem, abeni, edumazet, Alexander Aring, Stefan Schmidt,
	Paolo Abeni, dsahern, weiwan, open list:IEEE 802.15.4 SUBSYSTEM,
	open list:NETWORKING [GENERAL],
	open list

Hi Breno,

leitao@debian.org wrote on Mon, 22 Jan 2024 10:45:23 -0800:

> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to ieee802154 modules.
> 
> Signed-off-by: Breno Leitao <leitao@debian.org>
> Acked-by: Stefan Schmidt <stefan@datenfreihafen.org>

I just see the v2 now. Please use "v2" in your commit title using -v or
git-format-patch.

I'll take it through wpan.

Thanks,
Miquèl

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

* Re: [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154
  2024-01-24 16:51   ` Miquel Raynal
@ 2024-01-25 10:01     ` Breno Leitao
  2024-01-25 14:55       ` Miquel Raynal
  0 siblings, 1 reply; 5+ messages in thread
From: Breno Leitao @ 2024-01-25 10:01 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: kuba, davem, abeni, edumazet, Alexander Aring, Stefan Schmidt,
	Paolo Abeni, dsahern, weiwan, open list:IEEE 802.15.4 SUBSYSTEM,
	open list:NETWORKING [GENERAL],
	open list

Hello Miquèl,

On Wed, Jan 24, 2024 at 05:51:58PM +0100, Miquel Raynal wrote:
> Hi Breno,
> 
> leitao@debian.org wrote on Mon, 22 Jan 2024 10:45:23 -0800:
> 
> > W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> > Add descriptions to ieee802154 modules.
> > 
> > Signed-off-by: Breno Leitao <leitao@debian.org>
> > Acked-by: Stefan Schmidt <stefan@datenfreihafen.org>
> 
> I just see the v2 now. Please use "v2" in your commit title using -v or
> git-format-patch.

Sorry, I am not sure I followed what you meant.  I've sent the v2, which
contains the 'v2' _tag_:

https://lore.kernel.org/all/20240123190332.677489-1-leitao@debian.org/

I didn't include the ieee802154 fix because the maintainers asked me to
split the patchset in a maximum of 10 patches[1], and I am doing it by
area (net, wifi, ethernet, etc). That means that this patch was not send
on the first batch, that is prioritizing Ethernet drivers (which is
described in the cover letter of v2)[2].

Anyway, let me know if I missed something here.

Thanks!
[1] https://lore.kernel.org/all/20240122105708.52d33fa0@kernel.org/
[2] https://lore.kernel.org/all/20240123190332.677489-1-leitao@debian.org/

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

* Re: [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154
  2024-01-25 10:01     ` Breno Leitao
@ 2024-01-25 14:55       ` Miquel Raynal
  2024-01-25 15:36         ` Breno Leitao
  0 siblings, 1 reply; 5+ messages in thread
From: Miquel Raynal @ 2024-01-25 14:55 UTC (permalink / raw)
  To: Breno Leitao
  Cc: kuba, davem, abeni, edumazet, Alexander Aring, Stefan Schmidt,
	Paolo Abeni, dsahern, weiwan, open list:IEEE 802.15.4 SUBSYSTEM,
	open list:NETWORKING [GENERAL],
	open list

Hi Breno,

leitao@debian.org wrote on Thu, 25 Jan 2024 02:01:06 -0800:

> Hello Miquèl,
> 
> On Wed, Jan 24, 2024 at 05:51:58PM +0100, Miquel Raynal wrote:
> > Hi Breno,
> > 
> > leitao@debian.org wrote on Mon, 22 Jan 2024 10:45:23 -0800:
> >   
> > > W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> > > Add descriptions to ieee802154 modules.
> > > 
> > > Signed-off-by: Breno Leitao <leitao@debian.org>
> > > Acked-by: Stefan Schmidt <stefan@datenfreihafen.org>  
> > 
> > I just see the v2 now. Please use "v2" in your commit title using -v or
> > git-format-patch.  
> 
> Sorry, I am not sure I followed what you meant.  I've sent the v2, which
> contains the 'v2' _tag_:

I believe *this* is a v2 because you fixed your initial patch,
following Stefan's suggestion.

Anyway, it's fine for me to merge this patch through net directly (I
don't know if net maintainers want W=1 fixes to go through net or
net-next) so:

Acked-by: Miquel Raynal <miquel.raynal@bootlin.com>

Thanks,
Miquèl

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

* Re: [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154
  2024-01-25 14:55       ` Miquel Raynal
@ 2024-01-25 15:36         ` Breno Leitao
  0 siblings, 0 replies; 5+ messages in thread
From: Breno Leitao @ 2024-01-25 15:36 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: kuba, davem, abeni, edumazet, Alexander Aring, Stefan Schmidt,
	Paolo Abeni, dsahern, weiwan, open list:IEEE 802.15.4 SUBSYSTEM,
	open list:NETWORKING [GENERAL],
	open list

On Thu, Jan 25, 2024 at 03:55:32PM +0100, Miquel Raynal wrote:
> Hi Breno,
> 
> leitao@debian.org wrote on Thu, 25 Jan 2024 02:01:06 -0800:
> 
> > Hello Miquèl,
> > 
> > On Wed, Jan 24, 2024 at 05:51:58PM +0100, Miquel Raynal wrote:
> > > Hi Breno,
> > > 
> > > leitao@debian.org wrote on Mon, 22 Jan 2024 10:45:23 -0800:
> > >   
> > > > W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> > > > Add descriptions to ieee802154 modules.
> > > > 
> > > > Signed-off-by: Breno Leitao <leitao@debian.org>
> > > > Acked-by: Stefan Schmidt <stefan@datenfreihafen.org>  
> > > 
> > > I just see the v2 now. Please use "v2" in your commit title using -v or
> > > git-format-patch.  
> > 
> > Sorry, I am not sure I followed what you meant.  I've sent the v2, which
> > contains the 'v2' _tag_:
> 
> I believe *this* is a v2 because you fixed your initial patch,
> following Stefan's suggestion.
> 
> Anyway, it's fine for me to merge this patch through net directly (I
> don't know if net maintainers want W=1 fixes to go through net or
> net-next) so:

Thanks Miquèl. Jakub convinced Paolo that these fixes should go through
net, that is why I am targeting `net`.

https://lore.kernel.org/all/20240122105708.52d33fa0@kernel.org/

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

end of thread, other threads:[~2024-01-25 15:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20240122184543.2501493-1-leitao@debian.org>
2024-01-22 18:45 ` [PATCH net-next 02/22] net: fill in MODULE_DESCRIPTION()s for ieee802154 Breno Leitao
2024-01-24 16:51   ` Miquel Raynal
2024-01-25 10:01     ` Breno Leitao
2024-01-25 14:55       ` Miquel Raynal
2024-01-25 15:36         ` Breno Leitao

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