K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T18:50:39.701976Z K 7 svn:log V 580 Fix unused variable warning in amd64's pmap.c With clang 15, the following -Werror warning is produced: sys/amd64/amd64/pmap.c:8274:22: error: variable 'freed' set but not used [-Werror,-Wunused-but-set-variable] int allfree, field, freed, i, idx; ^ The 'freed' variable is only used when PV_STATS is defined. Ensure it is only declared and set in that case. MFC after: 3 days (cherry picked from commit 7a1f289bd2949e5867c7f0396c35f02f179dc8bd) Git Hash: 91a308757bdce7dc680feb43debad46a22d539a5 Git Author: dim@FreeBSD.org END