Accepting request 532108 from home:wanghaisu:branches:network:ha-clustering:Factory
bsc#1061981, update to 9.0.9 OBS-URL: https://build.opensuse.org/request/show/532108 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/drbd?expand=0&rev=54
This commit is contained in:
parent
984d8f8306
commit
760895e2d0
8
_service
8
_service
@ -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">git@github.com: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">
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95de509dfb3038613f1fbea8c6725f2a572c7b0c94fc77f2f2b167d5577bdf73
|
||||
size 305477
|
3
drbd-9.0.9+git.bffac0d9.tar.bz2
Normal file
3
drbd-9.0.9+git.bffac0d9.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7543f48e0fd7c5165af892bad227d04fd71a265a6fab5d108e6e14e4ea61088
|
||||
size 310824
|
23
drbd.changes
23
drbd.changes
@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 6 07:48:08 UTC 2017 - nwang@suse.com
|
||||
|
||||
- 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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 19 05:01:10 UTC 2017 - bwiedemann@suse.com
|
||||
|
||||
|
@ -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+
|
||||
|
@ -1 +1 @@
|
||||
GIT-hash: c8bc36701c7c7ffc2c208f620c6d89e4ec265704
|
||||
GIT-hash: bffac0d96700a2ada5f6daf60465fb7f8add3bda
|
||||
|
@ -1,28 +1,3 @@
|
||||
commit 9777375cea4d39a6298b774c80eb1287836b217d
|
||||
Author: Bernhard M. Wiedemann <bwiedemann@suse.de>
|
||||
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 <bwiedemann@suse.de>
|
||||
Date: Tue Jul 18 10:30:16 2017 +0200
|
||||
|
Loading…
Reference in New Issue
Block a user