diff options
Diffstat (limited to 'libglusterfs/src/graph.c')
-rw-r--r-- | libglusterfs/src/graph.c | 25 |
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) { |