Skip to content

Commit

Permalink
add an ignorable call trace
Browse files Browse the repository at this point in the history
  • Loading branch information
LiliDeng committed Nov 28, 2023
1 parent a3d54c9 commit d48daea
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lisa/features/serial_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ class SerialConsole(Feature):
re.compile(
r"^(.*ipt_CLUSTERIP: ClusterIP.*loaded successfully.*)$", re.MULTILINE
),
# This is a known issue with Hyper-V when running on AMD processors.
# The problem occurs in VM sizes that have 16 or more vCPUs which means 2 or
# more NUMA nodes on AMD processors.
# The call trace is annoying but does not affect correct operation of the VM.
re.compile(r"(.*RIP: 0010:topology_sane.isra.*)$", re.MULTILINE),
]

# blk_update_request: I/O error, dev sdc, sector 0
Expand Down

0 comments on commit d48daea

Please sign in to comment.