search for: lock_nolock

Displaying 4 results from an estimated 4 matches for "lock_nolock".

2008 Sep 09
2
NFS exporting a GFS mount point
Hello, I have a storage offering some 11 TB of space. I'd happily use ext3 and NFS export to 4 client machines, but 8 TB seems to be the tested maximum. I'd really like one mount point for the whole 11 TB. Since GFS offers lock_nolock option for local mounting, I'm assuming it's not so out of line to NFS export this GFS mount point. Thoughts and inputs appreciated. --Koji
2011 Nov 10
5
[PATCH v2] Add tune2fs command.
The changes since the previous patch: - safe ADD_ARG macro for adding arguments to a fixed size stack array - support for testing functions that return RHashtable, ie. tune2fs-l. - add tests that set (tune2fs) and get (tune2fs-l) various parameters. - only one 'intervalbetweenchecks' parameter (in seconds) Rich.
2010 Mar 24
3
mounting gfs partition hangs
...s [root at node2 ~]# group_tool hangs... [root at node1 ~]# mount -t gfs /dev/home2/home2 /home2 hangs... If I cancel the command I can return to the terminal and I don't see anything in log files. The resource /dev/home2/home2 is accessible by the two nodes and if I try to mount /home2 with lock_nolock there is no problem. cluster.conf is: <?xml version="1.0"?> <cluster alias="gfs-test" config_version="29" name="gfs-test"> <quorumd device="/dev/web/web" interval="1" min_score="1" tko="10" votes...
2009 Nov 09
1
use STREQ(a,b), not strcmp(a,b) == 0
...argv[i++] = "-f"; /* For GFS, GFS2, assume a single node. */ - if (strcmp (fstype, "gfs") == 0 || strcmp (fstype, "gfs2") == 0) { + if (STREQ (fstype, "gfs") || STREQ (fstype, "gfs2")) { argv[i++] = "-p"; argv[i++] = "lock_nolock"; /* The man page says this is default, but it doesn't seem to be: */ diff --git a/daemon/mount.c b/daemon/mount.c index 5a27cea..49a0eab 100644 --- a/daemon/mount.c +++ b/daemon/mount.c @@ -50,7 +50,7 @@ do_mount_vfs (const char *options, const char *vfstype, ABS_PATH (mountpoint...