From patchwork Thu Jun 2 14:16:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 843772 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p52EGFhj017889 for ; Thu, 2 Jun 2011 14:16:16 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751130Ab1FBOQN (ORCPT ); Thu, 2 Jun 2011 10:16:13 -0400 Received: from fmmailgate03.web.de ([217.72.192.234]:45081 "EHLO fmmailgate03.web.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750845Ab1FBOQM (ORCPT ); Thu, 2 Jun 2011 10:16:12 -0400 Received: from smtp03.web.de ( [172.20.0.65]) by fmmailgate03.web.de (Postfix) with ESMTP id CD9DF18FA3227; Thu, 2 Jun 2011 16:16:10 +0200 (CEST) Received: from [92.75.140.119] (helo=mchn199C.mchp.siemens.de) by smtp03.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.110 #2) id 1QS8h0-0006Pp-00; Thu, 02 Jun 2011 16:16:10 +0200 Message-ID: <4DE79B29.6030609@web.de> Date: Thu, 02 Jun 2011 16:16:09 +0200 From: Jan Kiszka User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: Avi Kivity , Marcelo Tosatti CC: kvm Subject: [PATCH] KVM: Clarify KVM_ASSIGN_PCI_DEVICE documentation X-Enigmail-Version: 1.1.2 X-Sender: jan.kiszka@web.de X-Provags-ID: V01U2FsdGVkX19UiQh9Y3fLw0kzNZeaKcBkNlNn2ycg91fo3LcP ErXKrlWojsBZ4tc6Nj9ac7HTODK07bCW4ZG6mZiGEXw61IqEEE ZQR4W+aCA= Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Thu, 02 Jun 2011 14:16:16 +0000 (UTC) From: Jan Kiszka Neither host_irq nor the guest_msi struct are used anymore today. Tag the former, drop the latter to avoid confusion. Signed-off-by: Jan Kiszka --- Documentation/virtual/kvm/api.txt | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) -- 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 diff --git a/Documentation/virtual/kvm/api.txt b/Documentation/virtual/kvm/api.txt index 2bd06b0..7adc1ac 100644 --- a/Documentation/virtual/kvm/api.txt +++ b/Documentation/virtual/kvm/api.txt @@ -1143,15 +1143,10 @@ Assigns an IRQ to a passed-through device. struct kvm_assigned_irq { __u32 assigned_dev_id; - __u32 host_irq; + __u32 host_irq; /* ignored (legacy field) */ __u32 guest_irq; __u32 flags; union { - struct { - __u32 addr_lo; - __u32 addr_hi; - __u32 data; - } guest_msi; __u32 reserved[12]; }; };