Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Apr 2024 03:36:17 GMT
From:      Eugene Grosbein <eugen@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 319a5d086b50 - main - if_bridge: use IF_MINMTU
Message-ID:  <202404010336.4313aHGJ030572@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by eugen:

URL: https://cgit.FreeBSD.org/src/commit/?id=319a5d086b50f38618b62c78e83b12931f00b508

commit 319a5d086b50f38618b62c78e83b12931f00b508
Author:     Eugene Grosbein <eugen@FreeBSD.org>
AuthorDate: 2024-04-01 03:31:51 +0000
Commit:     Eugene Grosbein <eugen@FreeBSD.org>
CommitDate: 2024-04-01 03:35:59 +0000

    if_bridge: use IF_MINMTU
    
    Replace incorrect constant 576 with IF_MINMTU to check for minumum MTU.
    This unbreaks bridging tap interfaces with small mtu.
    
    MFC after:      1 week
---
 sys/net/if_bridge.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c
index fe5de468bf28..31758733adb1 100644
--- a/sys/net/if_bridge.c
+++ b/sys/net/if_bridge.c
@@ -960,7 +960,7 @@ bridge_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
 	case SIOCSIFMTU:
 		oldmtu = sc->sc_ifp->if_mtu;
 
-		if (ifr->ifr_mtu < 576) {
+		if (ifr->ifr_mtu < IF_MINMTU) {
 			error = EINVAL;
 			break;
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404010336.4313aHGJ030572>