diff options
Diffstat (limited to 'xlators/encryption/crypt/src/atom.c')
-rw-r--r-- | xlators/encryption/crypt/src/atom.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/encryption/crypt/src/atom.c b/xlators/encryption/crypt/src/atom.c index 9b2d79c8eb4..3fa12207a70 100644 --- a/xlators/encryption/crypt/src/atom.c +++ b/xlators/encryption/crypt/src/atom.c @@ -846,7 +846,7 @@ static struct iovec *get_iovec_hole_full(call_frame_t *frame, return conf->avec + (conf->off_in_head ? 1 : 0); } -static inline struct iovec *get_iovec_hole_tail(call_frame_t *frame, +static struct iovec *get_iovec_hole_tail(call_frame_t *frame, uint32_t count) { struct avec_config *conf = get_hole_conf(frame); @@ -854,7 +854,7 @@ static inline struct iovec *get_iovec_hole_tail(call_frame_t *frame, return conf->avec + (conf->blocks_in_pool - 1); } -static inline struct iovec *get_iovec_data_head(call_frame_t *frame, +static struct iovec *get_iovec_data_head(call_frame_t *frame, uint32_t count) { struct avec_config *conf = get_data_conf(frame); @@ -862,7 +862,7 @@ static inline struct iovec *get_iovec_data_head(call_frame_t *frame, return conf->avec; } -static inline struct iovec *get_iovec_data_full(call_frame_t *frame, +static struct iovec *get_iovec_data_full(call_frame_t *frame, uint32_t count) { struct avec_config *conf = get_data_conf(frame); @@ -870,7 +870,7 @@ static inline struct iovec *get_iovec_data_full(call_frame_t *frame, return conf->avec + (conf->off_in_head ? 1 : 0) + count; } -static inline struct iovec *get_iovec_data_tail(call_frame_t *frame, +static struct iovec *get_iovec_data_tail(call_frame_t *frame, uint32_t count) { struct avec_config *conf = get_data_conf(frame); |