All of lore.kernel.org
 help / color / mirror / Atom feed
From: adas@sourceware.org <adas@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster gfs/gfs_mkfs/main.c gfs/gfs_mkfs/mkfs_ ...
Date: 17 Oct 2007 20:16:45 -0000	[thread overview]
Message-ID: <20071017201645.21486.qmail@sourceware.org> (raw)

CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL5
Changes by:	adas at sourceware.org	2007-10-17 20:16:44

Modified files:
	gfs/gfs_mkfs   : main.c mkfs_gfs.h 
	gfs2/libgfs2   : libgfs2.h 
	gfs2/mkfs      : main_mkfs.c 

Log message:
	fix bz 311591 - make lock_dlm the default lock protocol in mkfs.gfs and mkfs.gfs2

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_mkfs/main.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.5.2.3&r2=1.5.2.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_mkfs/mkfs_gfs.h.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.4.2.1&r2=1.4.2.2
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/libgfs2/libgfs2.h.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.7.2.12&r2=1.7.2.13
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/mkfs/main_mkfs.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.8.2.8&r2=1.8.2.9

--- cluster/gfs/gfs_mkfs/main.c	2007/07/12 15:49:27	1.5.2.3
+++ cluster/gfs/gfs_mkfs/main.c	2007/10/17 20:16:44	1.5.2.4
@@ -336,6 +336,7 @@
 	comline.jsize = MKFS_DEFAULT_JSIZE;
 	comline.rgsize = MKFS_DEFAULT_RGSIZE;
 	comline.rgsize_specified = FALSE;
+	strcpy(comline.lockproto, MKFS_DEFAULT_LOCKPROTO);
 
 	decode_arguments(argc, argv, &comline);
 
--- cluster/gfs/gfs_mkfs/mkfs_gfs.h	2006/11/29 18:25:50	1.4.2.1
+++ cluster/gfs/gfs_mkfs/mkfs_gfs.h	2007/10/17 20:16:44	1.4.2.2
@@ -157,6 +157,7 @@
 #define MKFS_DEFAULT_SEG_SIZE       (16)
 #define MKFS_DEFAULT_JSIZE          (128)
 #define MKFS_DEFAULT_RGSIZE         (256)
+#define MKFS_DEFAULT_LOCKPROTO      "lock_dlm"
 #define MKFS_EXCESSIVE_RGS          (10000)
 
 /*  device_geometry.c  */
--- cluster/gfs2/libgfs2/libgfs2.h	2007/09/17 17:23:40	1.7.2.12
+++ cluster/gfs2/libgfs2/libgfs2.h	2007/10/17 20:16:44	1.7.2.13
@@ -230,6 +230,7 @@
 #define GFS2_DEFAULT_RGSIZE         (256)
 #define GFS2_DEFAULT_UTSIZE         (1)
 #define GFS2_DEFAULT_QCSIZE         (1)
+#define GFS2_DEFAULT_LOCKPROTO      "lock_dlm"
 #define GFS2_MIN_GROW_SIZE          (10)
 #define GFS2_EXCESSIVE_RGS          (10000)
 
--- cluster/gfs2/mkfs/main_mkfs.c	2007/07/12 15:49:27	1.8.2.8
+++ cluster/gfs2/mkfs/main_mkfs.c	2007/10/17 20:16:44	1.8.2.9
@@ -90,7 +90,6 @@
 
 	memset(sdp->device_name, 0, sizeof(sdp->device_name));
 	sdp->md.journals = 1;
-	strcpy(sdp->lockproto, "lock_nolock");
 
 	while (cont) {
 		optchar = getopt(argc, argv, "-b:c:DhJ:j:Op:qr:t:u:VX");
@@ -374,6 +373,7 @@
 	sdp->rgsize = -1;
 	sdp->utsize = GFS2_DEFAULT_UTSIZE;
 	sdp->qcsize = GFS2_DEFAULT_QCSIZE;
+	strcpy(sdp->lockproto, GFS2_DEFAULT_LOCKPROTO);
 	sdp->time = time(NULL);
 	osi_list_init(&sdp->rglist);
 	osi_list_init(&sdp->buf_list);



             reply	other threads:[~2007-10-17 20:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-17 20:16 adas [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-10-17 20:16 [Cluster-devel] cluster gfs/gfs_mkfs/main.c gfs/gfs_mkfs/mkfs_ adas

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=20071017201645.21486.qmail@sourceware.org \
    --to=adas@sourceware.org \
    /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.