* Submitted a patch, got error "Patch does not apply to net-next-0"
@ 2024-09-19 2:23 Muggeridge, Matt
2024-09-19 5:57 ` Heiner Kallweit
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Muggeridge, Matt @ 2024-09-19 2:23 UTC (permalink / raw)
To: netdev@vger.kernel.org
Hi,
First time submitter and it seems I did something wrong, as I got the error "Patch does not apply to net-next-0". I suspected it was complaining about a missing end-of-line, so I resubmitted and get the error "Patch does not apply to net-next-1". So now I'm unsure how to correct this.
My patch is: Netlink flag for creating IPv6 Default Routes (https://patchwork.kernel.org/project/netdevbpf/patch/SJ0PR84MB2088B1B93C75A4AAC5B90490D8632@SJ0PR84MB2088.NAMPRD84.PROD.OUTLOOK.COM/).
I followed the instructions at https://www.kernel.org/doc/html/v5.12/networking/netdev-FAQ.html.
Here's my local repo:
$ git remote -v
origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (fetch)
origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (push)
After committing my changes, I ran:
$ git format-patch --subject-prefix='PATCH net-next' -1 95c6e5c898d3
It produced the file "0001-Netlink-flag-for-creating-IPv6-Default-Routes.patch". I emailed the contents of that file to this list.
How do I correct this?
Thanks,
Matt.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Submitted a patch, got error "Patch does not apply to net-next-0"
2024-09-19 2:23 Submitted a patch, got error "Patch does not apply to net-next-0" Muggeridge, Matt
@ 2024-09-19 5:57 ` Heiner Kallweit
2024-09-19 20:30 ` Muggeridge, Matt
2024-09-19 6:31 ` Philo Lu
2024-09-19 7:50 ` Paolo Abeni
2 siblings, 1 reply; 8+ messages in thread
From: Heiner Kallweit @ 2024-09-19 5:57 UTC (permalink / raw)
To: Muggeridge, Matt, netdev@vger.kernel.org
On 19.09.2024 04:23, Muggeridge, Matt wrote:
> Hi,
>
> First time submitter and it seems I did something wrong, as I got the error "Patch does not apply to net-next-0". I suspected it was complaining about a missing end-of-line, so I resubmitted and get the error "Patch does not apply to net-next-1". So now I'm unsure how to correct this.
>
> My patch is: Netlink flag for creating IPv6 Default Routes (https://patchwork.kernel.org/project/netdevbpf/patch/SJ0PR84MB2088B1B93C75A4AAC5B90490D8632@SJ0PR84MB2088.NAMPRD84.PROD.OUTLOOK.COM/).
>
> I followed the instructions at https://www.kernel.org/doc/html/v5.12/networking/netdev-FAQ.html.
>
> Here's my local repo:
>
> $ git remote -v
> origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (fetch)
> origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (push)
>
> After committing my changes, I ran:
>
> $ git format-patch --subject-prefix='PATCH net-next' -1 95c6e5c898d3
>
> It produced the file "0001-Netlink-flag-for-creating-IPv6-Default-Routes.patch". I emailed the contents of that file to this list.
>
> How do I correct this?
>
> Thanks,
> Matt.
>
>
There's few issues with your submission:
- net-next is closed currently. There's a section in the FAQ explaining when and why it's closed.
- Please only one version of a patch per day
- Your commit message states that the patch fixes something. So you should add a Fixes tag.
If applicable also cc the patch to stable.
https://www.kernel.org/doc/Documentation/process/stable-kernel-rules.rst
- If the fixed change isn't in net-next only, your patch should be based on and tagged "net".
- Patch title should be prefixed ipv6 or net/ipv6. Not sure which is preferred, both are common.
See change history of net/ipv6/route.c
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Submitted a patch, got error "Patch does not apply to net-next-0"
2024-09-19 2:23 Submitted a patch, got error "Patch does not apply to net-next-0" Muggeridge, Matt
2024-09-19 5:57 ` Heiner Kallweit
@ 2024-09-19 6:31 ` Philo Lu
2024-09-19 7:50 ` Paolo Abeni
2 siblings, 0 replies; 8+ messages in thread
From: Philo Lu @ 2024-09-19 6:31 UTC (permalink / raw)
To: Muggeridge, Matt, netdev@vger.kernel.org
Hi Matt,
On 2024/9/19 10:23, Muggeridge, Matt wrote:
> Hi,
>
> First time submitter and it seems I did something wrong, as I got the error "Patch does not apply to net-next-0". I suspected it was complaining about a missing end-of-line, so I resubmitted and get the error "Patch does not apply to net-next-1". So now I'm unsure how to correct this.
>
> My patch is: Netlink flag for creating IPv6 Default Routes (https://patchwork.kernel.org/project/netdevbpf/patch/SJ0PR84MB2088B1B93C75A4AAC5B90490D8632@SJ0PR84MB2088.NAMPRD84.PROD.OUTLOOK.COM/).
>
> I followed the instructions at https://www.kernel.org/doc/html/v5.12/networking/netdev-FAQ.html.
>
> Here's my local repo:
>
> $ git remote -v
> origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (fetch)
> origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (push)
>
> After committing my changes, I ran:
>
> $ git format-patch --subject-prefix='PATCH net-next' -1 95c6e5c898d3
>
> It produced the file "0001-Netlink-flag-for-creating-IPv6-Default-Routes.patch". I emailed the contents of that file to this list.
>
> How do I correct this?
>
It's recommended to first correct the mail format, such as adding a
"Signed-off-by", and send the patch with `git send-email`.
May this doc[0] helps you.
[0]https://www.kernel.org/doc/html/latest/process/submitting-patches.html
--
Philo
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Submitted a patch, got error "Patch does not apply to net-next-0"
2024-09-19 2:23 Submitted a patch, got error "Patch does not apply to net-next-0" Muggeridge, Matt
2024-09-19 5:57 ` Heiner Kallweit
2024-09-19 6:31 ` Philo Lu
@ 2024-09-19 7:50 ` Paolo Abeni
2 siblings, 0 replies; 8+ messages in thread
From: Paolo Abeni @ 2024-09-19 7:50 UTC (permalink / raw)
To: Muggeridge, Matt, netdev@vger.kernel.org
Hi,
On 9/19/24 04:23, Muggeridge, Matt wrote:
> First time submitter and it seems I did something wrong, as I got the error "Patch does not apply to net-next-0". I suspected it was complaining about a missing end-of-line, so I resubmitted and get the error "Patch does not apply to net-next-1". So now I'm unsure how to correct this.
>
> My patch is: Netlink flag for creating IPv6 Default Routes (https://patchwork.kernel.org/project/netdevbpf/patch/SJ0PR84MB2088B1B93C75A4AAC5B90490D8632@SJ0PR84MB2088.NAMPRD84.PROD.OUTLOOK.COM/).
>
> I followed the instructions at https://www.kernel.org/doc/html/v5.12/networking/netdev-FAQ.html.
>
> Here's my local repo:
>
> $ git remote -v
> origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (fetch)
> origin https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git (push)
>
> After committing my changes, I ran:
>
> $ git format-patch --subject-prefix='PATCH net-next' -1 95c6e5c898d3
>
> It produced the file "0001-Netlink-flag-for-creating-IPv6-Default-Routes.patch". I emailed the contents of that file to this list.
>
> How do I correct this?
It looks like your email client is corrupting the patch, introducing CR
around column 80. You should address the issue within your email client
setting, or using directly 'git send-email'.
You can test your setup sending the patch to yourself only and trying to
apply it to a vanilla net-next tree.
Before any future submission, please take care of all the good
suggestions from Heiner.
Thanks,
Paolo
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: Submitted a patch, got error "Patch does not apply to net-next-0"
2024-09-19 5:57 ` Heiner Kallweit
@ 2024-09-19 20:30 ` Muggeridge, Matt
2024-09-19 20:57 ` Heiner Kallweit
0 siblings, 1 reply; 8+ messages in thread
From: Muggeridge, Matt @ 2024-09-19 20:30 UTC (permalink / raw)
To: Heiner Kallweit, netdev@vger.kernel.org
> -----Original Message-----
> From: Heiner Kallweit <hkallweit1@gmail.com>
> Sent: Thursday, 19 September 2024 3:57 PM
> To: Muggeridge, Matt <matt.muggeridge2@hpe.com>;
> netdev@vger.kernel.org
> Subject: Re: Submitted a patch, got error "Patch does not apply to net-next-0"
>
Thankyou for your detailed and considerate reply, Heiner. As a new submitter, I was trying hard to comply with all the documented process.
> On 19.09.2024 04:23, Muggeridge, Matt wrote:
> > Hi,
> >
> > First time submitter and it seems I did something wrong, as I got the error
> "Patch does not apply to net-next-0". I suspected it was complaining about a
> missing end-of-line, so I resubmitted and get the error "Patch does not apply
> to net-next-1". So now I'm unsure how to correct this.
> >
> > My patch is: Netlink flag for creating IPv6 Default Routes
> (https://patchwork.kernel.org/project/netdevbpf/patch/SJ0PR84MB2088B1
> B93C75A4AAC5B90490D8632@SJ0PR84MB2088.NAMPRD84.PROD.OUTLO
> OK.COM/).
> >
> > I followed the instructions at
> https://www.kernel.org/doc/html/v5.12/networking/netdev-FAQ.html.
> >
> > Here's my local repo:
> >
> > $ git remote -v
> > origin
> > https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
> > (fetch) origin
> > https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
> > (push)
> >
> > After committing my changes, I ran:
> >
> > $ git format-patch --subject-prefix='PATCH net-next' -1 95c6e5c898d3
> >
> > It produced the file "0001-Netlink-flag-for-creating-IPv6-Default-
> Routes.patch". I emailed the contents of that file to this list.
> >
> > How do I correct this?
> >
> > Thanks,
> > Matt.
> >
> >
> There's few issues with your submission:
> - net-next is closed currently. There's a section in the FAQ explaining when and
> why it's closed.
To clarify, do I wait for the "rc1" tag before submitting?
FWIW, I read that section, examined the torvalds git repo and saw that
it had created a tag for v6.11. I presumed that meant that 6.11 is
closed and the tree was open for 6.12 work. I also noted there were
other net-next submissions and took that as further evidence the tree
was open. Also, the top-of-tree has this commit message, which I took as
evidence that 6.12 was open:
Merge tag 'net-next-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next
> - Please only one version of a patch per day
Understood.
> - Your commit message states that the patch fixes something. So you should
> add a Fixes tag.
My patch is in a bit of a grey area. Some would call it a bug fix,
others would call it new functionality. My patch extends the netlink API
with some functionality that has previously been overlooked. Indeed,
when there are multiple default routers in an IPv6 network it is
expected to provide resiliency in the event a router becomes
unreachable. Instead, when using systemd-networkd as the network
manager you get instability, where some connections will fail and others
can succeed. So, it fixes a network infrastructure problem for systemd-
networkd by extending the netlink API with a new flag.
I'm happy to be guided on this. Would you like to see it submitted to
net as a bugfix, or net-next as new functionality?
> If applicable also cc the patch to stable.
> https://www.kernel.org/doc/Documentation/process/stable-kernel-rules.rst
> - If the fixed change isn't in net-next only, your patch should be based on and
> tagged "net".
Understood. I chose net-next as new functionality, but if you feel this
should go in net, then I'll resubmit to net.
> - Patch title should be prefixed ipv6 or net/ipv6. Not sure which is preferred,
> both are common.
> See change history of net/ipv6/route.c
Got it. Yes, I see what you mean. Some have net/ipv6 and others ipv6 and
a few other variants. I will prefix mine with net/ipv6.
Thanks again!
Matt.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Submitted a patch, got error "Patch does not apply to net-next-0"
2024-09-19 20:30 ` Muggeridge, Matt
@ 2024-09-19 20:57 ` Heiner Kallweit
2024-09-19 22:53 ` Muggeridge, Matt
0 siblings, 1 reply; 8+ messages in thread
From: Heiner Kallweit @ 2024-09-19 20:57 UTC (permalink / raw)
To: Muggeridge, Matt, netdev@vger.kernel.org
On 19.09.2024 22:30, Muggeridge, Matt wrote:
>> -----Original Message-----
>> From: Heiner Kallweit <hkallweit1@gmail.com>
>> Sent: Thursday, 19 September 2024 3:57 PM
>> To: Muggeridge, Matt <matt.muggeridge2@hpe.com>;
>> netdev@vger.kernel.org
>> Subject: Re: Submitted a patch, got error "Patch does not apply to net-next-0"
>>
>
> Thankyou for your detailed and considerate reply, Heiner. As a new submitter, I was trying hard to comply with all the documented process.
>
>> On 19.09.2024 04:23, Muggeridge, Matt wrote:
>>> Hi,
>>>
>>> First time submitter and it seems I did something wrong, as I got the error
>> "Patch does not apply to net-next-0". I suspected it was complaining about a
>> missing end-of-line, so I resubmitted and get the error "Patch does not apply
>> to net-next-1". So now I'm unsure how to correct this.
>>>
>>> My patch is: Netlink flag for creating IPv6 Default Routes
>> (https://patchwork.kernel.org/project/netdevbpf/patch/SJ0PR84MB2088B1
>> B93C75A4AAC5B90490D8632@SJ0PR84MB2088.NAMPRD84.PROD.OUTLO
>> OK.COM/).
>>>
>>> I followed the instructions at
>> https://www.kernel.org/doc/html/v5.12/networking/netdev-FAQ.html.
>>>
>>> Here's my local repo:
>>>
>>> $ git remote -v
>>> origin
>>> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
>>> (fetch) origin
>>> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
>>> (push)
>>>
>>> After committing my changes, I ran:
>>>
>>> $ git format-patch --subject-prefix='PATCH net-next' -1 95c6e5c898d3
>>>
>>> It produced the file "0001-Netlink-flag-for-creating-IPv6-Default-
>> Routes.patch". I emailed the contents of that file to this list.
>>>
>>> How do I correct this?
>>>
>>> Thanks,
>>> Matt.
>>>
>>>
>> There's few issues with your submission:
>> - net-next is closed currently. There's a section in the FAQ explaining when and
>> why it's closed.
>
> To clarify, do I wait for the "rc1" tag before submitting?
>
It will be announced on the netdev list when net-next opens again.
If this sounds too cumbersome, you can check the net-next status here:
https://patchwork.hopto.org/net-next.html
> FWIW, I read that section, examined the torvalds git repo and saw that
> it had created a tag for v6.11. I presumed that meant that 6.11 is
> closed and the tree was open for 6.12 work. I also noted there were
> other net-next submissions and took that as further evidence the tree
> was open. Also, the top-of-tree has this commit message, which I took as
> evidence that 6.12 was open:
>
> Merge tag 'net-next-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next
>> - Please only one version of a patch per day
>
> Understood.
>
>> - Your commit message states that the patch fixes something. So you should
>> add a Fixes tag.
>
> My patch is in a bit of a grey area. Some would call it a bug fix,
> others would call it new functionality. My patch extends the netlink API
> with some functionality that has previously been overlooked. Indeed,
> when there are multiple default routers in an IPv6 network it is
> expected to provide resiliency in the event a router becomes
> unreachable. Instead, when using systemd-networkd as the network
> manager you get instability, where some connections will fail and others
> can succeed. So, it fixes a network infrastructure problem for systemd-
> networkd by extending the netlink API with a new flag.
>
> I'm happy to be guided on this. Would you like to see it submitted to
> net as a bugfix, or net-next as new functionality?
>
To me it looks more like a fix, in addition the change is rather simple.
However this is something I'd leave to the net maintainers to decide.
The tricky part will be to find out which change this fixes (for the
Fixes tag).
By the way: You sent the patch to the netdev list only and missed the
maintainers. The get_maintainers script gives you the mail addresses.
>> If applicable also cc the patch to stable.
>> https://www.kernel.org/doc/Documentation/process/stable-kernel-rules.rst
>> - If the fixed change isn't in net-next only, your patch should be based on and
>> tagged "net".
>
> Understood. I chose net-next as new functionality, but if you feel this
> should go in net, then I'll resubmit to net.
>
>> - Patch title should be prefixed ipv6 or net/ipv6. Not sure which is preferred,
>> both are common.
>> See change history of net/ipv6/route.c
>
> Got it. Yes, I see what you mean. Some have net/ipv6 and others ipv6 and
> a few other variants. I will prefix mine with net/ipv6.
>
> Thanks again!
> Matt.
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: Submitted a patch, got error "Patch does not apply to net-next-0"
2024-09-19 20:57 ` Heiner Kallweit
@ 2024-09-19 22:53 ` Muggeridge, Matt
2024-09-20 2:31 ` Stephen Hemminger
0 siblings, 1 reply; 8+ messages in thread
From: Muggeridge, Matt @ 2024-09-19 22:53 UTC (permalink / raw)
To: Heiner Kallweit, netdev@vger.kernel.org
Cc: davem@davemloft.net, dsahern@kernel.org
> -----Original Message-----
> From: Heiner Kallweit <hkallweit1@gmail.com>
> Sent: Friday, 20 September 2024 6:58 AM
> To: Muggeridge, Matt <matt.muggeridge2@hpe.com>;
> netdev@vger.kernel.org
> Subject: Re: Submitted a patch, got error "Patch does not apply to net-next-0"
>
> On 19.09.2024 22:30, Muggeridge, Matt wrote:
> >> -----Original Message-----
> >> From: Heiner Kallweit <hkallweit1@gmail.com>
> >> Sent: Thursday, 19 September 2024 3:57 PM
> >> To: Muggeridge, Matt <matt.muggeridge2@hpe.com>;
> >> netdev@vger.kernel.org
> >> Subject: Re: Submitted a patch, got error "Patch does not apply to net-next-
> 0"
> >>
> >
> > Thankyou for your detailed and considerate reply, Heiner. As a new
> submitter, I was trying hard to comply with all the documented process.
> >
> >> On 19.09.2024 04:23, Muggeridge, Matt wrote:
> >>> Hi,
> >>>
> >>> First time submitter and it seems I did something wrong, as I got
> >>> the error
> >> "Patch does not apply to net-next-0". I suspected it was complaining
> >> about a missing end-of-line, so I resubmitted and get the error
> >> "Patch does not apply to net-next-1". So now I'm unsure how to correct
> this.
> >>>
> >>> My patch is: Netlink flag for creating IPv6 Default Routes
> >>
> (https://patchwork.kernel.org/project/netdevbpf/patch/SJ0PR84MB2088B1
> >>
> B93C75A4AAC5B90490D8632@SJ0PR84MB2088.NAMPRD84.PROD.OUTLO
> >> OK.COM/).
> >>>
> >>> I followed the instructions at
> >> https://www.kernel.org/doc/html/v5.12/networking/netdev-FAQ.html.
> >>>
> >>> Here's my local repo:
> >>>
> >>> $ git remote -v
> >>> origin
> >>> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
> >>> (fetch) origin
> >>> https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
> >>> (push)
> >>>
> >>> After committing my changes, I ran:
> >>>
> >>> $ git format-patch --subject-prefix='PATCH net-next' -1 95c6e5c898d3
> >>>
> >>> It produced the file "0001-Netlink-flag-for-creating-IPv6-Default-
> >> Routes.patch". I emailed the contents of that file to this list.
> >>>
> >>> How do I correct this?
> >>>
> >>> Thanks,
> >>> Matt.
> >>>
> >>>
> >> There's few issues with your submission:
> >> - net-next is closed currently. There's a section in the FAQ
> >> explaining when and why it's closed.
> >
> > To clarify, do I wait for the "rc1" tag before submitting?
> >
> It will be announced on the netdev list when net-next opens again.
> If this sounds too cumbersome, you can check the net-next status here:
> https://urldefense.com/v3/__https://patchwork.hopto.org/net-
> next.html__;!!NpxR!kPJj3xiMZkDcz4C-
> GtjGv7dNm1tV6v6baQvsE6jIaXauxoaswioYtr35gtAnIVPzSN8KUW0Y10weLs
> 9mESqck8Y$
>
> > FWIW, I read that section, examined the torvalds git repo and saw that
> > it had created a tag for v6.11. I presumed that meant that 6.11 is
> > closed and the tree was open for 6.12 work. I also noted there were
> > other net-next submissions and took that as further evidence the tree
> > was open. Also, the top-of-tree has this commit message, which I took
> > as evidence that 6.12 was open:
> >
> > Merge tag 'net-next-6.12' of
> > git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next
> >> - Please only one version of a patch per day
> >
> > Understood.
> >
> >> - Your commit message states that the patch fixes something. So you
> >> should add a Fixes tag.
> >
> > My patch is in a bit of a grey area. Some would call it a bug fix,
> > others would call it new functionality. My patch extends the netlink
> > API with some functionality that has previously been overlooked.
> > Indeed, when there are multiple default routers in an IPv6 network it
> > is expected to provide resiliency in the event a router becomes
> > unreachable. Instead, when using systemd-networkd as the network
> > manager you get instability, where some connections will fail and
> > others can succeed. So, it fixes a network infrastructure problem for
> > systemd- networkd by extending the netlink API with a new flag.
> >
> > I'm happy to be guided on this. Would you like to see it submitted to
> > net as a bugfix, or net-next as new functionality?
> >
> To me it looks more like a fix, in addition the change is rather simple.
> However this is something I'd leave to the net maintainers to decide.
> The tricky part will be to find out which change this fixes (for the Fixes tag).
> By the way: You sent the patch to the netdev list only and missed the
> maintainers. The get_maintainers script gives you the mail addresses.
>
> >> If applicable also cc the patch to stable.
> >>
> >> https://www.kernel.org/doc/Documentation/process/stable-kernel-rules.
> >> rst
> >> - If the fixed change isn't in net-next only, your patch should be
> >> based on and tagged "net".
> >
> > Understood. I chose net-next as new functionality, but if you feel
> > this should go in net, then I'll resubmit to net.
> >
> >> - Patch title should be prefixed ipv6 or net/ipv6. Not sure which is
> >> preferred, both are common.
> >> See change history of net/ipv6/route.c
> >
> > Got it. Yes, I see what you mean. Some have net/ipv6 and others ipv6
> > and a few other variants. I will prefix mine with net/ipv6.
> >
> > Thanks again!
> > Matt.
> >
> > I'm happy to be guided on this. Would you like to see it submitted to
> > net as a bugfix, or net-next as new functionality?
> However this is something I'd leave to the net maintainers to decide.
Dave Miller and David Ahern are listed as maintainers.
To the two Daves, would you prefer to see this submitted to net-next or net?
Kind regards,
Matt.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Submitted a patch, got error "Patch does not apply to net-next-0"
2024-09-19 22:53 ` Muggeridge, Matt
@ 2024-09-20 2:31 ` Stephen Hemminger
0 siblings, 0 replies; 8+ messages in thread
From: Stephen Hemminger @ 2024-09-20 2:31 UTC (permalink / raw)
To: Muggeridge, Matt
Cc: Heiner Kallweit, netdev@vger.kernel.org, davem@davemloft.net,
dsahern@kernel.org
On Thu, 19 Sep 2024 22:53:04 +0000
"Muggeridge, Matt" <matt.muggeridge2@hpe.com> wrote:
> > > I'm happy to be guided on this. Would you like to see it submitted to
> > > net as a bugfix, or net-next as new functionality?
> > However this is something I'd leave to the net maintainers to decide.
>
> Dave Miller and David Ahern are listed as maintainers.
>
> To the two Daves, would you prefer to see this submitted to net-next or net?
>
> Kind regards,
> Matt.
net-next is closed now (until after Linux Plumber's Conference).
It will reopen when after Linus merges and release -rc1.
In the meantime, figure out your mail client issues.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-09-20 2:31 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-19 2:23 Submitted a patch, got error "Patch does not apply to net-next-0" Muggeridge, Matt
2024-09-19 5:57 ` Heiner Kallweit
2024-09-19 20:30 ` Muggeridge, Matt
2024-09-19 20:57 ` Heiner Kallweit
2024-09-19 22:53 ` Muggeridge, Matt
2024-09-20 2:31 ` Stephen Hemminger
2024-09-19 6:31 ` Philo Lu
2024-09-19 7:50 ` Paolo Abeni
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).