diff options
Diffstat (limited to 'libglusterfs/src/xlator.h')
| -rw-r--r-- | libglusterfs/src/xlator.h | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/libglusterfs/src/xlator.h b/libglusterfs/src/xlator.h index 2567fc70c48..bb32797c379 100644 --- a/libglusterfs/src/xlator.h +++ b/libglusterfs/src/xlator.h @@ -828,8 +828,11 @@ struct _xlator {  };  typedef struct { -        int32_t (*init) (xlator_t *this); -        void    (*fini) (xlator_t *this); +        int32_t                 (*init) (xlator_t *this); +        void                    (*fini) (xlator_t *this); +        int32_t                 (*reconfigure) (xlator_t *this, +                                                dict_t *options); +        event_notify_fn_t       notify;  } class_methods_t;  #define xlator_has_parent(xl) (xl->parents != NULL)  | 
