diff options
Diffstat (limited to 'xlators/features/thin-arbiter/src')
| -rw-r--r-- | xlators/features/thin-arbiter/src/thin-arbiter-mem-types.h | 6 | ||||
| -rw-r--r-- | xlators/features/thin-arbiter/src/thin-arbiter-messages.h | 4 | ||||
| -rw-r--r-- | xlators/features/thin-arbiter/src/thin-arbiter.h | 54 | 
3 files changed, 29 insertions, 35 deletions
diff --git a/xlators/features/thin-arbiter/src/thin-arbiter-mem-types.h b/xlators/features/thin-arbiter/src/thin-arbiter-mem-types.h index d7288192d32..79b5ce0eee3 100644 --- a/xlators/features/thin-arbiter/src/thin-arbiter-mem-types.h +++ b/xlators/features/thin-arbiter/src/thin-arbiter-mem-types.h @@ -12,8 +12,8 @@  #include "mem-types.h"  typedef enum gf_ta_mem_types_ { -        gf_ta_mt_local_t =  gf_common_mt_end + 1, -        gf_ta_mt_char, -        gf_ta_mt_end +    gf_ta_mt_local_t = gf_common_mt_end + 1, +    gf_ta_mt_char, +    gf_ta_mt_end  } gf_ta_mem_types_t;  #endif diff --git a/xlators/features/thin-arbiter/src/thin-arbiter-messages.h b/xlators/features/thin-arbiter/src/thin-arbiter-messages.h index 524e4d3aef8..f49b3eedadf 100644 --- a/xlators/features/thin-arbiter/src/thin-arbiter-messages.h +++ b/xlators/features/thin-arbiter/src/thin-arbiter-messages.h @@ -23,8 +23,6 @@   * glfs-message-id.h.   */ -GLFS_MSGID(TA, -        TA_MSG_INVALID_FOP -); +GLFS_MSGID(TA, TA_MSG_INVALID_FOP);  #endif /* !_TA_MESSAGES_H_ */ diff --git a/xlators/features/thin-arbiter/src/thin-arbiter.h b/xlators/features/thin-arbiter/src/thin-arbiter.h index 996f4441fdd..af3d4b1af92 100644 --- a/xlators/features/thin-arbiter/src/thin-arbiter.h +++ b/xlators/features/thin-arbiter/src/thin-arbiter.h @@ -21,43 +21,39 @@  #define THIN_ARBITER_SOURCE_XATTR "trusted.ta.source"  #define THIN_ARBITER_SOURCE_SIZE 2 -#define TA_FAILED_FOP(fop, frame, op_errno)           \ -    do {                                              \ -        default_##fop##_failure_cbk(frame, op_errno); \ +#define TA_FAILED_FOP(fop, frame, op_errno)                                    \ +    do {                                                                       \ +        default_##fop##_failure_cbk(frame, op_errno);                          \      } while (0) -#define TA_STACK_UNWIND(fop, frame, op_ret, op_errno, params ...)\ -    do {                                                        \ -        ta_fop_t    *__local    = NULL;                         \ -        int32_t     __op_ret   = 0;                             \ -        int32_t     __op_errno = 0;                             \ -                                                                \ -        __local = frame->local;                                 \ -        __op_ret = op_ret;                                      \ -        __op_errno = op_errno;                                  \ -        if (__local) {                                          \ -                ta_release_fop (__local);                       \ -                frame->local = NULL;                            \ -        }                                                       \ -        STACK_UNWIND_STRICT (fop, frame, __op_ret,              \ -                            __op_errno, params);                \ -                                                                \ +#define TA_STACK_UNWIND(fop, frame, op_ret, op_errno, params...)               \ +    do {                                                                       \ +        ta_fop_t *__local = NULL;                                              \ +        int32_t __op_ret = 0;                                                  \ +        int32_t __op_errno = 0;                                                \ +                                                                               \ +        __local = frame->local;                                                \ +        __op_ret = op_ret;                                                     \ +        __op_errno = op_errno;                                                 \ +        if (__local) {                                                         \ +            ta_release_fop(__local);                                           \ +            frame->local = NULL;                                               \ +        }                                                                      \ +        STACK_UNWIND_STRICT(fop, frame, __op_ret, __op_errno, params);         \ +                                                                               \      } while (0)  struct _ta_fop;  typedef struct _ta_fop ta_fop_t;  struct _ta_fop { -    gf_xattrop_flags_t  xattrop_flags; -    loc_t               loc; -    fd_t                *fd; -    dict_t              *dict; -    dict_t              *brick_xattr; -    int32_t             on_disk[2]; -    int32_t             idx; +    gf_xattrop_flags_t xattrop_flags; +    loc_t loc; +    fd_t *fd; +    dict_t *dict; +    dict_t *brick_xattr; +    int32_t on_disk[2]; +    int32_t idx;  }; - - -  #endif /* _THIN_ARBITER_H */  | 
