From patchwork Fri Jul 12 13:19:27 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 11042243 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A6CF2138B for ; Fri, 12 Jul 2019 13:19:56 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 972EF28BE4 for ; Fri, 12 Jul 2019 13:19:56 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8B7A728C20; Fri, 12 Jul 2019 13:19:56 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 8112D28BE4 for ; Fri, 12 Jul 2019 13:19:55 +0000 (UTC) Received: from localhost ([::1]:49326 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlvSr-0001VD-3l for patchwork-qemu-devel@patchwork.kernel.org; Fri, 12 Jul 2019 09:19:53 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:51391) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlvSi-0000zh-Dw for qemu-devel@nongnu.org; Fri, 12 Jul 2019 09:19:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlvSh-0001w1-Gk for qemu-devel@nongnu.org; Fri, 12 Jul 2019 09:19:44 -0400 Received: from mail.weilnetz.de ([37.120.169.71]:40766 helo=v2201612906741603.powersrv.de) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hlvSh-0001qL-A2; Fri, 12 Jul 2019 09:19:43 -0400 Received: from localhost (localhost [127.0.0.1]) by v2201612906741603.powersrv.de (Postfix) with ESMTP id 456ACDB8610; Fri, 12 Jul 2019 15:19:39 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at v2201612906741603.powersrv.de Received: from v2201612906741603.powersrv.de ([127.0.0.1]) by localhost (v2201612906741603.powersrv.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n-s2BzO9AzIU; Fri, 12 Jul 2019 15:19:38 +0200 (CEST) Received: from qemu.weilnetz.de (qemu.weilnetz.de [188.68.58.204]) by v2201612906741603.powersrv.de (Postfix) with ESMTP id 9AB3BDB8602; Fri, 12 Jul 2019 15:19:38 +0200 (CEST) Received: by qemu.weilnetz.de (Postfix, from userid 1000) id 93A5946004F; Fri, 12 Jul 2019 15:19:38 +0200 (CEST) From: Stefan Weil To: qemu-devel@nongnu.org Date: Fri, 12 Jul 2019 15:19:27 +0200 Message-Id: <20190712131927.15091-1-sw@weilnetz.de> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 37.120.169.71 Subject: [Qemu-devel] [PATCH] Remove old global variable smp_cpus 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: qemu-trivial@nongnu.org, Stefan Weil , Eduardo Habkost , Like Xu Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Stefan Weil --- include/sysemu/sysemu.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h index 984c439ac9..9b849cb770 100644 --- a/include/sysemu/sysemu.h +++ b/include/sysemu/sysemu.h @@ -103,7 +103,6 @@ extern const char *keyboard_layout; extern int win2k_install_hack; extern int alt_grab; extern int ctrl_grab; -extern int smp_cpus; extern unsigned int max_cpus; extern int cursor_hide; extern int graphic_rotate;