Skip to content

Commit

Permalink
threading: transform *-cpu-set nodes from list items to nodes
Browse files Browse the repository at this point in the history
Part of Ticket 2321 work to remove unnecessary lists from
the config file.

Ticket: 2321
  • Loading branch information
Lukas Sismis authored and lukashino committed Dec 20, 2024
1 parent abc2eee commit 8bfe1e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util-affinity.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ void AffinitySetupLoadFromConfig(void)

ConfNode *affinity;
TAILQ_FOREACH(affinity, &root->head, next) {
const char *setname = GetAffinitySetName(affinity->val);
const char *setname = GetAffinitySetName(affinity->name);
if (setname == NULL)
continue;

Expand Down

0 comments on commit 8bfe1e2

Please sign in to comment.