浏览代码

KVM: do not store wqh in irqfd

wqh is unused, so we do not need to store it in irqfd anymore

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Michael S. Tsirkin 15 年之前
父节点
当前提交
8b97fb0fcb
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      virt/kvm/eventfd.c

+ 0 - 3
virt/kvm/eventfd.c

@@ -47,7 +47,6 @@ struct _irqfd {
 	int                       gsi;
 	int                       gsi;
 	struct list_head          list;
 	struct list_head          list;
 	poll_table                pt;
 	poll_table                pt;
-	wait_queue_head_t        *wqh;
 	wait_queue_t              wait;
 	wait_queue_t              wait;
 	struct work_struct        inject;
 	struct work_struct        inject;
 	struct work_struct        shutdown;
 	struct work_struct        shutdown;
@@ -159,8 +158,6 @@ irqfd_ptable_queue_proc(struct file *file, wait_queue_head_t *wqh,
 			poll_table *pt)
 			poll_table *pt)
 {
 {
 	struct _irqfd *irqfd = container_of(pt, struct _irqfd, pt);
 	struct _irqfd *irqfd = container_of(pt, struct _irqfd, pt);
-
-	irqfd->wqh = wqh;
 	add_wait_queue(wqh, &irqfd->wait);
 	add_wait_queue(wqh, &irqfd->wait);
 }
 }