git: 9de58ca100ca - stable/14 - ip_output(): if mb_unmapped_to_ext() failed, return directly
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 17 Mar 2025 00:48:53 UTC
The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=9de58ca100ca37a3ef544f5734a30256efec4333 commit 9de58ca100ca37a3ef544f5734a30256efec4333 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2025-03-06 17:58:48 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2025-03-17 00:48:32 +0000 ip_output(): if mb_unmapped_to_ext() failed, return directly (cherry picked from commit edc1fba05e055a1943efd969d77c0acf0fbff587) --- sys/netinet/ip_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index e798431397f7..617719359ea5 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -752,7 +752,7 @@ no_ipsec:; error = ENOBUFS; } IPSTAT_INC(ips_odropped); - goto bad; + goto done; } else { m = m1; }