From f6d1b48153ed451a0ac6e16e9aa41732482b7ab2 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Tue, 5 Mar 2024 09:08:41 -0600 Subject: [PATCH] Enable binpacking for on-a-stick mode. --- src/LibreQoS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LibreQoS.py b/src/LibreQoS.py index e96d5dcc..bc05b108 100755 --- a/src/LibreQoS.py +++ b/src/LibreQoS.py @@ -736,7 +736,7 @@ def refreshShapers(): # If we're in binpacking mode, we need to sort the network structure a bit bins = [] - if use_bin_packing_to_balance_cpu() and not on_a_stick(): + if use_bin_packing_to_balance_cpu(): print("BinPacking is enabled, so we're going to sort your network.") cpuBin = {} weights = get_tree_weights()