All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lon Hohberger <lhh@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH] cman: fix ttl default if no value is specified
Date: Mon, 20 Jun 2011 09:28:19 -0400	[thread overview]
Message-ID: <20110620132818.GQ10019@redhat.com> (raw)
In-Reply-To: <1308556853-3808-1-git-send-email-fdinitto@redhat.com>

On Mon, Jun 20, 2011 at 10:00:53AM +0200, Fabio M. Di Nitto wrote:
> when specifing a multicast address, ttl was set to 0 unless
> ttl was explicitly set in cluster.conf.

I reviewed this; this patch looks correct, based on function and also
this comment / code on lines 360-361:

    /* add the key to the objdb only if value is not default */
    if (ttl != 1) {

... as well as understanding the objdb_get_int() function.

ACK.

Reviewed-by: Lon Hohberger <lhh@redhat.com>

-- Lon



> 
> Resolves: rhbz#713977
> 
> Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
> ---
>  cman/daemon/cman-preconfig.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/cman/daemon/cman-preconfig.c b/cman/daemon/cman-preconfig.c
> index a890fb3..aeedf8b 100644
> --- a/cman/daemon/cman-preconfig.c
> +++ b/cman/daemon/cman-preconfig.c
> @@ -673,7 +673,7 @@ static int get_nodename(struct objdb_iface_ver0 *objdb)
>  			if (objdb->object_find_next(find_handle2, &mcast_handle) == 0) {
>  
>  				objdb_get_string(objdb, mcast_handle, "addr", &mcast_name);
> -				objdb_get_int(objdb, mcast_handle, "ttl", &ttl, 0);
> +				objdb_get_int(objdb, mcast_handle, "ttl", &ttl, ttl);
>  			}
>  			objdb->object_find_destroy(find_handle2);
>  		}
> -- 
> 1.7.4.4
> 
> 

-- 
Lon Hohberger - Red Hat, Inc.



      reply	other threads:[~2011-06-20 13:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-20  8:00 [Cluster-devel] [PATCH] cman: fix ttl default if no value is specified Fabio M. Di Nitto
2011-06-20 13:28 ` Lon Hohberger [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110620132818.GQ10019@redhat.com \
    --to=lhh@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.