Skip to content

Commit

Permalink
fix smccc probing failing with too many cores
Browse files Browse the repository at this point in the history
  • Loading branch information
chlindenmeier committed Jul 22, 2024
1 parent 88d0f61 commit 366d242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/probe-smccc.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def main():
# keymap to save all unique fingerprints and their associated list of funcIDs
fp_to_ids = {}

for i in range(cpuids):
for i in range(len(smc_ranges)):
odir = args.out_dir + "/" + str(i % cpuids) + "/" + "afl-edges-probe-out/"

# go through all out directories holding the cov files
Expand Down

0 comments on commit 366d242

Please sign in to comment.