* Looking for ways to contribute
@ 2023-08-04 11:58 ozlinux
2023-08-04 12:06 ` Mario Marietto
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: ozlinux @ 2023-08-04 11:58 UTC (permalink / raw)
To: kernelnewbies
Hi, I am new here. I have a fair amount of experience with C/C++, with a
3D graphics background. I have been looking for ways to contribute,
particularly to networking, as that is what interests me, but I can't
find anything to work on. If anyone knows where to point me for this, it
would be greatly appreciated.
_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Looking for ways to contribute
2023-08-04 11:58 Looking for ways to contribute ozlinux
@ 2023-08-04 12:06 ` Mario Marietto
2023-08-04 16:03 ` Philipp Hortmann
2023-08-06 11:29 ` Richard
2 siblings, 0 replies; 5+ messages in thread
From: Mario Marietto @ 2023-08-04 12:06 UTC (permalink / raw)
To: ozlinux; +Cc: kernelnewbies
[-- Attachment #1.1: Type: text/plain, Size: 645 bytes --]
Do you have some experience with FreeBSD ?
On Fri, Aug 4, 2023 at 1:59 PM <ozlinux@hotmail.com> wrote:
> Hi, I am new here. I have a fair amount of experience with C/C++, with a
> 3D graphics background. I have been looking for ways to contribute,
> particularly to networking, as that is what interests me, but I can't
> find anything to work on. If anyone knows where to point me for this, it
> would be greatly appreciated.
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies@kernelnewbies.org
> https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>
--
Mario.
[-- Attachment #1.2: Type: text/html, Size: 1234 bytes --]
[-- Attachment #2: Type: text/plain, Size: 170 bytes --]
_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Looking for ways to contribute
2023-08-04 11:58 Looking for ways to contribute ozlinux
2023-08-04 12:06 ` Mario Marietto
@ 2023-08-04 16:03 ` Philipp Hortmann
2023-08-06 11:29 ` Richard
2 siblings, 0 replies; 5+ messages in thread
From: Philipp Hortmann @ 2023-08-04 16:03 UTC (permalink / raw)
To: kernelnewbies
On 8/4/23 13:58, ozlinux@hotmail.com wrote:
> Hi, I am new here. I have a fair amount of experience with C/C++, with a
> 3D graphics background. I have been looking for ways to contribute,
> particularly to networking, as that is what interests me, but I can't
> find anything to work on. If anyone knows where to point me for this, it
> would be greatly appreciated.
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies@kernelnewbies.org
> https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Hi,
please read:
Get personal support for your first kernel patch
https://www.mail-archive.com/kernelnewbies@kernelnewbies.org/msg22219.html
And also the later email.
I have limited access to my mails during the next 8 days.
Bye Philipp
_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Looking for ways to contribute
2023-08-04 11:58 Looking for ways to contribute ozlinux
2023-08-04 12:06 ` Mario Marietto
2023-08-04 16:03 ` Philipp Hortmann
@ 2023-08-06 11:29 ` Richard
2023-08-06 12:08 ` ozlinux
2 siblings, 1 reply; 5+ messages in thread
From: Richard @ 2023-08-06 11:29 UTC (permalink / raw)
To: kernelnewbies
I can recommend something I did:
Read and figure out network source code (whatever interests you in
net/ipv4/ for example) and wheneever you have understood what a function
does write some documentation for it (ideally in the kerneldoc format)
and submit this doc as your patch.
Also, as a prerequisite, I recommend you to read "Linux Kernel
Development" by Robert Love. It's important to get the fundamental
differences to user space. For example the whole thing that there is
process context and interrupt context. And what softirqs are.
-- Richard
On 04.08.23 13:58, ozlinux@hotmail.com wrote:
> Hi, I am new here. I have a fair amount of experience with C/C++, with a
> 3D graphics background. I have been looking for ways to contribute,
> particularly to networking, as that is what interests me, but I can't
> find anything to work on. If anyone knows where to point me for this, it
> would be greatly appreciated.
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies@kernelnewbies.org
> https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Looking for ways to contribute
2023-08-06 11:29 ` Richard
@ 2023-08-06 12:08 ` ozlinux
0 siblings, 0 replies; 5+ messages in thread
From: ozlinux @ 2023-08-06 12:08 UTC (permalink / raw)
To: Richard; +Cc: kernelnewbies
On Sun, Aug 06, 2023 at 01:29:15PM +0200, Richard wrote:
Okay, thanks so much. I'll be sure to give that a try.
> I can recommend something I did:
>
> Read and figure out network source code (whatever interests you in net/ipv4/
> for example) and wheneever you have understood what a function does write
> some documentation for it (ideally in the kerneldoc format) and submit this
> doc as your patch.
>
> Also, as a prerequisite, I recommend you to read "Linux Kernel Development"
> by Robert Love. It's important to get the fundamental differences to user
> space. For example the whole thing that there is process context and
> interrupt context. And what softirqs are.
>
>
> -- Richard
>
> On 04.08.23 13:58, ozlinux@hotmail.com wrote:
> > Hi, I am new here. I have a fair amount of experience with C/C++, with a
> > 3D graphics background. I have been looking for ways to contribute,
> > particularly to networking, as that is what interests me, but I can't
> > find anything to work on. If anyone knows where to point me for this, it
> > would be greatly appreciated.
> >
> > _______________________________________________
> > Kernelnewbies mailing list
> > Kernelnewbies@kernelnewbies.org
> > https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies@kernelnewbies.org
> https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-06 12:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-04 11:58 Looking for ways to contribute ozlinux
2023-08-04 12:06 ` Mario Marietto
2023-08-04 16:03 ` Philipp Hortmann
2023-08-06 11:29 ` Richard
2023-08-06 12:08 ` ozlinux
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox