Hello community,

here is the log from the commit of package drbd for openSUSE:Factory checked in 
at 2017-10-07 17:50:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/drbd (Old)
 and      /work/SRC/openSUSE:Factory/.drbd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "drbd"

Sat Oct  7 17:50:44 2017 rev:61 rq:532109 version:9.0.9+git.bffac0d9

Changes:
--------
--- /work/SRC/openSUSE:Factory/drbd/drbd.changes        2017-07-21 
22:49:45.453695655 +0200
+++ /work/SRC/openSUSE:Factory/.drbd.new/drbd.changes   2017-10-07 
17:50:46.827000927 +0200
@@ -1,0 +2,23 @@
+Fri Oct  6 07:48:08 UTC 2017 - [email protected]
+
+- bsc#1061981, update to 9.0.9
+ * fix occasionally forgotten resyncs in installations where
+   diskless primaries are present.
+ * fix an issue that causes unexpected split-brain upon connect.
+ * in a cluster with a diskless primary, when a server goes away,
+   and is not outdated, outdate it upon reconnect.
+ * fix update of exposed data UUID on diskless primaries.
+ * fix a possible OOPS when in a debug message regarding bitmap
+   locking
+ * fix discard bigger than 1MiB
+ * fix left over bits in bitmap on SyncSource after resync
+ * fix peers becoming unexpectedly displayed as D_OUTDATED at the
+   end of a resync
+ * fix a race between auto promote and auto demote of multiple volumes
+   in a single resource
+ * Speed up down of many resources by using call_rcu() instead
+   of synchronize_rcu()
+ * Make it compatible with the soon to be released 4.13 kernel 
+- Modify reproducible.patch since part of the patch is merged
+
+-------------------------------------------------------------------

Old:
----
  drbd-9.0.8+git.c8bc3670.tar.bz2

New:
----
  drbd-9.0.9+git.bffac0d9.tar.bz2

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

Other differences:
------------------
++++++ drbd.spec ++++++
--- /var/tmp/diff_new_pack.AgHPkP/_old  2017-10-07 17:50:47.722961540 +0200
+++ /var/tmp/diff_new_pack.AgHPkP/_new  2017-10-07 17:50:47.726961364 +0200
@@ -24,7 +24,7 @@
 %endif
 
 Name:           drbd
-Version:        9.0.8+git.c8bc3670
+Version:        9.0.9+git.bffac0d9
 Release:        0
 Summary:        DRBD driver for Linux
 License:        GPL-2.0+

++++++ _service ++++++
--- /var/tmp/diff_new_pack.AgHPkP/_old  2017-10-07 17:50:47.794958375 +0200
+++ /var/tmp/diff_new_pack.AgHPkP/_new  2017-10-07 17:50:47.794958375 +0200
@@ -1,16 +1,16 @@
 <services>
   <service name="tar_scm" mode="disabled">
-    <param name="url">git://git.linbit.com/drbd-9.0.git</param>
+    <param name="url">[email protected]:LINBIT/drbd-9.0.git</param>
     <param name="scm">git</param>
     <param name="filename">drbd</param>
 <!--
     To update to a new release, change "revision" to the desired
     git commit hash and bump "version" if necessary
 
-    <param name="version">9.0.8</param>
+    <param name="version">9.0.9</param>
 -->
-    <param name="versionformat">9.0.8+git.%h</param>
-    <param name="revision">c8bc36701c7c7ffc2c208f620c6d89e4ec265704</param>
+    <param name="versionformat">9.0.9+git.%h</param>
+    <param name="revision">bffac0d96700a2ada5f6daf60465fb7f8add3bda</param>
   </service>
 
   <service name="recompress" mode="disabled">

++++++ drbd-9.0.8+git.c8bc3670.tar.bz2 -> drbd-9.0.9+git.bffac0d9.tar.bz2 ++++++
++++ 3595 lines of diff (skipped)

++++++ drbd_git_revision ++++++
--- /var/tmp/diff_new_pack.AgHPkP/_old  2017-10-07 17:50:48.102944836 +0200
+++ /var/tmp/diff_new_pack.AgHPkP/_new  2017-10-07 17:50:48.102944836 +0200
@@ -1 +1 @@
-GIT-hash: c8bc36701c7c7ffc2c208f620c6d89e4ec265704
+GIT-hash: bffac0d96700a2ada5f6daf60465fb7f8add3bda

++++++ reproducible.patch ++++++
--- /var/tmp/diff_new_pack.AgHPkP/_old  2017-10-07 17:50:48.130943605 +0200
+++ /var/tmp/diff_new_pack.AgHPkP/_new  2017-10-07 17:50:48.130943605 +0200
@@ -1,28 +1,3 @@
-commit 9777375cea4d39a6298b774c80eb1287836b217d
-Author: Bernhard M. Wiedemann <[email protected]>
-Date:   Mon Jul 17 21:05:47 2017 +0200
-
-    drbd: sort file list
-    
-    because it influences the ordering of entries in compat.h
-    which influences srcversion= checksum
-    which prevents drbd.ko from building reproducibly.
-    
-    See https://reproducible-builds.org/ for why this matters.
-
-diff --git a/drbd/Kbuild b/drbd/Kbuild
-index 2d1b4d0..c5787a6 100644
---- a/drbd/Kbuild
-+++ b/drbd/Kbuild
-@@ -70,7 +70,7 @@ COMPAT_FORCE := FORCE
- endif
- 
- ifneq ($(KBUILD_STAGE),modpost)
--TEST_C := $(wildcard $(src)/drbd-kernel-compat/tests/*.c)
-+TEST_C := $(sort $(wildcard $(src)/drbd-kernel-compat/tests/*.c))
- TEST_R := 
$(TEST_C:$(src)/drbd-kernel-compat/tests/%.c=$(obj)/.compat_test.%.result)
- $(obj)/.compat_test.%.result: $(src)/drbd-kernel-compat/tests/%.c 
$(COMPAT_FORCE)
-       $(call cmd,compat_test_result)
 commit 794951592b004e82c0160014751d9ebb654035c0
 Author: Bernhard M. Wiedemann <[email protected]>
 Date:   Tue Jul 18 10:30:16 2017 +0200


Reply via email to