search for: vmc_dev

Displaying 2 results from an estimated 2 matches for "vmc_dev".

Did you mean: vm_dev
2008 Dec 14
5
[PATCH] AF_VMCHANNEL address family for guest<->host communication.
...h> +#include <linux/virtio.h> +#include <linux/virtio_config.h> +#include <linux/vmchannel.h> + +static int max_ring_len = 1000; +static int max_packet_len = 1024; + +module_param(max_ring_len, int, 0444); +module_param(max_packet_len, int, 0444); + +static struct vmchannel_dev vmc_dev; + +static int vmchannel_send_skb(struct sk_buff *skb, const __u32 id); +static __u32 vmchannel_find_channel_id(const char *name); + +static struct proto vmchannel_proto = { + .name = "AF_VMCHANNEL", + .owner = THIS_MODULE, + .obj_size = sizeof(struct vmchannel_so...
2008 Dec 14
5
[PATCH] AF_VMCHANNEL address family for guest<->host communication.
...h> +#include <linux/virtio.h> +#include <linux/virtio_config.h> +#include <linux/vmchannel.h> + +static int max_ring_len = 1000; +static int max_packet_len = 1024; + +module_param(max_ring_len, int, 0444); +module_param(max_packet_len, int, 0444); + +static struct vmchannel_dev vmc_dev; + +static int vmchannel_send_skb(struct sk_buff *skb, const __u32 id); +static __u32 vmchannel_find_channel_id(const char *name); + +static struct proto vmchannel_proto = { + .name = "AF_VMCHANNEL", + .owner = THIS_MODULE, + .obj_size = sizeof(struct vmchannel_so...