Page MenuHomeFreeBSD

tcp: small cleanup
ClosedPublic

Authored by tuexen on Sep 30 2024, 6:56 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Oct 25, 12:12 AM
Unknown Object (File)
Tue, Oct 15, 4:40 AM
Unknown Object (File)
Sat, Oct 12, 4:17 AM
Unknown Object (File)
Oct 4 2024, 10:09 PM
Unknown Object (File)
Oct 4 2024, 10:09 PM
Unknown Object (File)
Oct 4 2024, 10:09 PM
Unknown Object (File)
Oct 2 2024, 7:41 AM
Unknown Object (File)
Oct 1 2024, 6:41 PM

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

glebius added inline comments.
sys/netinet/tcp_syncache.c
1588

No objection on this change, but I personally preferred the original style.

tuexen added inline comments.
sys/netinet/tcp_syncache.c
1588

Me too. But then the line is too long. The alternative would be:

if ((sc = uma_zalloc(V_tcp_syncache.zone,
    M_NOWAIT | M_ZERO)) == NULL) {

I think the way proposed is simpler to read.

This revision is now accepted and ready to land.Oct 1 2024, 7:51 AM

Looks good to me. Thanks for removing the goto label skip_alloc that improves reading.

This revision was automatically updated to reflect the committed changes.