Skip to content

Commit

Permalink
toplev: Allow --tune to override KEEP_UNREF again
Browse files Browse the repository at this point in the history
  • Loading branch information
Andi Kleen committed Dec 5, 2023
1 parent 385ecd9 commit 2ad5108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toplev.py
Original file line number Diff line number Diff line change
Expand Up @@ -4493,7 +4493,7 @@ def main(args, rest, feat, env, cpu):
check_exclusive(args, kernel_version)
runner_list = init_runner_list(kernel_version)
global KEEP_UNREF
if len(runner_list) > 1 and args.no_multiplex:
if len(runner_list) > 1 and isinstance(KEEP_UNREF, bool):
KEEP_UNREF = True # for now -- dummy can get assigned to wrong runner
handle_more_options(args)
version = runner_emaps(setup_pe(), runner_list)
Expand Down

0 comments on commit 2ad5108

Please sign in to comment.