new release
bug fixes
This commit is contained in:
parent
7c96aa1cf4
commit
f64ca79b1c
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
/v0.1.5.tar.gz
|
/v0.1.5.tar.gz
|
||||||
/v0.1.5-1.tar.gz
|
/v0.1.5-1.tar.gz
|
||||||
/v1.0.0.tar.gz
|
/v1.0.0.tar.gz
|
||||||
|
/v1.0.1.tar.gz
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
%global githubname intel-cmt-cat
|
%global githubname intel-cmt-cat
|
||||||
%global githubver 1.0.0
|
%global githubver 1.0.1
|
||||||
|
|
||||||
%if %{defined githubsubver}
|
%if %{defined githubsubver}
|
||||||
%global githubfull %{githubname}-%{githubver}.%{githubsubver}
|
%global githubfull %{githubname}-%{githubver}.%{githubsubver}
|
||||||
@ -36,7 +36,7 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
|
||||||
Summary: Provides command line interface to CMT, MBM, CAT and CDP technologies
|
Summary: Provides command line interface to CMT, MBM, CAT, CDP and MBA technologies
|
||||||
Name: %{githubname}
|
Name: %{githubname}
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Version: %{githubver}
|
Version: %{githubver}
|
||||||
@ -53,7 +53,8 @@ URL: https://github.com/01org/%{githubname}
|
|||||||
%description
|
%description
|
||||||
This software package provides basic support for
|
This software package provides basic support for
|
||||||
Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring (MBM),
|
Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring (MBM),
|
||||||
Cache Allocation Technology (CAT) and Code Data Prioratization (CDP).
|
Cache Allocation Technology (CAT), Memory Bandwidth Allocation (MBA),
|
||||||
|
and Code Data Prioratization (CDP).
|
||||||
|
|
||||||
CMT, MBM and CAT are configured using Model Specific Registers (MSRs)
|
CMT, MBM and CAT are configured using Model Specific Registers (MSRs)
|
||||||
to measure last level cache occupancy, set up the class of service masks and
|
to measure last level cache occupancy, set up the class of service masks and
|
||||||
@ -64,7 +65,7 @@ provides an interface to read and write the MSR registers but
|
|||||||
it requires root privileges.
|
it requires root privileges.
|
||||||
|
|
||||||
%package -n intel-cmt-cat-devel
|
%package -n intel-cmt-cat-devel
|
||||||
Summary: Library and sample code to use CMT, MBM, CAT and CDP technologies
|
Summary: Library and sample code to use CMT, MBM, CAT, CDP and MBA technologies
|
||||||
License: BSD
|
License: BSD
|
||||||
Requires: intel-cmt-cat == %{version}
|
Requires: intel-cmt-cat == %{version}
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
@ -72,8 +73,9 @@ ExclusiveArch: x86_64 i686 i586
|
|||||||
|
|
||||||
%description -n intel-cmt-cat-devel
|
%description -n intel-cmt-cat-devel
|
||||||
This software package provides basic support for
|
This software package provides basic support for
|
||||||
Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring (MBM)
|
Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring (MBM),
|
||||||
and Cache Allocation Technology (CAT) and Code Data Prioratization (CDP).
|
Cache Allocation Technology (CAT), Memory Bandwidth Allocation (MBA),
|
||||||
|
and Code Data Prioratization (CDP).
|
||||||
The package includes library, header file and sample code.
|
The package includes library, header file and sample code.
|
||||||
|
|
||||||
For additional information please refer to:
|
For additional information please refer to:
|
||||||
@ -107,7 +109,6 @@ install -m 0644 %{_builddir}/%{githubfull}/rdtset/rdtset.8 %{buildroot}/%{_mand
|
|||||||
install -d %{buildroot}/%{_licensedir}/%{name}-%{version}
|
install -d %{buildroot}/%{_licensedir}/%{name}-%{version}
|
||||||
install -m 0644 %{_builddir}/%{githubfull}/LICENSE %{buildroot}/%{_licensedir}/%{name}-%{version}
|
install -m 0644 %{_builddir}/%{githubfull}/LICENSE %{buildroot}/%{_licensedir}/%{name}-%{version}
|
||||||
|
|
||||||
|
|
||||||
# Install the library
|
# Install the library
|
||||||
install -d %{buildroot}/%{_libdir}
|
install -d %{buildroot}/%{_libdir}
|
||||||
install %{_builddir}/%{githubfull}/lib/libpqos-*.so %{buildroot}/%{_libdir}
|
install %{_builddir}/%{githubfull}/lib/libpqos-*.so %{buildroot}/%{_libdir}
|
||||||
@ -160,6 +161,10 @@ install -m 0644 %{_builddir}/%{githubfull}/examples/c/CMT_MBM/monitor_app.c %{bu
|
|||||||
%doc %{_usrsrc}/%{githubfull}/LICENSE
|
%doc %{_usrsrc}/%{githubfull}/LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jun 07 2017 Aaron Hetherington <aaron.hetherington@intel.com>, Marcel Cornu <marcel.d.cornu@intel.com> 1.0.1-1
|
||||||
|
- new release
|
||||||
|
- bug fixes
|
||||||
|
|
||||||
* Fri May 19 2017 Aaron Hetherington <aaron.hetherington@intel.com>, Michal Aleksinski <michalx.aleksinski@intel.com> 1.0.0-1
|
* Fri May 19 2017 Aaron Hetherington <aaron.hetherington@intel.com>, Michal Aleksinski <michalx.aleksinski@intel.com> 1.0.0-1
|
||||||
- new release
|
- new release
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (v1.0.0.tar.gz) = 8a5ca62d085261d1644d480d41f2f38059edb8b2a28661f58cc2038bc7c9ea4ead61eaca8c1cfd13a3d0a680609f2096e6bd59517e88f656413ab6577a896021
|
SHA512 (v1.0.1.tar.gz) = 65bb15d704d518dcc92e7d192e6bb7cdd2f84589f702b2f7157f19c2df8ceee8ab55aacd63f05fc1dd52eece17b1a654c787df6974516709e6a74aaf93149383
|
||||||
|
Loading…
Reference in New Issue
Block a user