diff options
Diffstat (limited to 'xlators')
| -rw-r--r-- | xlators/encryption/rot-13/src/rot-13.c | 4 | ||||
| -rw-r--r-- | xlators/features/quota/src/quota.c | 4 | 
2 files changed, 5 insertions, 3 deletions
diff --git a/xlators/encryption/rot-13/src/rot-13.c b/xlators/encryption/rot-13/src/rot-13.c index a19ef5deadf..a334b669df0 100644 --- a/xlators/encryption/rot-13/src/rot-13.c +++ b/xlators/encryption/rot-13/src/rot-13.c @@ -75,7 +75,7 @@ rot13_readv_cbk (call_frame_t *frame,  	if (priv->decrypt_read)  		rot13_iovec (vector, count); -	STACK_UNWIND (frame, op_ret, op_errno, vector, count, stbuf, iobref); +	STACK_UNWIND_STRICT (readv, frame, op_ret, op_errno, vector, count, stbuf, iobref);  	return 0;  } @@ -103,7 +103,7 @@ rot13_writev_cbk (call_frame_t *frame,                    struct iatt *prebuf,  		  struct iatt *postbuf)  { -	STACK_UNWIND (frame, op_ret, op_errno, prebuf, postbuf); +	STACK_UNWIND_STRICT (writev, frame, op_ret, op_errno, prebuf, postbuf);  	return 0;  } diff --git a/xlators/features/quota/src/quota.c b/xlators/features/quota/src/quota.c index a4266a32a85..6d1d195b8ec 100644 --- a/xlators/features/quota/src/quota.c +++ b/xlators/features/quota/src/quota.c @@ -988,7 +988,9 @@ quota_lookup_cbk (call_frame_t *frame,                      dict_t *dict,                      struct iatt *postparent)  { -	STACK_UNWIND (frame, +	STACK_UNWIND_STRICT ( +                     lookup,  +                     frame,  		      op_ret,  		      op_errno,  		      inode,  | 
