From: Jiang Liu Date: Fri, 7 Dec 2012 20:43:51 +0000 (-0700) Subject: VFIO: fix out of order labels for error recovery in vfio_pci_init() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=05bf3aac930752408bf38a3f070061fc5f1b9c73;p=linux-beck.git VFIO: fix out of order labels for error recovery in vfio_pci_init() The two labels for error recovery in function vfio_pci_init() is out of order, so fix it. Signed-off-by: Jiang Liu Signed-off-by: Alex Williamson --- diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c index b179f5a357f6..306b90cf051f 100644 --- a/drivers/vfio/pci/vfio_pci.c +++ b/drivers/vfio/pci/vfio_pci.c @@ -576,9 +576,9 @@ static int __init vfio_pci_init(void) return 0; -out_virqfd: - vfio_pci_virqfd_exit(); out_driver: + vfio_pci_virqfd_exit(); +out_virqfd: vfio_pci_uninit_perm_bits(); return ret; }