lkml.org 
[lkml]   [2017]   [Jul]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 07/28] x86/intel_rdt: make rdt_resources_all more readable
Date
Change the format of the global rdt_resources_all. This holds all the
RDT resource structure initialization values. Make this more readable by
using the format:

rdt_resources_all[] = {
[<resource_index>] =
{...
}
...
}

Signed-off-by: Vikas Shivappa <vikas.shivappa@linux.intel.com>
---
arch/x86/kernel/cpu/intel_rdt.c | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/arch/x86/kernel/cpu/intel_rdt.c b/arch/x86/kernel/cpu/intel_rdt.c
index 835e1ff..98715c5 100644
--- a/arch/x86/kernel/cpu/intel_rdt.c
+++ b/arch/x86/kernel/cpu/intel_rdt.c
@@ -63,6 +63,7 @@
#define domain_init(id) LIST_HEAD_INIT(rdt_resources_all[id].domains)

struct rdt_resource rdt_resources_all[] = {
+ [RDT_RESOURCE_L3] =
{
.name = "L3",
.domains = domain_init(RDT_RESOURCE_L3),
@@ -77,6 +78,7 @@ struct rdt_resource rdt_resources_all[] = {
.parse_ctrlval = parse_cbm,
.format_str = "%d=%0*x",
},
+ [RDT_RESOURCE_L3DATA] =
{
.name = "L3DATA",
.domains = domain_init(RDT_RESOURCE_L3DATA),
@@ -91,6 +93,7 @@ struct rdt_resource rdt_resources_all[] = {
.parse_ctrlval = parse_cbm,
.format_str = "%d=%0*x",
},
+ [RDT_RESOURCE_L3CODE] =
{
.name = "L3CODE",
.domains = domain_init(RDT_RESOURCE_L3CODE),
@@ -105,6 +108,7 @@ struct rdt_resource rdt_resources_all[] = {
.parse_ctrlval = parse_cbm,
.format_str = "%d=%0*x",
},
+ [RDT_RESOURCE_L2] =
{
.name = "L2",
.domains = domain_init(RDT_RESOURCE_L2),
@@ -119,6 +123,7 @@ struct rdt_resource rdt_resources_all[] = {
.parse_ctrlval = parse_cbm,
.format_str = "%d=%0*x",
},
+ [RDT_RESOURCE_MBA] =
{
.name = "MB",
.domains = domain_init(RDT_RESOURCE_MBA),
--
1.9.1
\
 
 \ /
  Last update: 2017-07-25 23:14    [W:0.272 / U:0.684 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site