When calling get encryption policy via ioctl, do not display
the hex str of inbuf. This buffer is not used/uninitialized
so no need to display.
Signed-off-by: Christopher Hoffman <choffman@redhat.com>
break;
case FS_IOC_GET_ENCRYPTION_POLICY_EX_RESTRICTED:
case FS_IOC_GET_ENCRYPTION_POLICY_EX: {
- generic_dout(10) << __FILE__ << ":" << __LINE__ << ": in_bufsz=" << in_bufsz << " out_bufsz=" << out_bufsz << " FS_IOC_GET_ENCRYPTION_POLICY_EX buffer:\n" << fscrypt_hex_str(in_buf, in_bufsz) << dendl;
+ generic_dout(10) << __FILE__ << ":" << __LINE__ << ": in_bufsz=" << in_bufsz << " out_bufsz=" << out_bufsz << dendl;
struct fscrypt_get_policy_ex_arg out_arg;
if (out_bufsz < sizeof(out_arg.policy)) {