Re: Kernel module for a network interface - remove trailer from sk_buff on reception

2023-07-01 Thread Abhiram V
Hi Alison and Greg Thanks for the help and best wishes. I will try asking on the kernel netdev mailing list. On Sat, Jul 1, 2023 at 12:42 AM Alison Schofield wrote: > On Wed, Jun 28, 2023 at 04:15:36PM +0530, Abhiram V wrote: > > I am implementing the Parallel Redundancy Protocol (PRP, IEC

Re: Kernel module for a network interface - remove trailer from sk_buff on reception

2023-06-30 Thread Greg KH
On Fri, Jun 30, 2023 at 07:16:11AM +0530, Abhiram V wrote: > Yeah, I did ask for help in the college itself. Unfortunately, no one has > any experience with the kernel. They don't mind getting help from the > community. > > It was for my final year project and the grades have already been

Re: Kernel module for a network interface - remove trailer from sk_buff on reception

2023-06-30 Thread Alison Schofield
On Wed, Jun 28, 2023 at 04:15:36PM +0530, Abhiram V wrote: > I am implementing the Parallel Redundancy Protocol (PRP, IEC standard > 62439-3) as a kernel module for a school project of mine. The code for the > module can be found at: https://github.com/ramv33/prp. I have used the code > for the

Re: Kernel module for a network interface - remove trailer from sk_buff on reception

2023-06-29 Thread Abhiram V
Yeah, I did ask for help in the college itself. Unfortunately, no one has any experience with the kernel. They don't mind getting help from the community. It was for my final year project and the grades have already been assigned with whatever I have done so far. The work was accepted for a

Re: Kernel module for a network interface - remove trailer from sk_buff on reception

2023-06-28 Thread Greg KH
On Wed, Jun 28, 2023 at 04:15:36PM +0530, Abhiram V wrote: > I am implementing the Parallel Redundancy Protocol (PRP, IEC standard > 62439-3) as a kernel module for a school project of mine. Asking for help on homework on public mailing lists is generally frowned apon as we are not getting the

Kernel module for a network interface - remove trailer from sk_buff on reception

2023-06-28 Thread Abhiram V
I am implementing the Parallel Redundancy Protocol (PRP, IEC standard 62439-3) as a kernel module for a school project of mine. The code for the module can be found at: https://github.com/ramv33/prp. I have used the code for the HSR module which implements PRP as a reference for my implementation