mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jakub Kicinski <kuba@kernel.org>
To: Laurent Vivier <lvivier@redhat.com>
Cc: linux-kernel@vger.kernel.org, Stefano Brivio <sbrivio@redhat.com>,
	netdev@vger.kernel.org, Oliver Neukum <oneukum@suse.com>,
	linux-usb@vger.kernel.org, jarod@redhat.com,
	stable@vger.kernel.org
Subject: Re: [PATCH net v2] usbnet: cap max_mtu for drivers without bind callback
Date: Thu, 30 Jul 2026 13:57:36 -0700	[thread overview]
Message-ID: <20260730135736.7bbe0767@kernel.org> (raw)
In-Reply-To: <d81babcf-a4aa-423b-90d7-9b4037872c5e@redhat.com>

On Thu, 30 Jul 2026 09:30:57 +0200 Laurent Vivier wrote:
> On 7/30/26 02:52, Jakub Kicinski wrote:
> > On Mon, 27 Jul 2026 09:23:04 +0200 Laurent Vivier wrote:  
> >> -		if ((dev->driver_info->flags & FLAG_NOMAXMTU) == 0 &&
> >> -		    net->max_mtu > (dev->hard_mtu - net->hard_header_len))
> >> +		if (dev->driver_info->flags & FLAG_NOMAXMTU)
> >> +			net->max_mtu = ETH_MAX_MTU;
> >> +		else
> >>   			net->max_mtu = dev->hard_mtu - net->hard_header_len;  
> > 
> > Sashikos point out that this will causes issues for existing drivers in
> > both directions. Some drivers explicitly set max_mtu. So we need to move
> > the
> > 
> > 	net->max_mtu = ETH_MAX_MTU;
> > 
> > line before the call to ->bind ?  
> 
> So you mean like my v1?

No, there should be no conditional stuff on the non-bind path.
Init the max_mtu to net->mtu like you do in v2.
Override it to ETH_MAX_MTU _under if (info->bind)_
And I think that's it - the conditions can stay as they are right now?

What I'm getting at is after the patch the code should say "we have
some extra MTU discovery path for drivers with info->bind, all
remaining drivers get net->mtu". I think the change I described above
will make that clear.

      reply	other threads:[~2026-07-30 20:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-27  7:23 Laurent Vivier
2026-07-30  0:52 ` Jakub Kicinski
2026-07-30  7:30   ` Laurent Vivier
2026-07-30 20:57     ` Jakub Kicinski [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260730135736.7bbe0767@kernel.org \
    --to=kuba@kernel.org \
    --cc=jarod@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=lvivier@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=oneukum@suse.com \
    --cc=sbrivio@redhat.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®