x86: Add missed break to TAA status sysctl

Just a typo that Coverity identified.

Coverity also identified an unused store in the same functional area (x86 TAA
stuff), but this commit does not address that issue (CID 1408334).

Reported by:	Coverity
CID:		1408328, 1408332
This commit is contained in:
Conrad Meyer 2019-12-04 02:42:22 +00:00
parent 86712774d2
commit ee02bd9c9c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=355375

View File

@ -1332,6 +1332,7 @@ sysctl_taa_state_handler(SYSCTL_HANDLER_ARGS)
break;
case TAA_NOT_PRESENT:
state = "TSX not present";
break;
default:
state = "unknown";
}