From patchwork Wed Oct 3 10:53:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcelo Tosatti X-Patchwork-Id: 1540901 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 6DDC6DFF71 for ; Wed, 3 Oct 2012 10:55:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755977Ab2JCKzk (ORCPT ); Wed, 3 Oct 2012 06:55:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:22355 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755945Ab2JCKzj (ORCPT ); Wed, 3 Oct 2012 06:55:39 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q93Ataiu013469 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 3 Oct 2012 06:55:36 -0400 Received: from amt.cnet (vpn1-7-147.gru2.redhat.com [10.97.7.147]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q93AtZjZ014497; Wed, 3 Oct 2012 06:55:36 -0400 Received: from amt.cnet (amt.cnet [127.0.0.1]) by amt.cnet (Postfix) with ESMTP id C56D0652036; Wed, 3 Oct 2012 07:55:27 -0300 (BRT) Received: (from marcelo@localhost) by amt.cnet (8.14.5/8.14.5/Submit) id q93AtRHI027463; Wed, 3 Oct 2012 07:55:27 -0300 Message-Id: <20121003105509.683789100@amt.cnet> User-Agent: quilt/0.48-1 Date: Wed, 03 Oct 2012 07:53:01 -0300 From: Marcelo Tosatti To: qemu-devel@nongnu.org, Gerd Hoffmann Cc: kvm@vger.kernel.org, Anthony Liguori , Marcelo Tosatti Subject: [patch 6/6] Emulate qemu-kvms -tdf option References: <20121003105255.972669952@amt.cnet> Content-Disposition: inline; filename=qemukvm-commandline-opt-tdf X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Commit d527b774878defc27f317cdde19b5c54fd0d5666 from qemu-kvm.git. From: Jan Kiszka Add a warning that there is no effect anymore. Signed-off-by: Marcelo Tosatti Reviewed-by: Anthony Liguori --- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: qemu-compat-kvm/vl.c =================================================================== --- qemu-compat-kvm.orig/vl.c +++ qemu-compat-kvm/vl.c @@ -3169,6 +3169,10 @@ int main(int argc, char **argv, char **e case QEMU_OPTION_semihosting: semihosting_enabled = 1; break; + case QEMU_OPTION_tdf: + fprintf(stderr, "Warning: user space PIT time drift fix " + "is no longer supported.\n"); + break; case QEMU_OPTION_name: qemu_name = g_strdup(optarg); { Index: qemu-compat-kvm/qemu-options.hx =================================================================== --- qemu-compat-kvm.orig/qemu-options.hx +++ qemu-compat-kvm/qemu-options.hx @@ -2849,6 +2849,10 @@ DEF("no-kvm-pit-reinjection", 0, QEMU_OP " disable KVM kernel mode PIT interrupt reinjection\n", QEMU_ARCH_I386) +DEF("tdf", 0, QEMU_OPTION_tdf, + "-tdf time drift fix (deprecated)\n", + QEMU_ARCH_ALL) + HXCOMM This is the last statement. Insert new options before this line! STEXI @end table