From nobody Sun May 19 11:06:51 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org ARC-Seal: i=1; a=rsa-sha256; t=1595214877; cv=none; d=zohomail.com; s=zohoarc; b=dd1AHzorFPJp6jT8EyIUxNnyIIbVHRj8deqb7GRzjve2zGXH0QB9HuY77CGzMQ5bx4coLPS+eqqiqp72Z3Y8Bv6vkdCYMVtc7yVs0Li3TQthrrewqeK39z2QPaZHHQJwI0z3OoUqC+EywWb9WaJtd9k6JsLiTJx21/0jFvJz2pc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1595214877; h=Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:Message-ID:Sender:Subject:To; bh=TodzVt31e7kD/RN2uuVe37Ur6gWQpcfV0BjxIJGC4NQ=; b=TG82HgAFx43n0yJR4GCWgR5spqKyLjdc+0/TWqlfH6FQk1BmYrI1HDuhjQRKTeptJeHq6429ktbQnRkVP7zJn7EwuBHUz02lUhV/eLtijAS2GTvnSkuQllsM+Y4zcgBGDsIsSjZIPd7vzeMPvmP5LBR9QTQBBjoO3tpgE2T8d4U= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 159521487783636.02477971123267; Sun, 19 Jul 2020 20:14:37 -0700 (PDT) Received: from localhost ([::1]:50976 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jxMGB-0001Md-Sx for importer@patchew.org; Sun, 19 Jul 2020 23:14:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47348) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jxMEs-0000t1-8j for qemu-devel@nongnu.org; Sun, 19 Jul 2020 23:13:14 -0400 Received: from 113x36x239x145.ap113.ftth.ucom.ne.jp ([113.36.239.145]:63011 helo=anigera-ubuntu) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jxMEq-0005LP-C8 for qemu-devel@nongnu.org; Sun, 19 Jul 2020 23:13:14 -0400 Received: from anigera-ubuntu (localhost [127.0.0.1]) by anigera-ubuntu (8.15.2/8.15.2/Debian-10) with ESMTP id 06HCaYQI015502; Fri, 17 Jul 2020 21:36:34 +0900 Received: (from up@localhost) by anigera-ubuntu (8.15.2/8.15.2/Submit) id 06HCaTWm015453; Fri, 17 Jul 2020 21:36:29 +0900 From: Kenta Ishiguro To: qemu-devel@nongnu.org Subject: [PATCH] hw/i386/kvm/ioapic.c: fix typo in error message Date: Fri, 17 Jul 2020 21:35:14 +0900 Message-Id: <20200717123514.15406-1-kentaishiguro@slowstart.org> X-Mailer: git-send-email 2.17.1 Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: none client-ip=113.36.239.145; envelope-from=up@anigera-ubuntu; helo=anigera-ubuntu X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/19 23:13:08 X-ACL-Warn: Detected OS = Windows NT kernel [generic] [fuzzy] X-Spam_score_int: 21 X-Spam_score: 2.1 X-Spam_bar: ++ X-Spam_report: (2.1 / 5.0 requ) BAYES_00=-1.9, FSL_HELO_NON_FQDN_1=0.001, HEADER_FROM_DIFFERENT_DOMAINS=1, HELO_NO_DOMAIN=1, KHOP_HELO_FCRDNS=1, RDNS_DYNAMIC=0.982, SPF_NONE=0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kenta Ishiguro Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Fix a typo in an error message for KVM_SET_IRQCHIP ioctl: "KVM_GET_IRQCHIP" should be "KVM_SET_IRQCHIP". Signed-off-by: Kenta Ishiguro Reviewed-by: Li Qiang Reviewed-by: Philippe Mathieu-Daud=C3=A9 Reviewed-by: Stefano Garzarella --- hw/i386/kvm/ioapic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/i386/kvm/ioapic.c b/hw/i386/kvm/ioapic.c index 4ba8e47251..c5528df942 100644 --- a/hw/i386/kvm/ioapic.c +++ b/hw/i386/kvm/ioapic.c @@ -97,7 +97,7 @@ static void kvm_ioapic_put(IOAPICCommonState *s) =20 ret =3D kvm_vm_ioctl(kvm_state, KVM_SET_IRQCHIP, &chip); if (ret < 0) { - fprintf(stderr, "KVM_GET_IRQCHIP failed: %s\n", strerror(ret)); + fprintf(stderr, "KVM_SET_IRQCHIP failed: %s\n", strerror(ret)); abort(); } } --=20 2.17.1