forked from pool/cpupower
Accepting request 957148 from hardware
OBS-URL: https://build.opensuse.org/request/show/957148 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cpupower?expand=0&rev=53
This commit is contained in:
commit
f694cf8735
@ -1,34 +0,0 @@
|
|||||||
bindir ?= /usr/bin
|
|
||||||
|
|
||||||
# Do not use make's built-in rules
|
|
||||||
# (this improves performance and avoids hard-to-debug behaviour);
|
|
||||||
MAKEFLAGS += -r
|
|
||||||
|
|
||||||
override CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I include
|
|
||||||
|
|
||||||
ALL_PROGRAMS := intel-speed-select
|
|
||||||
|
|
||||||
all: $(ALL_PROGRAMS)
|
|
||||||
|
|
||||||
OBJ = isst-config.o isst-core.o isst-display.o
|
|
||||||
|
|
||||||
%.o: %.c
|
|
||||||
$(CC) -c -o $@ $< $(CFLAGS)
|
|
||||||
|
|
||||||
intel-speed-select: isst-config.o isst-core.o isst-display.o
|
|
||||||
$(CC) -o $@ $^ $(CFLAGS)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(ALL_PROGRAMS)
|
|
||||||
rm -rf include/linux/isst_if.h
|
|
||||||
find . -name '*.o' -delete -o -name '\.*.d' -delete
|
|
||||||
|
|
||||||
install: $(ALL_PROGRAMS)
|
|
||||||
install -d -m 755 $(DESTDIR)$(bindir); \
|
|
||||||
for program in $(ALL_PROGRAMS); do \
|
|
||||||
install $$program $(DESTDIR)$(bindir); \
|
|
||||||
done
|
|
||||||
|
|
||||||
FORCE:
|
|
||||||
|
|
||||||
.PHONY: all install clean
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a797d2584b25181147bb8a36e9538179066f8cb88c277cd8bbf485b8790f0fd1
|
|
||||||
size 75224
|
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 18 15:56:24 UTC 2022 - Callum Farmer <gmbr3@opensuse.org>
|
||||||
|
|
||||||
|
- Change to building the package from kernel-source based on
|
||||||
|
how the perf package works
|
||||||
|
- Removed patches:
|
||||||
|
* turbostat_makefile_fix_asm_header.patch
|
||||||
|
* remove_bits_h.patch
|
||||||
|
* x86_perf_makefile_fix_asm_header.patch
|
||||||
|
- Remove all tarballs and git script
|
||||||
|
- Use %lang_package
|
||||||
|
- Correct ix86 to %ix86
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 19 12:17:54 UTC 2021 - Thomas Renninger <trenn@suse.de>
|
Mon Jul 19 12:17:54 UTC 2021 - Thomas Renninger <trenn@suse.de>
|
||||||
|
|
||||||
|
@ -16,42 +16,25 @@
|
|||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%define maindir tools/power/cpupower
|
||||||
# Use this as version when things are in mainline kernel
|
%define tsdir tools/power/x86/turbostat
|
||||||
%define version %(rpm -q --qf '%{VERSION}' kernel-source)
|
%define pbdir tools/power/x86/x86_energy_perf_policy
|
||||||
|
%define ssdir tools/power/x86/intel-speed-select
|
||||||
%define tsversion 21.05.04
|
|
||||||
%define pbversion 17.05.11
|
|
||||||
%define ssversion 1.10
|
|
||||||
|
|
||||||
Name: cpupower
|
Name: cpupower
|
||||||
# Use this as version when things are in mainline kernel
|
# Use this as version when things are in mainline kernel
|
||||||
%define version %(rpm -q --qf '%VERSION' kernel-source)
|
%define version %(rpm -q --qf '%%{VERSION}' kernel-source)
|
||||||
Version: 5.14
|
Version: %{version}
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools to determine and set CPU Power related Settings
|
Summary: Tools to determine and set CPU Power related Settings
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
Group: System/Base
|
Group: System/Base
|
||||||
URL: https://git.kernel.org/cgit/linux/kernel/git/rafael/linux-pm.git
|
URL: https://git.kernel.org/cgit/linux/kernel/git/rafael/linux-pm.git
|
||||||
Source: %{name}-%{version}.tar.bz2
|
|
||||||
Source1: turbostat-%{tsversion}.tar.bz2
|
|
||||||
Source2: cpupower_export_tarball_from_git.sh
|
|
||||||
Source3: x86_energy_perf_policy-%{pbversion}.tar.bz2
|
|
||||||
Source4: intel-speed-select-%{ssversion}.tar.bz2
|
|
||||||
Source5: Makefile.intel-speed-select
|
|
||||||
Patch1: cpupower_rapl.patch
|
Patch1: cpupower_rapl.patch
|
||||||
Patch2: rapl_monitor.patch
|
Patch2: rapl_monitor.patch
|
||||||
Patch3: cpupower_exclude_kernel_Makefile.patch
|
Patch3: cpupower_exclude_kernel_Makefile.patch
|
||||||
Patch6: amd_do_not_show_amount_of_boost_states_if_zero.patch
|
Patch6: amd_do_not_show_amount_of_boost_states_if_zero.patch
|
||||||
|
BuildRequires: kernel-source
|
||||||
#turbostat patches
|
|
||||||
Patch22: turbostat_makefile_fix_asm_header.patch
|
|
||||||
Patch23: remove_bits_h.patch
|
|
||||||
|
|
||||||
# x86_energy_perf patches
|
|
||||||
# Fixes bsc#1048546:
|
|
||||||
Patch30: x86_perf_makefile_fix_asm_header.patch
|
|
||||||
|
|
||||||
BuildRequires: gettext-tools
|
BuildRequires: gettext-tools
|
||||||
BuildRequires: libcap-devel
|
BuildRequires: libcap-devel
|
||||||
BuildRequires: pciutils
|
BuildRequires: pciutils
|
||||||
@ -89,42 +72,38 @@ governor (e.g. ondemand, userspace, conservative) and the cpufreq HW driver
|
|||||||
For that purpose, it compares the performance governor to a configured
|
For that purpose, it compares the performance governor to a configured
|
||||||
powersave module.
|
powersave module.
|
||||||
|
|
||||||
|
%lang_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -D -b 1 -b 3 -b 4
|
# copy necessary files from kernel-source since we need to modify them
|
||||||
|
(cd %{_prefix}/src/linux ; tar -cf - COPYING CREDITS README tools include scripts Kbuild Makefile arch/*/{include,lib,Makefile} lib) | tar -xf -
|
||||||
|
chmod +x tools/power/cpupower/utils/version-gen.sh
|
||||||
|
cd %maindir
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%patch3 -p1
|
%patch3 -p1
|
||||||
%patch6 -p1
|
%patch6 -p1
|
||||||
|
|
||||||
cd ../turbostat-%{tsversion}
|
|
||||||
%patch22 -p1
|
|
||||||
%patch23 -p1
|
|
||||||
|
|
||||||
cd ../x86_energy_perf_policy-%{pbversion}
|
|
||||||
%patch23 -p1
|
|
||||||
%patch30 -p1
|
|
||||||
|
|
||||||
cd ../intel-speed-select-%{ssversion}
|
|
||||||
cp %{SOURCE5} Makefile
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CONF="PACKAGE_BUGREPORT=https://bugs.opensuse.org mandir=%{_mandir} libdir=%{_libdir} CPUFRQ_BENCH=true VERSION=%{version}"
|
CONF="PACKAGE_BUGREPORT=https://bugs.opensuse.org mandir=%{_mandir} libdir=%{_libdir} CPUFRQ_BENCH=true"
|
||||||
export CFLAGS="%{optflags} -fcommon -I ."
|
export CFLAGS="%{optflags} -fcommon"
|
||||||
make $CONF %{?_smp_mflags}
|
%make_build -C %{maindir} $CONF
|
||||||
|
|
||||||
%ifarch ix86 x86_64
|
%ifarch %{ix86} x86_64
|
||||||
cd ../turbostat-%{tsversion}
|
%make_build -C %{tsdir}
|
||||||
export CFLAGS="%{optflags} -fcommon -I ../turbostat-%{tsversion}/include"
|
%make_build -C %{pbdir}
|
||||||
make %{?_smp_mflags}
|
%make_build -C %{ssdir}
|
||||||
cd ../x86_energy_perf_policy-%{pbversion}
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
cd ../intel-speed-select-%{ssversion}
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
CONF="PACKAGE_BUGREPORT=https://bugs.opensuse.org mandir=%{_mandir} libdir=%{_libdir} CPUFRQ_BENCH=true DESTDIR=%{buildroot} sbindir=%{_sbindir} docdir=%{_docdir}/%{name} confdir=%{_sysconfdir} VERSION=%{version}"
|
CONF="PACKAGE_BUGREPORT=https://bugs.opensuse.org mandir=%{_mandir} libdir=%{_libdir} CPUFRQ_BENCH=true DESTDIR=%{buildroot} sbindir=%{_sbindir} docdir=%{_docdir}/%{name} confdir=%{_sysconfdir}"
|
||||||
%make_install $CONF
|
%make_install -C %{maindir} $CONF
|
||||||
|
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
|
%make_install -C %{tsdir}
|
||||||
|
%make_install -C %{pbdir}
|
||||||
|
%make_install -C %{ssdir}
|
||||||
|
%endif
|
||||||
|
|
||||||
# copy to examples doc dir to avoid complains from the build
|
# copy to examples doc dir to avoid complains from the build
|
||||||
# system about an executable in the doc dir.
|
# system about an executable in the doc dir.
|
||||||
@ -133,26 +112,17 @@ mv %{buildroot}//%{_docdir}/%{name}/cpufreq-bench_script.sh %{buildroot}/%{_docd
|
|||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%ifarch ix86 x86_64
|
|
||||||
cd ../turbostat-%{tsversion}
|
|
||||||
%make_install -e
|
|
||||||
cd ../x86_energy_perf_policy-%{pbversion}
|
|
||||||
%make_install
|
|
||||||
cd ../intel-speed-select-%{ssversion}
|
|
||||||
%make_install
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%post -n libcpupower0 -p /sbin/ldconfig
|
%post -n libcpupower0 -p /sbin/ldconfig
|
||||||
%postun -n libcpupower0 -p /sbin/ldconfig
|
%postun -n libcpupower0 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -f %{name}.lang
|
%files
|
||||||
%{_datadir}/bash-completion/completions/cpupower
|
%{_datadir}/bash-completion/completions/cpupower
|
||||||
%{_mandir}/man1/cpupower*
|
%{_mandir}/man1/cpupower*%{?ext_man}
|
||||||
%{_bindir}/cpupower
|
%{_bindir}/cpupower
|
||||||
%ifarch ix86 x86_64
|
%ifarch %{ix86} x86_64
|
||||||
%{_mandir}/man8/turbostat*
|
%{_mandir}/man8/turbostat*%{?ext_man}
|
||||||
%{_bindir}/turbostat
|
%{_bindir}/turbostat
|
||||||
%{_mandir}/man8/x86_energy_perf_policy*
|
%{_mandir}/man8/x86_energy_perf_policy*%{?ext_man}
|
||||||
%{_bindir}/x86_energy_perf_policy
|
%{_bindir}/x86_energy_perf_policy
|
||||||
%{_bindir}/intel-speed-select
|
%{_bindir}/intel-speed-select
|
||||||
%endif
|
%endif
|
||||||
@ -175,4 +145,6 @@ cd ../intel-speed-select-%{ssversion}
|
|||||||
%{_includedir}/powercap.h
|
%{_includedir}/powercap.h
|
||||||
%{_libdir}/libcpu*.so
|
%{_libdir}/libcpu*.so
|
||||||
|
|
||||||
|
%files lang -f %{name}.lang
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,180 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Author: Thomas Renninger <trenn@suse.de>
|
|
||||||
# This code is covered and distributed under
|
|
||||||
# the General Public Licence v2
|
|
||||||
|
|
||||||
GIT_TAG=HEAD
|
|
||||||
VERSION=""
|
|
||||||
TOOL=""
|
|
||||||
|
|
||||||
function usage(){
|
|
||||||
echo "$(basename $0) [ -k git_tag ] [ -v tag_to_use ] -t cpupower | turbostat | x86_perf_bias | intel-speed-select"
|
|
||||||
echo
|
|
||||||
echo "git_tag Must be a valid kernel git tag, for example v3.1"
|
|
||||||
echo " if git_tag is not passed HEAD will be used which"
|
|
||||||
echo " may produce a package incompatible tarball name"
|
|
||||||
echo " BEST ALWAYS PASS AN EXISTING TAG"
|
|
||||||
echo " cpupower got introduced in 3.1-rc1"
|
|
||||||
echo "tag_to_use obs does not like -rcX as a version tag. Pass a verion"
|
|
||||||
echo " tag you like to use (e.g. 3.13 instead of 3.13-rc7"
|
|
||||||
echo
|
|
||||||
echo "export GIT_DIR= environment variable if the git repo is not the current directory"
|
|
||||||
echo "For example: GIT_DIR=/path_to_git_repo/.git"
|
|
||||||
}
|
|
||||||
|
|
||||||
function parse_args()
|
|
||||||
{
|
|
||||||
while getopts hv:k:t: name ; do
|
|
||||||
case $name in
|
|
||||||
v)
|
|
||||||
VERSION="$OPTARG"
|
|
||||||
;;
|
|
||||||
|
|
||||||
k)
|
|
||||||
GIT_TAG="$OPTARG"
|
|
||||||
;;
|
|
||||||
t)
|
|
||||||
TOOL="$OPTARG"
|
|
||||||
echo $TOOL
|
|
||||||
;;
|
|
||||||
?|h)
|
|
||||||
usage
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
shift $(($OPTIND -1))
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function export_cpupower() {
|
|
||||||
|
|
||||||
echo "Exporting cpupower from kernel version $GIT_TAG"
|
|
||||||
|
|
||||||
if [ "$VERSION" = "" ];then
|
|
||||||
# convert - to . as package versions do not allow -
|
|
||||||
if [ $# -eq 1 ];then
|
|
||||||
VERSION="${GIT_TAG/-/.}"
|
|
||||||
# remove leading v
|
|
||||||
VERSION="-${VERSION#v}"
|
|
||||||
elif [ $# -eq 2 ];then
|
|
||||||
VERSION="${2/-/.}"
|
|
||||||
# remove leading v
|
|
||||||
VERSION="-${VERSION#v}"
|
|
||||||
elif [ $# -gt 2 ];then
|
|
||||||
usage
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Tried to do this with one git archive command, but
|
|
||||||
# --remote= param seem not to be configured for kernel.org gits
|
|
||||||
set -x
|
|
||||||
git archive --format=tar $GIT_TAG tools/power/cpupower |tar -x
|
|
||||||
set +x
|
|
||||||
mv tools/power/cpupower cpupower-${VERSION}
|
|
||||||
tar -cvjf cpupower-${VERSION}.tar.bz2 cpupower-${VERSION}
|
|
||||||
popd
|
|
||||||
mv "$DIR/cpupower-${VERSION}".tar.bz2 .
|
|
||||||
echo cpupower-${VERSION}.tar.bz2
|
|
||||||
}
|
|
||||||
|
|
||||||
function export_turbostat() {
|
|
||||||
|
|
||||||
git archive --format=tar $GIT_TAG tools/power/x86/turbostat |tar -x
|
|
||||||
|
|
||||||
if [ -z "$TURBOSTAT_VERSION" ];then
|
|
||||||
TURBOSTAT_VERSION=$(grep "turbostat version" tools/power/x86/turbostat/turbostat.c |grep fprintf |sed 's/.*turbostat version \([0-9][0-9].[0-9][0-9].[0-9][0-9]\).*/\1/')
|
|
||||||
fi
|
|
||||||
TURBOSTAT_VERSION=$(echo "-$TURBOSTAT_VERSION")
|
|
||||||
mv tools/power/x86/turbostat turbostat${TURBOSTAT_VERSION}
|
|
||||||
git checkout $GIT_TAG include/uapi/linux/const.h
|
|
||||||
git checkout $GIT_TAG include/vdso/bits.h
|
|
||||||
git checkout $GIT_TAG include/vdso/const.h
|
|
||||||
git checkout $GIT_TAG arch/x86/include/asm/msr-index.h
|
|
||||||
git checkout $GIT_TAG arch/x86/include/asm/intel-family.h
|
|
||||||
mkdir -p turbostat${TURBOSTAT_VERSION}/include/uapi/linux
|
|
||||||
mkdir -p turbostat${TURBOSTAT_VERSION}/include/vdso
|
|
||||||
cp include/uapi/linux/const.h turbostat${TURBOSTAT_VERSION}/include/uapi/linux/const.h
|
|
||||||
cp include/vdso/bits.h turbostat${TURBOSTAT_VERSION}/include/vdso/bits.h
|
|
||||||
cp include/vdso/const.h turbostat${TURBOSTAT_VERSION}/include/vdso/const.h
|
|
||||||
cp arch/x86/include/asm/intel-family.h turbostat${TURBOSTAT_VERSION}
|
|
||||||
cp arch/x86/include/asm/msr-index.h turbostat${TURBOSTAT_VERSION}
|
|
||||||
tar -cvjf turbostat${TURBOSTAT_VERSION}.tar.bz2 turbostat${TURBOSTAT_VERSION}
|
|
||||||
popd
|
|
||||||
mv "$DIR/turbostat${TURBOSTAT_VERSION}".tar.bz2 .
|
|
||||||
echo turbostat${TURBOSTAT_VERSION}.tar.bz2
|
|
||||||
}
|
|
||||||
|
|
||||||
function export_x86_perf_bias() {
|
|
||||||
|
|
||||||
set -x
|
|
||||||
git archive --format=tar $GIT_TAG tools/power/x86/x86_energy_perf_policy |tar -x
|
|
||||||
|
|
||||||
if [ -z "$PERF_BIAS_VERSION" ];then
|
|
||||||
PERF_BIAS_VERSION=$(grep 'printf("x86_energy_perf_policy .* (C) Len Brown <len.brown@intel.com' tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c |sed 's/.*x86_energy_perf_policy \([0-9][0-9].[0-9][0-9].[0-9][0-9]\).*/\1/')
|
|
||||||
fi
|
|
||||||
PERF_BIAS_VERSION=$(echo "-$PERF_BIAS_VERSION")
|
|
||||||
mv tools/power/x86/x86_energy_perf_policy x86_energy_perf_policy${PERF_BIAS_VERSION}
|
|
||||||
set +x
|
|
||||||
git checkout $GIT_TAG arch/x86/include/asm/msr-index.h
|
|
||||||
cp arch/x86/include/asm/msr-index.h x86_energy_perf_policy${PERF_BIAS_VERSION}
|
|
||||||
tar -cvjf x86_energy_perf_policy${PERF_BIAS_VERSION}.tar.bz2 x86_energy_perf_policy${PERF_BIAS_VERSION}
|
|
||||||
popd
|
|
||||||
mv "$DIR/x86_energy_perf_policy${PERF_BIAS_VERSION}".tar.bz2 .
|
|
||||||
echo x86_energy_perf_policy${PERF_BIAS_VERSION}.tar.bz2
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function export_intel-speed-select {
|
|
||||||
|
|
||||||
set -x
|
|
||||||
git archive --format=tar $GIT_TAG tools/power/x86/intel-speed-select |tar -x
|
|
||||||
|
|
||||||
if [ -z "$SPEED_SELECT_VERSION" ];then
|
|
||||||
SPEED_SELECT_VERSION=$(sed -n -e 's#static const char \*version_str = "v\(.*\)";#\1#p' tools/power/x86/intel-speed-select/isst-config.c)
|
|
||||||
fi
|
|
||||||
SPEED_SELECT_VERSION=$(echo "-$SPEED_SELECT_VERSION")
|
|
||||||
mv tools/power/x86/intel-speed-select intel-speed-select${SPEED_SELECT_VERSION}
|
|
||||||
set +x
|
|
||||||
git checkout $GIT_TAG include/uapi/linux/isst_if.h
|
|
||||||
mkdir -p intel-speed-select${SPEED_SELECT_VERSION}/include/linux
|
|
||||||
cp include/uapi/linux/isst_if.h intel-speed-select${SPEED_SELECT_VERSION}/include/linux
|
|
||||||
tar -cvjf intel-speed-select${SPEED_SELECT_VERSION}.tar.bz2 intel-speed-select${SPEED_SELECT_VERSION}
|
|
||||||
popd
|
|
||||||
mv "$DIR/intel-speed-select${SPEED_SELECT_VERSION}".tar.bz2 .
|
|
||||||
echo intel-speed-select${SPEED_SELECT_VERSION}.tar.bz2
|
|
||||||
}
|
|
||||||
|
|
||||||
parse_args $*
|
|
||||||
|
|
||||||
DIR=`mktemp -d`
|
|
||||||
pushd "$DIR"
|
|
||||||
|
|
||||||
if [ "$GIT_DIR" = "" ];then
|
|
||||||
export GIT_DIR=/archteam/trenn/git/linux-2.6/.git
|
|
||||||
fi
|
|
||||||
|
|
||||||
case $TOOL in
|
|
||||||
cpupower)
|
|
||||||
export_cpupower
|
|
||||||
;;
|
|
||||||
turbostat)
|
|
||||||
export_turbostat
|
|
||||||
;;
|
|
||||||
x86_perf_bias)
|
|
||||||
export_x86_perf_bias
|
|
||||||
;;
|
|
||||||
intel-speed-select)
|
|
||||||
set -x
|
|
||||||
export_intel-speed-select
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "You have to provide the tool you want to export cpupower|turbostat|x86_energy_perf_bias|intel-speed-select"
|
|
||||||
usage
|
|
||||||
rm -rf "$DIR"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
rm -rf "$DIR"
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:92178c4cfc6b7fa52e167b79cc82cf0548dfa6531f02eca36d3519aa14ffee32
|
|
||||||
size 23381
|
|
@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
msr-index.h | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/msr-index.h
|
|
||||||
+++ b/msr-index.h
|
|
||||||
@@ -2,7 +2,7 @@
|
|
||||||
#ifndef _ASM_X86_MSR_INDEX_H
|
|
||||||
#define _ASM_X86_MSR_INDEX_H
|
|
||||||
|
|
||||||
-#include <linux/bits.h>
|
|
||||||
+#include <vdso/bits.h>
|
|
||||||
|
|
||||||
/*
|
|
||||||
* CPU model specific register (MSR) numbers.
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ed6c7716b7718ffc8c7037108b1fa2a923aea306e2aa01b99abc7b2157eb7da9
|
|
||||||
size 48713
|
|
@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
Makefile | 6 +++---
|
|
||||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
--- a/Makefile
|
|
||||||
+++ b/Makefile
|
|
||||||
@@ -9,9 +9,9 @@
|
|
||||||
endif
|
|
||||||
|
|
||||||
turbostat : turbostat.c
|
|
||||||
-override CFLAGS += -O2 -Wall -I../../../include
|
|
||||||
-override CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/asm/msr-index.h"'
|
|
||||||
-override CFLAGS += -DINTEL_FAMILY_HEADER='"../../../../arch/x86/include/asm/intel-family.h"'
|
|
||||||
+override CFLAGS += -O2 -Wall -I ./include
|
|
||||||
+override CFLAGS += -DMSRHEADER='"msr-index.h"'
|
|
||||||
+override CFLAGS += -DINTEL_FAMILY_HEADER='"intel-family.h"'
|
|
||||||
override CFLAGS += -D_FILE_OFFSET_BITS=64
|
|
||||||
override CFLAGS += -D_FORTIFY_SOURCE=2
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5080ec1fa9597b9c5863119000c4cc87d767fd1f0a3f7250a5c1e7747ab4d714
|
|
||||||
size 20254
|
|
@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
Makefile | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/Makefile
|
|
||||||
+++ b/Makefile
|
|
||||||
@@ -10,7 +10,7 @@
|
|
||||||
|
|
||||||
x86_energy_perf_policy : x86_energy_perf_policy.c
|
|
||||||
override CFLAGS += -O2 -Wall -I../../../include
|
|
||||||
-override CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/asm/msr-index.h"'
|
|
||||||
+override CFLAGS += -DMSRHEADER='"msr-index.h"'
|
|
||||||
override CFLAGS += -D_FORTIFY_SOURCE=2
|
|
||||||
|
|
||||||
%: %.c
|
|
Loading…
Reference in New Issue
Block a user