We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c4a4d0 commit a1fcaf0Copy full SHA for a1fcaf0
drivers/dma/idxd/device.c
@@ -584,11 +584,11 @@ static void idxd_group_flags_setup(struct idxd_device *idxd)
584
struct idxd_group *group = &idxd->groups[i];
585
586
if (group->tc_a == -1)
587
- group->grpcfg.flags.tc_a = 0;
+ group->tc_a = group->grpcfg.flags.tc_a = 0;
588
else
589
group->grpcfg.flags.tc_a = group->tc_a;
590
if (group->tc_b == -1)
591
- group->grpcfg.flags.tc_b = 1;
+ group->tc_b = group->grpcfg.flags.tc_b = 1;
592
593
group->grpcfg.flags.tc_b = group->tc_b;
594
group->grpcfg.flags.use_token_limit = group->use_token_limit;
0 commit comments