public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* Cluster Project branch, RHEL5, updated. cmirror_1_1_15-87-g23e72c4
@ 2008-05-16 17:58 jbrassow
  0 siblings, 0 replies; only message in thread
From: jbrassow @ 2008-05-16 17:58 UTC (permalink / raw)
  To: cluster-cvs, cluster-devel

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".

http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=23e72c453fcb6b67044d14a778a0b82de95b399c

The branch, RHEL5 has been updated
       via  23e72c453fcb6b67044d14a778a0b82de95b399c (commit)
      from  2efffab5f6d58ac8a8ae90f07f8a68f5452e763e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 23e72c453fcb6b67044d14a778a0b82de95b399c
Author: Jonathan Brassow <jbrassow@redhat.com>
Date:   Fri May 16 12:58:00 2008 -0500

    dm-log-clustered:  Optimization - no need to send get_resync_work if none left
    
    Once recovery has finished, it is never restarted until the mirror is
    suspended/resumed.  So, we can immediately return 0 on a 'get_resync_work'
    call if recovery has finished (rather than sending to userspace, and then
    around the cluster).  This improves performance.

-----------------------------------------------------------------------

Summary of changes:
 cmirror-kernel/src/dm-clog.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/cmirror-kernel/src/dm-clog.c b/cmirror-kernel/src/dm-clog.c
index b61de62..62ad414 100644
--- a/cmirror-kernel/src/dm-clog.c
+++ b/cmirror-kernel/src/dm-clog.c
@@ -23,6 +23,13 @@ struct log_c {
 	char *ctr_str; /* Gives ability to restart if userspace dies */
 	uint32_t ctr_size;
 
+	/*
+	 * in_sync_hint gets set when doing is_remote_recovering.  It
+	 * represents the first region that needs recovery.  IOW, the
+	 * first zero bit of sync_bits.  This can be useful for to limit
+	 * traffic for calls like is_remote_recovering and get_resync_work,
+	 * but be take care in its use for anything else.
+	 */
 	uint64_t in_sync_hint;
 
 	spinlock_t flush_lock;
@@ -528,6 +535,9 @@ static int cluster_get_resync_work(struct dirty_log *log, region_t *region)
 	struct log_c *lc = (struct log_c *)log->context;
 	struct { int i; region_t r; } pkg;
 
+	if (lc->in_sync_hint >= lc->region_count)
+		return 0;
+
 	rdata_size = sizeof(pkg);
 	r = cluster_do_request(lc, lc->uuid, DM_CLOG_GET_RESYNC_WORK,
 			       NULL, 0,


hooks/post-receive
--
Cluster Project


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-05-16 17:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-16 17:58 Cluster Project branch, RHEL5, updated. cmirror_1_1_15-87-g23e72c4 jbrassow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).