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;