* Re: [PATCH 00/22] Replace comments with C99 initializers
[not found] ` <87fsn2zaix.fsf@kernel.org>
@ 2022-03-28 11:51 ` Benjamin Stürz
2022-03-28 12:31 ` Kalle Valo
2022-03-28 20:20 ` Jakub Kicinski
0 siblings, 2 replies; 3+ messages in thread
From: Benjamin Stürz @ 2022-03-28 11:51 UTC (permalink / raw)
To: Kalle Valo
Cc: linux-arm-kernel, linux-kernel, linux-samsung-soc, linux-ia64,
linux-acpi, devel, linux-atm-general, netdev, linux-edac,
linux-gpio, linux-rdma, linux-input, linuxppc-dev, linux-media,
wcn36xx, linux-wireless, linux-pci
On 28.03.22 11:33, Kalle Valo wrote:
> Benjamin Stürz <benni@stuerz.xyz> writes:
>
>> This patch series replaces comments with C99's designated initializers
>> in a few places. It also adds some enum initializers. This is my first
>> time contributing to the Linux kernel, therefore I'm probably doing a
>> lot of things the wrong way. I'm sorry for that.
>
> Just a small tip: If you are new, start with something small and learn
> from that. Don't do a controversial big patchset spanning multiple
> subsystems, that's the hard way to learn things. First submit one patch
> at a time to one subsystem and gain understanding of the process that
> way.
>
I actually thought this would be such simple thing. Do you know of any
good thing where to start? I already looked into drivers/staging/*/TODO
and didn't found something for me personally.
Should I drop this patchset and start with something different? If yes,
what would the proper way to drop it? Just announcing, that this is
going nowhere in a separate patch?
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 00/22] Replace comments with C99 initializers
2022-03-28 11:51 ` [PATCH 00/22] Replace comments with C99 initializers Benjamin Stürz
@ 2022-03-28 12:31 ` Kalle Valo
2022-03-28 20:20 ` Jakub Kicinski
1 sibling, 0 replies; 3+ messages in thread
From: Kalle Valo @ 2022-03-28 12:31 UTC (permalink / raw)
To: Benjamin Stürz
Cc: linux-arm-kernel, linux-kernel, linux-samsung-soc, linux-ia64,
linux-acpi, devel, linux-atm-general, netdev, linux-edac,
linux-gpio, linux-rdma, linux-input, linuxppc-dev, linux-media,
wcn36xx, linux-wireless, linux-pci
Benjamin Stürz <benni@stuerz.xyz> writes:
> On 28.03.22 11:33, Kalle Valo wrote:
>> Benjamin Stürz <benni@stuerz.xyz> writes:
>>
>>> This patch series replaces comments with C99's designated initializers
>>> in a few places. It also adds some enum initializers. This is my first
>>> time contributing to the Linux kernel, therefore I'm probably doing a
>>> lot of things the wrong way. I'm sorry for that.
>>
>> Just a small tip: If you are new, start with something small and learn
>> from that. Don't do a controversial big patchset spanning multiple
>> subsystems, that's the hard way to learn things. First submit one patch
>> at a time to one subsystem and gain understanding of the process that
>> way.
>
> I actually thought this would be such simple thing.
If there are 22 patches and a dozen different subsystems it's far from
simple, as you noticed from your replies :)
> Do you know of any good thing where to start? I already looked into
> drivers/staging/*/TODO and didn't found something for me personally.
I work in wireless and one my annoyance is use of BUG_ON() in wireless
drivers. There just isn't a good reason to crash the whole system when
there's a bug in a wireless driver or firmware. You can get list like
this:
git grep BUG_ON drivers/net/wireless/ | grep -v BUILD_BUG_ON
It might not be always trivial to fix BUG_ON() usage, so it would be a
good challenge as well. See the wiki link below how to submit wireless
patches. But just send a one patch first, don't work for several hours
and then submit a big set of patches.
We also might have a todo list somewhere in the wiki, but don't know how
to up-to-date it is.
> Should I drop this patchset and start with something different?
Like Mauro suggested, splitting the patchset per subsystem is a very
good idea. And first try out with one subsystem, and after seeing how it
goes (if they are accepted or rejected), decide if you send more patches
to other subsystems.
> If yes, what would the proper way to drop it? Just announcing, that
> this is going nowhere in a separate patch?
Replying to Mauro's email and telling your intentions is a good way to
inform everyone.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 00/22] Replace comments with C99 initializers
2022-03-28 11:51 ` [PATCH 00/22] Replace comments with C99 initializers Benjamin Stürz
2022-03-28 12:31 ` Kalle Valo
@ 2022-03-28 20:20 ` Jakub Kicinski
1 sibling, 0 replies; 3+ messages in thread
From: Jakub Kicinski @ 2022-03-28 20:20 UTC (permalink / raw)
To: Benjamin Stürz
Cc: Kalle Valo, linux-arm-kernel, linux-kernel, linux-samsung-soc,
linux-ia64, linux-acpi, devel, linux-atm-general, netdev,
linux-edac, linux-gpio, linux-rdma, linux-input, linuxppc-dev,
linux-media, wcn36xx, linux-wireless, linux-pci
On Mon, 28 Mar 2022 13:51:42 +0200 Benjamin Stürz wrote:
> > Just a small tip: If you are new, start with something small and learn
> > from that. Don't do a controversial big patchset spanning multiple
> > subsystems, that's the hard way to learn things. First submit one patch
> > at a time to one subsystem and gain understanding of the process that
> > way.
>
> I actually thought this would be such simple thing. Do you know of any
> good thing where to start? I already looked into drivers/staging/*/TODO
> and didn't found something for me personally.
FWIW on the netdev side there's work coming to convert a set of features
from unsigned long to a BITMAP which will require converting a lot of
drivers to an explicit helpers from direct access.
https://lore.kernel.org/all/20220324154932.17557-14-shenjian15@huawei.com/
If it seems interesting enough you can try reaching out to Jian Shen.
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-03-28 20:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20220326165909.506926-1-benni@stuerz.xyz>
[not found] ` <8f9271b6-0381-70a9-f0c2-595b2235866a@stuerz.xyz>
[not found] ` <87fsn2zaix.fsf@kernel.org>
2022-03-28 11:51 ` [PATCH 00/22] Replace comments with C99 initializers Benjamin Stürz
2022-03-28 12:31 ` Kalle Valo
2022-03-28 20:20 ` Jakub Kicinski
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).