linux-aio: Fix laio resource leak
commita1abf40d6be2fc4b40d90ae3b46442f4a671776b
authorGonglei <arei.gonglei@huawei.com>
Sat, 12 Jul 2014 03:43:37 +0000 (12 11:43 +0800)
committerStefan Hajnoczi <stefanha@redhat.com>
Tue, 15 Jul 2014 13:34:13 +0000 (15 15:34 +0200)
tree79e3f7b3c9b0ed4e1d1abeab52a6b4d0f46a3b38
parent7a6d04e73fdd571234e05dcad96895fafb3f22f0
linux-aio: Fix laio resource leak

when hotplug virtio-scsi disks using laio, the aio_nr will
increase in laio_init() by io_setup(), we can see the number by
  # cat /proc/sys/fs/aio-nr
  128
if the aio_nr attach the maxnum, which found from
  # cat /proc/sys/fs/aio-max-nr
  65536
the hotplug process will fail because of aio context leak.

Fix it by io_destroy in laio_cleanup().

Reported-by: daifulai <daifulai@huawei.com>
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
block/linux-aio.c