Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C1B3BC433EF for ; Mon, 29 Nov 2021 03:45:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1376899AbhK2Dsw (ORCPT ); Sun, 28 Nov 2021 22:48:52 -0500 Received: from szxga02-in.huawei.com ([45.249.212.188]:27308 "EHLO szxga02-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1376900AbhK2Dqu (ORCPT ); Sun, 28 Nov 2021 22:46:50 -0500 Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.53]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4J2WR20spjzbj8L; Mon, 29 Nov 2021 11:43:26 +0800 (CST) Received: from dggpeml100016.china.huawei.com (7.185.36.216) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Mon, 29 Nov 2021 11:43:31 +0800 Received: from DESKTOP-27KDQMV.china.huawei.com (10.174.148.223) by dggpeml100016.china.huawei.com (7.185.36.216) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Mon, 29 Nov 2021 11:43:31 +0800 From: "Longpeng(Mike)" To: CC: , , , , Longpeng Subject: [PATCH] kvm/eventfd: fix the misleading comment in kvm_irqfd_assign Date: Mon, 29 Nov 2021 11:43:28 +0800 Message-ID: <20211129034328.1604-1-longpeng2@huawei.com> X-Mailer: git-send-email 2.25.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.174.148.223] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To dggpeml100016.china.huawei.com (7.185.36.216) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Longpeng The comment above the invocation of vfs_poll() is misleading, move it to the right place. Fixes: 684a0b719ddb ("KVM: eventfd: Fix lock order inversion") Signed-off-by: Longpeng --- virt/kvm/eventfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c index 2ad013b..cd01814 100644 --- a/virt/kvm/eventfd.c +++ b/virt/kvm/eventfd.c @@ -406,12 +406,12 @@ bool __attribute__((weak)) kvm_arch_irqfd_route_changed( spin_unlock_irq(&kvm->irqfds.lock); + events = vfs_poll(f.file, &irqfd->pt); + /* * Check if there was an event already pending on the eventfd * before we registered, and trigger it as if we didn't miss it. */ - events = vfs_poll(f.file, &irqfd->pt); - if (events & EPOLLIN) schedule_work(&irqfd->inject); -- 1.8.3.1