diff options
| author | Gluster Ant <bugzilla-bot@gluster.org> | 2018-09-12 17:52:45 +0530 | 
|---|---|---|
| committer | Nigel Babu <nigelb@redhat.com> | 2018-09-12 17:52:45 +0530 | 
| commit | e16868dede6455cab644805af6fe1ac312775e13 (patch) | |
| tree | 15aebdb4fff2d87cf8a72f836816b3aa634da58d /libglusterfs/src/compound-fop-utils.c | |
| parent | 45a71c0548b6fd2c757aa2e7b7671a1411948894 (diff) | |
Land part 2 of clang-format changes
Change-Id: Ia84cc24c8924e6d22d02ac15f611c10e26db99b4
Signed-off-by: Nigel Babu <nigelb@redhat.com>
Diffstat (limited to 'libglusterfs/src/compound-fop-utils.c')
| -rw-r--r-- | libglusterfs/src/compound-fop-utils.c | 164 | 
1 files changed, 82 insertions, 82 deletions
diff --git a/libglusterfs/src/compound-fop-utils.c b/libglusterfs/src/compound-fop-utils.c index 03d7b5ba459..8bdb8e8fd5b 100644 --- a/libglusterfs/src/compound-fop-utils.c +++ b/libglusterfs/src/compound-fop-utils.c @@ -14,125 +14,125 @@  #include "dict.h"  void -compound_args_cleanup (compound_args_t *args) +compound_args_cleanup(compound_args_t *args)  { -        int i; +    int i; -        if (!args) -                return; +    if (!args) +        return; -        if (args->xdata) -                dict_unref (args->xdata); +    if (args->xdata) +        dict_unref(args->xdata); -        if (args->req_list) { -                for (i = 0; i < args->fop_length; i++) { -                        args_wipe (&args->req_list[i]); -                } +    if (args->req_list) { +        for (i = 0; i < args->fop_length; i++) { +            args_wipe(&args->req_list[i]);          } +    } -        GF_FREE (args->enum_list); -        GF_FREE (args->req_list); -        GF_FREE (args); +    GF_FREE(args->enum_list); +    GF_FREE(args->req_list); +    GF_FREE(args);  }  void -compound_args_cbk_cleanup (compound_args_cbk_t *args_cbk) +compound_args_cbk_cleanup(compound_args_cbk_t *args_cbk)  { -        int i; +    int i; -        if (!args_cbk) -                return; +    if (!args_cbk) +        return; -        if (args_cbk->xdata) -                dict_unref (args_cbk->xdata); +    if (args_cbk->xdata) +        dict_unref(args_cbk->xdata); -        if (args_cbk->rsp_list) { -                for (i = 0; i < args_cbk->fop_length; i++) { -                        args_cbk_wipe (&args_cbk->rsp_list[i]); -                } +    if (args_cbk->rsp_list) { +        for (i = 0; i < args_cbk->fop_length; i++) { +            args_cbk_wipe(&args_cbk->rsp_list[i]);          } +    } -        GF_FREE (args_cbk->rsp_list); -        GF_FREE (args_cbk->enum_list); -        GF_FREE (args_cbk); +    GF_FREE(args_cbk->rsp_list); +    GF_FREE(args_cbk->enum_list); +    GF_FREE(args_cbk);  } -compound_args_cbk_t* -compound_args_cbk_alloc (int length, dict_t *xdata) +compound_args_cbk_t * +compound_args_cbk_alloc(int length, dict_t *xdata)  { -        int                 i             = 0; -        compound_args_cbk_t *args_cbk     = NULL; +    int i = 0; +    compound_args_cbk_t *args_cbk = NULL; -        args_cbk = GF_CALLOC (1, sizeof (*args_cbk), gf_mt_compound_rsp_t); -        if (!args_cbk) -                return NULL; +    args_cbk = GF_CALLOC(1, sizeof(*args_cbk), gf_mt_compound_rsp_t); +    if (!args_cbk) +        return NULL; -        args_cbk->fop_length = length; +    args_cbk->fop_length = length; -        args_cbk->rsp_list = GF_CALLOC (length, sizeof (*args_cbk->rsp_list), -                                        gf_mt_default_args_cbk_t); -        if (!args_cbk->rsp_list) -                goto out; +    args_cbk->rsp_list = GF_CALLOC(length, sizeof(*args_cbk->rsp_list), +                                   gf_mt_default_args_cbk_t); +    if (!args_cbk->rsp_list) +        goto out; -        for (i = 0; i < length; i++) { -                args_cbk_init (&args_cbk->rsp_list[i]); -        } +    for (i = 0; i < length; i++) { +        args_cbk_init(&args_cbk->rsp_list[i]); +    } -        args_cbk->enum_list = GF_CALLOC (length, sizeof (*args_cbk->enum_list), -                                        gf_common_mt_int); -        if (!args_cbk->enum_list) -                goto out; +    args_cbk->enum_list = GF_CALLOC(length, sizeof(*args_cbk->enum_list), +                                    gf_common_mt_int); +    if (!args_cbk->enum_list) +        goto out; -        if (xdata) { -                args_cbk->xdata = dict_copy_with_ref (xdata, NULL); -                if (!args_cbk->xdata) -                        goto out; -        } +    if (xdata) { +        args_cbk->xdata = dict_copy_with_ref(xdata, NULL); +        if (!args_cbk->xdata) +            goto out; +    } -        return args_cbk; +    return args_cbk;  out: -        compound_args_cbk_cleanup (args_cbk); -        return NULL; +    compound_args_cbk_cleanup(args_cbk); +    return NULL;  } -compound_args_t* -compound_fop_alloc (int length, glusterfs_compound_fop_t fop, dict_t *xdata) +compound_args_t * +compound_fop_alloc(int length, glusterfs_compound_fop_t fop, dict_t *xdata)  { -        compound_args_t *args     = NULL; +    compound_args_t *args = NULL; -        args = GF_CALLOC (1, sizeof (*args), gf_mt_compound_req_t); +    args = GF_CALLOC(1, sizeof(*args), gf_mt_compound_req_t); -        if (!args) -                return NULL; +    if (!args) +        return NULL; -        /* fop_enum can be used by xlators to see which fops are -         * included as part of compound fop. This will help in checking -         * for compatibility or support without going through the entire -         * fop list packed. -         */ -        args->fop_enum = fop; -        args->fop_length = length; +    /* fop_enum can be used by xlators to see which fops are +     * included as part of compound fop. This will help in checking +     * for compatibility or support without going through the entire +     * fop list packed. +     */ +    args->fop_enum = fop; +    args->fop_length = length; -        args->enum_list = GF_CALLOC (length, sizeof (*args->enum_list), -                                     gf_common_mt_int); +    args->enum_list = GF_CALLOC(length, sizeof(*args->enum_list), +                                gf_common_mt_int); -        if (!args->enum_list) -                goto out; +    if (!args->enum_list) +        goto out; -        args->req_list = GF_CALLOC (length, sizeof (*args->req_list), -                                     gf_mt_default_args_t); +    args->req_list = GF_CALLOC(length, sizeof(*args->req_list), +                               gf_mt_default_args_t); -        if (!args->req_list) -                goto out; +    if (!args->req_list) +        goto out; -        if (xdata) { -                args->xdata = dict_copy_with_ref (xdata, args->xdata); -                if (!args->xdata) -                        goto out; -        } +    if (xdata) { +        args->xdata = dict_copy_with_ref(xdata, args->xdata); +        if (!args->xdata) +            goto out; +    } -        return args; +    return args;  out: -        compound_args_cleanup (args); -        return NULL; +    compound_args_cleanup(args); +    return NULL;  }  | 
