summaryrefslogtreecommitdiffstats
path: root/libglusterfs
diff options
context:
space:
mode:
authorKaushal M <kaushal@gluster.com>2011-11-02 11:27:30 +0530
committerVijay Bellur <vijay@gluster.com>2011-11-22 19:46:06 -0800
commit33477a140fb4e891a05dd9261013e83035155350 (patch)
treeae7ec0427517bdf516facd5450a6c398f86e2900 /libglusterfs
parente1de01c3fdde2497cc4a24491b75579624467456 (diff)
fuse: enable kernel read-only mode
Enables kernel read-only mode on mounting with '-oro' and disables the gluster read-only translator from being loaded. As a result, '-oro' is reported correctly in the mount options. Change-Id: If94d97836b13668974cfac61b6e5d52e19880e10 BUG: 3742 Reviewed-on: http://review.gluster.com/655 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Jeff Darcy <jdarcy@redhat.com> Reviewed-by: Csaba Henk <csaba@gluster.com>
Diffstat (limited to 'libglusterfs')
-rw-r--r--libglusterfs/src/graph.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/libglusterfs/src/graph.c b/libglusterfs/src/graph.c
index 7844a547551..830c8836300 100644
--- a/libglusterfs/src/graph.c
+++ b/libglusterfs/src/graph.c
@@ -175,24 +175,6 @@ err:
return -1;
}
-
-int
-glusterfs_graph_readonly (glusterfs_graph_t *graph, glusterfs_ctx_t *ctx)
-{
- int ret = 0;
- cmd_args_t *cmd_args = NULL;
-
- cmd_args = &ctx->cmd_args;
-
- if (!cmd_args->read_only)
- return 0;
-
- ret = glusterfs_graph_insert (graph, ctx, "features/read-only",
- "readonly-autoload");
- return ret;
-}
-
-
int
glusterfs_graph_acl (glusterfs_graph_t *graph, glusterfs_ctx_t *ctx)
{
@@ -453,13 +435,6 @@ glusterfs_graph_prepare (glusterfs_graph_t *graph, glusterfs_ctx_t *ctx)
return -1;
}
- /* XXX: RO VOLUME */
- ret = glusterfs_graph_readonly (graph, ctx);
- if (ret) {
- gf_log ("graph", GF_LOG_ERROR, "glusterfs graph readonly failed");
- return -1;
- }
-
/* XXX: WORM VOLUME */
ret = glusterfs_graph_worm (graph, ctx);
if (ret) {