git: 3a51f7b13512 - stable/14 - tcp_hostcache: explicitly typecast atomic_load_int to (int) for comparison
Richard Scheffenegger <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a6867f1.414fe.71c4fc83__49948.734422081$1785227264$gmane$org@gitrepo.freebsd.org> |
The branch stable/14 has been updated by rscheff: URL: https://cgit.FreeBSD.org/src/commit/?id=3a51f7b13512b8ca7abd62f44cc404b056cd0c91 commit 3a51f7b13512b8ca7abd62f44cc404b056cd0c91 Author: Richard Scheffenegger <[email protected]> AuthorDate: 2026-07-21 14:51:02 +0000 Commit: Richard Scheffenegger <[email protected]> CommitDate: 2026-07-28 08:26:14 +0000 tcp_hostcache: explicitly typecast atomic_load_int to (int) for comparison Sponsored by: NetApp, Inc. MFC after: 1 week Reviewed By: tuexen, #transport, markj Differential Revision: https://reviews.freebsd.org/D58360 (cherry picked from commit f22b08443f6ae3620dd14ade4e2376b8531fd6f3) --- sys/netinet/tcp_hostcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/tcp_hostcache.c b/sys/netinet/tcp_hostcache.c index 5afdedd20d23..df6ada20ad97 100644 --- a/sys/netinet/tcp_hostcache.c +++ b/sys/netinet/tcp_hostcache.c @@ -769,7 +769,7 @@ tcp_hc_purge_internal(int all) "bucket length out of range at %u: %u", i, head->hch_length)); if (all || - atomic_load_int(&hc_entry->rmx_expire) <= 0) { + (int)atomic_load_int(&hc_entry->rmx_expire) <= 0) { if (hc_prev != NULL) { KASSERT(hc_entry == CK_SLIST_NEXT(hc_prev, rmx_q),