Home
last modified time | relevance | path

Searched refs:msg_size (Results 1 – 4 of 4) sorted by relevance

/fs/ecryptfs/
Dmiscdev.c179 msg_ctx->msg_size = (sizeof(*msg_ctx->msg) + data_size); in ecryptfs_send_miscdev()
278 msg_ctx->msg_size, in ecryptfs_miscdev_read()
288 msg_ctx->msg_size = 0; in ecryptfs_miscdev_read()
291 + msg_ctx->msg_size); in ecryptfs_miscdev_read()
310 if (copy_to_user(&buf[i], msg_ctx->msg, msg_ctx->msg_size)) in ecryptfs_miscdev_read()
312 i += msg_ctx->msg_size; in ecryptfs_miscdev_read()
Dmessaging.c224 size_t msg_size; in ecryptfs_process_response() local
249 msg_size = (sizeof(*msg) + msg->data_len); in ecryptfs_process_response()
250 msg_ctx->msg = kmalloc(msg_size, GFP_KERNEL); in ecryptfs_process_response()
254 "GFP_KERNEL memory\n", __func__, msg_size); in ecryptfs_process_response()
257 memcpy(msg_ctx->msg, msg, msg_size); in ecryptfs_process_response()
Decryptfs_kernel.h394 size_t msg_size; member
/fs/quota/
Dnetlink.c40 int msg_size = 4 * nla_total_size(sizeof(u32)) + in quota_send_warning() local
46 skb = genlmsg_new(msg_size, GFP_NOFS); in quota_send_warning()