|
@@ -83,6 +83,7 @@ enum rdt_group_type {
|
|
|
/**
|
|
|
* enum rdtgrp_mode - Mode of a RDT resource group
|
|
|
* @RDT_MODE_SHAREABLE: This resource group allows sharing of its allocations
|
|
|
+ * @RDT_MODE_EXCLUSIVE: No sharing of this resource group's allocations allowed
|
|
|
*
|
|
|
* The mode of a resource group enables control over the allowed overlap
|
|
|
* between allocations associated with different resource groups (classes
|
|
@@ -91,6 +92,7 @@ enum rdt_group_type {
|
|
|
*/
|
|
|
enum rdtgrp_mode {
|
|
|
RDT_MODE_SHAREABLE = 0,
|
|
|
+ RDT_MODE_EXCLUSIVE,
|
|
|
|
|
|
/* Must be last */
|
|
|
RDT_NUM_MODES,
|