From patchwork Thu Dec 24 09:15:47 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 41768 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E706BB7BF3 for ; Thu, 24 Dec 2009 20:38:26 +1100 (EST) Received: from localhost ([127.0.0.1]:60346 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NNk9G-00080K-OD for incoming@patchwork.ozlabs.org; Thu, 24 Dec 2009 04:38:22 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NNjnY-00021W-In for qemu-devel@nongnu.org; Thu, 24 Dec 2009 04:15:56 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NNjnU-0001vs-SB for qemu-devel@nongnu.org; Thu, 24 Dec 2009 04:15:56 -0500 Received: from [199.232.76.173] (port=42892 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NNjnU-0001vO-MW for qemu-devel@nongnu.org; Thu, 24 Dec 2009 04:15:52 -0500 Received: from isrv.corpit.ru ([81.13.33.159]:58086) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NNjnU-0001jC-BR for qemu-devel@nongnu.org; Thu, 24 Dec 2009 04:15:52 -0500 Received: from paltus.tls.msk.ru (paltus.tls.msk.ru [192.168.1.1]) by isrv.corpit.ru (Postfix) with ESMTP id E2C03341A9; Thu, 24 Dec 2009 12:15:47 +0300 (MSK) (envelope-from mjt@tls.msk.ru) Received: from gandalf.tls.msk.ru (unknown [192.168.10.88]) by paltus.tls.msk.ru (Postfix) with ESMTP id D064330375; Thu, 24 Dec 2009 12:15:47 +0300 (MSK) (envelope-from mjt@tls.msk.ru) Received: by gandalf.tls.msk.ru (Postfix, from userid 1000) id AB9C612B60; Thu, 24 Dec 2009 12:15:47 +0300 (MSK) From: Michael Tokarev To: qemu-devel@nongnu.org Message-Id: <20091224091547.AB9C612B60@gandalf.tls.msk.ru> Date: Thu, 24 Dec 2009 12:15:47 +0300 (MSK) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: kvm@vger.kernel.org Subject: [Qemu-devel] [trivial patch] Add missing newline at the end of options list X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org In qemu-kvm this place looks even more "interesting": -runas user Change to user id user just before starting the VM. -readconfig -writeconfig read/write config file-no-kvm disable KVM hardware virtualization -no-kvm-irqchip disable KVM kernel mode PIC/IOAPIC/LAPIC -no-kvm-pit disable KVM kernel mode PIT Signed-off-by: Michael Tokarev diff --git a/qemu-options.hx b/qemu-options.hx index b8cc375..ecd50eb 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1936,4 +1936,4 @@ DEF("readconfig", HAS_ARG, QEMU_OPTION_readconfig, "-readconfig \n") DEF("writeconfig", HAS_ARG, QEMU_OPTION_writeconfig, "-writeconfig \n" - " read/write config file") + " read/write config file\n")