Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\kernel\cpu\bugs.c Create Date:2022-07-28 07:56:06
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:tsx_async_abort_parse_cmdline

Proto:static int __init tsx_async_abort_parse_cmdline(char *str)

Type:int

Parameter:

TypeParameterName
char *str
374  If Not boot_cpu_has_bug(CPU is affected by TSX Async Abort(TAA) ) Then Return 0
377  If Not str Then Return -EINVAL
380  If Not strcmp(str, "off") Then
381  Default mitigation for TAA-affected CPUs = TAA_MITIGATION_OFF
382  Else if Not strcmp(str, "full") Then
383  Default mitigation for TAA-affected CPUs = TAA_MITIGATION_VERW
384  Else if Not strcmp(str, "full,nosmt") Then
385  Default mitigation for TAA-affected CPUs = TAA_MITIGATION_VERW
386  taa_nosmt = true
389  Return 0