search for: bp_list

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

Did you mean: qp_list
2008 Jan 08
1
[PATCH] kvm guest balloon driver
...truct virtballoon { + struct virtio_device *dev; + struct virtqueue *vq; + struct task_struct *balloon_thread; + wait_queue_head_t balloon_wait; + wait_queue_head_t rmmod_wait; + uint32_t target_nrpages; + atomic_t inflight_bufs; +}; + +struct balloon_page { + struct page *bpage; + struct list_head bp_list; +}; + +struct virtballoon virtballoon; + +struct balloon_buf *alloc_balloon_buf(void) +{ + struct balloon_buf *buf; + + buf = kzalloc(sizeof(struct balloon_buf), GFP_KERNEL); + if (!buf) + printk(KERN_ERR "%s: allocation failed\n", __func__); + + return buf; +} + +static int send_balloo...
2008 Jan 08
1
[PATCH] kvm guest balloon driver
...truct virtballoon { + struct virtio_device *dev; + struct virtqueue *vq; + struct task_struct *balloon_thread; + wait_queue_head_t balloon_wait; + wait_queue_head_t rmmod_wait; + uint32_t target_nrpages; + atomic_t inflight_bufs; +}; + +struct balloon_page { + struct page *bpage; + struct list_head bp_list; +}; + +struct virtballoon virtballoon; + +struct balloon_buf *alloc_balloon_buf(void) +{ + struct balloon_buf *buf; + + buf = kzalloc(sizeof(struct balloon_buf), GFP_KERNEL); + if (!buf) + printk(KERN_ERR "%s: allocation failed\n", __func__); + + return buf; +} + +static int send_balloo...