]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Fix unused variable warnings in tcp_hpts.c
authorDimitry Andric <dim@FreeBSD.org>
Mon, 15 Aug 2022 18:14:39 +0000 (20:14 +0200)
committerDimitry Andric <dim@FreeBSD.org>
Sun, 21 Aug 2022 11:16:33 +0000 (13:16 +0200)
commit37754cf7c81f5172f3956148ad21b41cde55d9ad
tree1702a660fa9ae8449b1883256c3d4e0beb9b7bdd
parentf8787cb1998a98370eae6537c9a598e16ac61c98
Fix unused variable warnings in tcp_hpts.c

With clang 15, the following -Werror warning is produced:

    sys/netinet/tcp_hpts.c:1114:10: error: variable 'paced_cnt' set but not used [-Werror,-Wunused-but-set-variable]
            int32_t paced_cnt = 0;
                    ^
    sys/netinet/tcp_hpts.c:1112:11: error: variable 'total_slots_processed' set but not used [-Werror,-Wunused-but-set-variable]
            uint64_t total_slots_processed = 0;
                     ^

The 'paced_cnt' variable was in tcp_hpts.c when it was first added, and
the 'total_slots_processed' variable was added in d7955cc0ffdf9, but
both appear to have been debugging aids that have never been used, so
remove them.

MFC after: 3 days

(cherry picked from commit b33bfe6e157429ad764e9a883a5e3a194a6d1f9f)
sys/netinet/tcp_hpts.c