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:36 -0000 [thread overview]
Message-ID: <20071017201636.21246.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Changes by: adas at sourceware.org 2007-10-17 20:16:35
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&r1=1.9&r2=1.10
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/gfs_mkfs/mkfs_gfs.h.diff?cvsroot=cluster&r1=1.5&r2=1.6
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/libgfs2/libgfs2.h.diff?cvsroot=cluster&r1=1.19&r2=1.20
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/mkfs/main_mkfs.c.diff?cvsroot=cluster&r1=1.17&r2=1.18
--- cluster/gfs/gfs_mkfs/main.c 2007/08/22 08:58:44 1.9
+++ cluster/gfs/gfs_mkfs/main.c 2007/10/17 20:16:35 1.10
@@ -335,6 +335,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 17:25:44 1.5
+++ cluster/gfs/gfs_mkfs/mkfs_gfs.h 2007/10/17 20:16:35 1.6
@@ -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:08:20 1.19
+++ cluster/gfs2/libgfs2/libgfs2.h 2007/10/17 20:16:35 1.20
@@ -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/08/22 08:58:46 1.17
+++ cluster/gfs2/mkfs/main_mkfs.c 2007/10/17 20:16:35 1.18
@@ -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);
next 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=20071017201636.21246.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.