From: mvs Date: Thu, 27 Apr 2023 11:11:04 +0000 (+0000) Subject: Add `rttimer_mtx' to the locking description. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4f11ab529b12eb179112eccee64a363dbf3cd63b;p=openbsd Add `rttimer_mtx' to the locking description. No functional changes. --- diff --git a/sys/net/route.c b/sys/net/route.c index 485928ef618..44d661fc949 100644 --- a/sys/net/route.c +++ b/sys/net/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.419 2023/04/26 19:54:35 mvs Exp $ */ +/* $OpenBSD: route.c,v 1.420 2023/04/27 11:11:04 mvs Exp $ */ /* $NetBSD: route.c,v 1.14 1996/02/13 22:00:46 christos Exp $ */ /* @@ -142,6 +142,7 @@ * Locks used to protect struct members: * I immutable after creation * L rtlabel_mtx + * T rttimer_mtx */ #define ROUNDUP(a) (a>0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))