From 4f4b0867b9c4d8cc8eaf61e918827ca36c0f5a91 Mon Sep 17 00:00:00 2001 From: Olev Kartau Date: Wed, 11 Apr 2018 13:40:43 +0300 Subject: [PATCH] rdt-discovery, Dockerfile: update links to intel-cmt-cat intel-cmt-cat repo is located in github/intel/ now, update links accordingly, correcting also some source file names pointed from files under rdt-discovery/. Updated also ref. to intel-cmt-cat in Dockerfile. No functional changes. --- Dockerfile | 2 +- rdt-discovery/l2-allocation-discovery.c | 2 +- rdt-discovery/l3-allocation-discovery.c | 2 +- rdt-discovery/monitoring-cmt-discovery.c | 2 +- rdt-discovery/monitoring-discovery.c | 2 +- rdt-discovery/monitoring-mbm-discovery.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32154e75b..e0875e452 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN case $(dpkg --print-architecture) in \ echo "skip rdt on Arm64 platform" \ ;; \ *) \ - git clone --depth 1 -b $CMT_CAT_VERSION https://github.com/01org/intel-cmt-cat.git && \ + git clone --depth 1 -b $CMT_CAT_VERSION https://github.com/intel/intel-cmt-cat.git && \ make -C intel-cmt-cat/lib install && \ make -C rdt-discovery \ ;; \ diff --git a/rdt-discovery/l2-allocation-discovery.c b/rdt-discovery/l2-allocation-discovery.c index 839b8dab3..37058dd4b 100644 --- a/rdt-discovery/l2-allocation-discovery.c +++ b/rdt-discovery/l2-allocation-discovery.c @@ -5,7 +5,7 @@ int main(int argc, char *argv[]) { struct cpuid_out res; - // Logic below from https://github.com/01org/intel-cmt-cat/blob/master/lib/host_cap.c + // Logic below from https://github.com/intel/intel-cmt-cat/blob/master/lib/cap.c lcpuid(0x7, 0x0, &res); if (!(res.ebx & (1 << 15))) { return EXIT_FAILURE; diff --git a/rdt-discovery/l3-allocation-discovery.c b/rdt-discovery/l3-allocation-discovery.c index ef984a62d..b402a77c1 100644 --- a/rdt-discovery/l3-allocation-discovery.c +++ b/rdt-discovery/l3-allocation-discovery.c @@ -5,7 +5,7 @@ int main(int argc, char *argv[]) { struct cpuid_out res; - // Logic below from https://github.com/01org/intel-cmt-cat/blob/master/lib/host_cap.c + // Logic below from https://github.com/intel/intel-cmt-cat/blob/master/lib/cap.c // TODO(balajismaniam): Implement L3 CAT detection using brand string and MSR probing if // not detected using cpuid lcpuid(0x7, 0x0, &res); diff --git a/rdt-discovery/monitoring-cmt-discovery.c b/rdt-discovery/monitoring-cmt-discovery.c index 0cee2feaa..430f10fb4 100644 --- a/rdt-discovery/monitoring-cmt-discovery.c +++ b/rdt-discovery/monitoring-cmt-discovery.c @@ -5,7 +5,7 @@ int main(int argc, char *argv[]) { struct cpuid_out res; - // Logic below from https://github.com/01org/intel-cmt-cat/blob/master/lib/host_cap.c + // Logic below from https://github.com/intel/intel-cmt-cat/blob/master/lib/cap.c lcpuid(0x7, 0x0, &res); if (!(res.ebx & (1 << 12))) { return EXIT_FAILURE; diff --git a/rdt-discovery/monitoring-discovery.c b/rdt-discovery/monitoring-discovery.c index c700b01d1..65a596ace 100644 --- a/rdt-discovery/monitoring-discovery.c +++ b/rdt-discovery/monitoring-discovery.c @@ -5,7 +5,7 @@ int main(int argc, char *argv[]) { struct cpuid_out res; - // Logic below from https://github.com/01org/intel-cmt-cat/blob/master/lib/host_cap.c + // Logic below from https://github.com/intel/intel-cmt-cat/blob/master/lib/cap.c lcpuid(0x7, 0x0, &res); if (!(res.ebx & (1 << 12))) { return EXIT_FAILURE; diff --git a/rdt-discovery/monitoring-mbm-discovery.c b/rdt-discovery/monitoring-mbm-discovery.c index 0500cbb03..cd2c0124b 100644 --- a/rdt-discovery/monitoring-mbm-discovery.c +++ b/rdt-discovery/monitoring-mbm-discovery.c @@ -5,7 +5,7 @@ int main(int argc, char *argv[]) { struct cpuid_out res; - // Logic below from https://github.com/01org/intel-cmt-cat/blob/master/lib/host_cap.c + // Logic below from https://github.com/intel/intel-cmt-cat/blob/master/lib/cap.c lcpuid(0x7, 0x0, &res); if (!(res.ebx & (1 << 12))) { return EXIT_FAILURE;