Package clean up + add fix for quorum engine
This commit is contained in:
parent
3a05a3ccec
commit
6759e46420
23
corosync-trunk_r1774.diff
Normal file
23
corosync-trunk_r1774.diff
Normal file
@ -0,0 +1,23 @@
|
||||
Index: exec/vsf_quorum.c
|
||||
===================================================================
|
||||
--- exec/vsf_quorum.c (revision 1773)
|
||||
+++ exec/vsf_quorum.c (revision 1774)
|
||||
@@ -119,12 +119,14 @@
|
||||
memcpy(&quorum_ring_id, ring_id, sizeof (quorum_ring_id));
|
||||
|
||||
quorum_view_list_entries = view_list_entries;
|
||||
+
|
||||
+ /* Tell sync() only if there is a new ring_id (ie this is not a 'fake' quorum event) */
|
||||
+ if (memcmp(&quorum_ring_id, ring_id, sizeof (quorum_ring_id))) {
|
||||
+ sync_primary_callback_fn(view_list, view_list_entries,
|
||||
+ primary_designated, ring_id);
|
||||
+ }
|
||||
memcpy(quorum_view_list, view_list, sizeof(unsigned int)*view_list_entries);
|
||||
|
||||
- /* Tell sync() */
|
||||
- sync_primary_callback_fn(view_list, view_list_entries,
|
||||
- primary_designated, &quorum_ring_id);
|
||||
-
|
||||
/* Tell internal listeners */
|
||||
send_internal_notification();
|
||||
|
@ -3,12 +3,13 @@
|
||||
Name: corosync
|
||||
Summary: The Corosync Cluster Engine and Application Programming Interfaces
|
||||
Version: 0.93
|
||||
Release: 1%{?alphatag:.%{alphatag}}%{?dist}
|
||||
Release: 2%{?alphatag:.%{alphatag}}%{?dist}
|
||||
License: BSD
|
||||
Group: System Environment/Base
|
||||
URL: http://www.openais.org
|
||||
Source0: http://developer.osdl.org/dev/openais/downloads/corosync-%{version}/corosync-%{version}.tar.gz
|
||||
Patch0: gcc-44-fix.diff
|
||||
Patch0: corosync-trunk_r1767.diff
|
||||
Patch1: corosync-trunk_r1774.diff
|
||||
|
||||
# Runtime bits
|
||||
Requires: corosynclib = %{version}-%{release}
|
||||
@ -25,6 +26,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
%prep
|
||||
%setup -q -n corosync-%{version}
|
||||
%patch0 -p0
|
||||
%patch1 -p0
|
||||
|
||||
%build
|
||||
|
||||
@ -186,6 +188,10 @@ The Corosync Cluster Engine APIs.
|
||||
%{_mandir}/man8/votequorum_overview.8*
|
||||
|
||||
%changelog
|
||||
* Mon Feb 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-2
|
||||
- Rename gcc-4.4 patch to match svn commit (r1767).
|
||||
- Backport patch from trunk (commit r1774) to fix quorum engine.
|
||||
|
||||
* Thu Feb 19 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-1
|
||||
- New upstream release.
|
||||
- Drop alphatag from spec file.
|
||||
|
Loading…
Reference in New Issue
Block a user