Hello community,

here is the log from the commit of package msr-tools for openSUSE:Factory 
checked in at 2016-07-01 09:59:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/msr-tools (Old)
 and      /work/SRC/openSUSE:Factory/.msr-tools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "msr-tools"

Changes:
--------
--- /work/SRC/openSUSE:Factory/msr-tools/msr-tools.changes      2015-04-25 
11:23:17.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.msr-tools.new/msr-tools.changes 2016-07-01 
09:59:50.000000000 +0200
@@ -1,0 +2,8 @@
+Tue Jun 21 15:46:48 UTC 2016 - tr...@suse.de
+
+- Rename cpuid binary to cpuid_msr_tools in favor for the more important
+  cpuid project/tool (fate#319512)
+*Modify: msr-tools-xen_physical_msr_support.patch
+  refresh.
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ msr-tools.spec ++++++
--- /var/tmp/diff_new_pack.8rfFfI/_old  2016-07-01 09:59:51.000000000 +0200
+++ /var/tmp/diff_new_pack.8rfFfI/_new  2016-07-01 09:59:51.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package msr-tools
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -43,7 +43,8 @@
 %install
 mkdir -p %{buildroot}/%{_sbindir}
 cp %{SOURCE1} .
-install -m 0755 rdmsr wrmsr cpuid %{buildroot}/%{_sbindir}
+install -m 0755 rdmsr wrmsr %{buildroot}/%{_sbindir}
+install -m 0755 cpuid %{buildroot}/%{_sbindir}/cpuid_msr_tools
 
 %files
 %defattr(-,root,root)

++++++ msr-tools-xen_physical_msr_support.patch ++++++
--- /var/tmp/diff_new_pack.8rfFfI/_old  2016-07-01 09:59:51.000000000 +0200
+++ /var/tmp/diff_new_pack.8rfFfI/_new  2016-07-01 09:59:51.000000000 +0200
@@ -14,11 +14,11 @@
  wrmsr.c |   12 ++++++++++--
  2 files changed, 19 insertions(+), 4 deletions(-)
 
-Index: msr-tools-1.3/rdmsr.c
+Index: msr-tools-msr-tools-1.3/rdmsr.c
 ===================================================================
---- msr-tools-1.3.orig/rdmsr.c
-+++ msr-tools-1.3/rdmsr.c
-@@ -45,12 +45,15 @@ static const struct option long_options[
+--- msr-tools-msr-tools-1.3.orig/rdmsr.c       2013-09-10 04:49:29.000000000 
+0200
++++ msr-tools-msr-tools-1.3/rdmsr.c    2016-06-21 16:59:00.706090221 +0200
+@@ -44,12 +44,15 @@ static const struct option long_options[
        {"zero-pad",            0, 0, '0'},
        {"raw",                 0, 0, 'r'},
        {"all",                 0, 0, 'a'},
@@ -35,7 +35,7 @@
  
  /* Number of decimal digits for a certain number of bits */
  /* (int) ceil(log(2^n)/log(10)) */
-@@ -90,6 +93,7 @@ void usage(void)
+@@ -89,6 +92,7 @@ void usage(void)
                "  --raw          -r  Raw binary output\n"
                "  --all          -a  all processors\n"
                "  --processor #  -p  Select processor number (default 0)\n"
@@ -43,7 +43,7 @@
                "  --bitfield h:l -f  Output bits [h:l] only\n", program);
  }
  
-@@ -167,6 +171,9 @@ int main(int argc, char *argv[])
+@@ -166,6 +170,9 @@ int main(int argc, char *argv[])
                case 'a':
                        cpu = -1;
                        break;
@@ -53,7 +53,7 @@
                case 'p':
                        arg = strtoul(optarg, &endarg, 0);
                        if (*endarg || arg > 255) {
-@@ -213,7 +220,7 @@ void rdmsr_on_cpu(uint32_t reg, int cpu)
+@@ -212,7 +219,7 @@ void rdmsr_on_cpu(uint32_t reg, int cpu)
        char msr_file_name[64];
        unsigned int bits;
  
@@ -62,11 +62,11 @@
        fd = open(msr_file_name, O_RDONLY);
        if (fd < 0) {
                if (errno == ENXIO) {
-Index: msr-tools-1.3/wrmsr.c
+Index: msr-tools-msr-tools-1.3/wrmsr.c
 ===================================================================
---- msr-tools-1.3.orig/wrmsr.c
-+++ msr-tools-1.3/wrmsr.c
-@@ -36,10 +36,13 @@ static const struct option long_options[
+--- msr-tools-msr-tools-1.3.orig/wrmsr.c       2013-09-10 04:49:29.000000000 
+0200
++++ msr-tools-msr-tools-1.3/wrmsr.c    2016-06-21 16:59:00.706090221 +0200
+@@ -35,10 +35,13 @@ static const struct option long_options[
        {"version",     0, 0, 'V'},
        {"all",         0, 0, 'a'},
        {"processor",   1, 0, 'p'},
@@ -81,7 +81,7 @@
  
  const char *program;
  
-@@ -49,6 +52,7 @@ void usage(void)
+@@ -48,6 +51,7 @@ void usage(void)
                "  --help         -h  Print this help\n"
                "  --version      -V  Print current version\n"
                "  --all          -a  all processors\n"
@@ -89,7 +89,7 @@
                "  --processor #  -p  Select processor number (default 0)\n",
                program);
  }
-@@ -101,6 +105,9 @@ int main(int argc, char *argv[])
+@@ -100,6 +104,9 @@ int main(int argc, char *argv[])
                case 'a':
                        cpu = -1;
                        break;
@@ -99,7 +99,7 @@
                case 'p':
                        arg = strtoul(optarg, &endarg, 0);
                        if (*endarg || arg > 255) {
-@@ -138,7 +145,7 @@ void wrmsr_on_cpu(uint32_t reg, int cpu,
+@@ -137,7 +144,7 @@ void wrmsr_on_cpu(uint32_t reg, int cpu,
        int fd;
        char msr_file_name[64];
  


Reply via email to