diff options
author | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2020-09-30 17:05:42 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2020-10-02 19:51:57 +0300 |
commit | 894c26a1c274b8eafbb4b1dad67e70e51a106061 (patch) | |
tree | 9a4621cf8de016cc80c9678175ba797df64fcba3 /include/linux/nodemask.h | |
parent | 4849bc777049b568a35d5d63ae326e93f0fff9de (diff) | |
download | linux-894c26a1c274b8eafbb4b1dad67e70e51a106061.tar.xz |
ACPI: Support Generic Initiator only domains
Generic Initiators are a new ACPI concept that allows for the
description of proximity domains that contain a device which
performs memory access (such as a network card) but neither
host CPU nor Memory.
This patch has the parsing code and provides the infrastructure
for an architecture to associate these new domains with their
nearest memory processing node.
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/nodemask.h')
-rw-r--r-- | include/linux/nodemask.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h index 27e7fa36f707..3334ce056335 100644 --- a/include/linux/nodemask.h +++ b/include/linux/nodemask.h @@ -399,6 +399,7 @@ enum node_states { #endif N_MEMORY, /* The node has memory(regular, high, movable) */ N_CPU, /* The node has one or more cpus */ + N_GENERIC_INITIATOR, /* The node has one or more Generic Initiators */ NR_NODE_STATES }; |