CLEANUP: quic: remove unused QUIC_LOCK label

QUIC_LOCK label is never used. Indeed, lock usage is minimal on QUIC as
every connection is pinned to its owned thread.

This should be backported up to 2.7.
This commit is contained in:
Amaury Denoyelle 2023-04-03 15:06:43 +02:00
parent c361937d51
commit 22a368ce58
2 changed files with 0 additions and 2 deletions

View File

@ -423,7 +423,6 @@ enum lock_label {
SSL_SERVER_LOCK,
SFT_LOCK, /* sink forward target */
IDLE_CONNS_LOCK,
QUIC_LOCK,
OCSP_LOCK,
OTHER_LOCK,
/* WT: make sure never to use these ones outside of development,

View File

@ -442,7 +442,6 @@ static const char *lock_label(enum lock_label label)
case SSL_SERVER_LOCK: return "SSL_SERVER";
case SFT_LOCK: return "SFT";
case IDLE_CONNS_LOCK: return "IDLE_CONNS";
case QUIC_LOCK: return "QUIC";
case OCSP_LOCK: return "OCSP";
case OTHER_LOCK: return "OTHER";
case DEBUG1_LOCK: return "DEBUG1";