Symbol: alloc_msg
drivers/misc/vmw_vmci/vmci_queue_pair.c
947
struct vmci_qp_alloc_msg *alloc_msg;
drivers/misc/vmw_vmci/vmci_queue_pair.c
956
msg_size = sizeof(*alloc_msg) +
drivers/misc/vmw_vmci/vmci_queue_pair.c
958
alloc_msg = kmalloc(msg_size, GFP_KERNEL);
drivers/misc/vmw_vmci/vmci_queue_pair.c
959
if (!alloc_msg)
drivers/misc/vmw_vmci/vmci_queue_pair.c
962
alloc_msg->hdr.dst = vmci_make_handle(VMCI_HYPERVISOR_CONTEXT_ID,
drivers/misc/vmw_vmci/vmci_queue_pair.c
964
alloc_msg->hdr.src = VMCI_ANON_SRC_HANDLE;
drivers/misc/vmw_vmci/vmci_queue_pair.c
965
alloc_msg->hdr.payload_size = msg_size - VMCI_DG_HEADERSIZE;
drivers/misc/vmw_vmci/vmci_queue_pair.c
966
alloc_msg->handle = entry->qp.handle;
drivers/misc/vmw_vmci/vmci_queue_pair.c
967
alloc_msg->peer = entry->qp.peer;
drivers/misc/vmw_vmci/vmci_queue_pair.c
968
alloc_msg->flags = entry->qp.flags;
drivers/misc/vmw_vmci/vmci_queue_pair.c
969
alloc_msg->produce_size = entry->qp.produce_size;
drivers/misc/vmw_vmci/vmci_queue_pair.c
970
alloc_msg->consume_size = entry->qp.consume_size;
drivers/misc/vmw_vmci/vmci_queue_pair.c
971
alloc_msg->num_ppns = entry->num_ppns;
drivers/misc/vmw_vmci/vmci_queue_pair.c
973
result = qp_populate_ppn_set((u8 *)alloc_msg + sizeof(*alloc_msg),
drivers/misc/vmw_vmci/vmci_queue_pair.c
976
result = vmci_send_datagram(&alloc_msg->hdr);
drivers/misc/vmw_vmci/vmci_queue_pair.c
978
kfree(alloc_msg);
drivers/net/ethernet/mellanox/mlx5/core/cmd.c
1987
inb = alloc_msg(dev, in_size, gfp);
fs/ceph/mds_client.c
6517
.alloc_msg = mds_alloc_msg,
include/linux/ceph/messenger.h
50
struct ceph_msg * (*alloc_msg) (struct ceph_connection *con,
ipc/msgutil.c
99
msg = alloc_msg(len);
net/ceph/messenger.c
2074
BUG_ON(!con->ops->alloc_msg);
net/ceph/messenger.c
2077
msg = con->ops->alloc_msg(con, hdr, skip);
net/ceph/mon_client.c
1588
.alloc_msg = mon_alloc_msg,
net/ceph/osd_client.c
5909
.alloc_msg = osd_alloc_msg,