We added some locking to this function but forgot to drop the lock on
these two error paths.  This bug would lead to an immediate deadlock.
Fixes: c7b3690fb152 ("vmw_balloon: stats rework")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Cc: stable@vger.kernel.org
Reviewed-by: Nadav Amit <namit@vmware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        vmballoon_pop(b);
 
        if (vmballoon_send_start(b, VMW_BALLOON_CAPABILITIES))
-               return;
+               goto unlock;
 
        if ((b->capabilities & VMW_BALLOON_BATCHED_CMDS) != 0) {
                if (vmballoon_init_batching(b)) {
                         * The guest will retry in one second.
                         */
                        vmballoon_send_start(b, 0);
-                       return;
+                       goto unlock;
                }
        } else if ((b->capabilities & VMW_BALLOON_BASIC_CMDS) != 0) {
                vmballoon_deinit_batching(b);
        if (vmballoon_send_guest_id(b))
                pr_err("failed to send guest ID to the host\n");
 
+unlock:
        up_write(&b->conf_sem);
 }