All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Paul Brook <paul@codesourcery.com>, Avi Kivity <avi@redhat.com>,
	qemu-devel@nongnu.org, Carsten Otte <cotte@de.ibm.com>,
	kvm@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>,
	vi
Subject: [PATCHv5 13/13] qemu: add pci_get/set_byte
Date: Thu, 18 Jun 2009 16:15:51 +0300	[thread overview]
Message-ID: <20090618131551.GN19092@redhat.com> (raw)
In-Reply-To: <cover.1245330293.git.mst@redhat.com>

Add pci_get/set_byte to keep *_word and *_long access functions company.
They are unused for now.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/pci.h |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/hw/pci.h b/hw/pci.h
index 67e4b4d..303179d 100644
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -258,6 +258,18 @@ PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did,
                         pci_map_irq_fn map_irq, const char *name);
 
 static inline void
+pci_set_byte(uint8_t *config, uint8_t val)
+{
+    *config = val;
+}
+
+static inline uint8_t
+pci_get_byte(uint8_t *config)
+{
+    return *config;
+}
+
+static inline void
 pci_set_word(uint8_t *config, uint16_t val)
 {
     cpu_to_le16wu((uint16_t *)config, val);
-- 
1.6.2.2

WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Paul Brook <paul@codesourcery.com>, Avi Kivity <avi@redhat.com>,
	qemu-devel@nongnu.org, Carsten Otte <cotte@de.ibm.com>,
	kvm@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>,
	virtualization@lists.linux-foundation.org,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	Blue Swirl <blauwirbel@gmail.com>,
	Anthony Liguori <anthony@codemonkey.ws>,
	Glauber Costa <glommer@redhat.com>
Subject: [Qemu-devel] [PATCHv5 13/13] qemu: add pci_get/set_byte
Date: Thu, 18 Jun 2009 16:15:51 +0300	[thread overview]
Message-ID: <20090618131551.GN19092@redhat.com> (raw)
In-Reply-To: <cover.1245330293.git.mst@redhat.com>

Add pci_get/set_byte to keep *_word and *_long access functions company.
They are unused for now.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/pci.h |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/hw/pci.h b/hw/pci.h
index 67e4b4d..303179d 100644
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -258,6 +258,18 @@ PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did,
                         pci_map_irq_fn map_irq, const char *name);
 
 static inline void
+pci_set_byte(uint8_t *config, uint8_t val)
+{
+    *config = val;
+}
+
+static inline uint8_t
+pci_get_byte(uint8_t *config)
+{
+    return *config;
+}
+
+static inline void
 pci_set_word(uint8_t *config, uint16_t val)
 {
     cpu_to_le16wu((uint16_t *)config, val);
-- 
1.6.2.2

  parent reply	other threads:[~2009-06-18 13:18 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1245330293.git.mst@redhat.com>
2009-06-18 13:12 ` [PATCHv5 01/13] qemu: make default_write_config use mask table Michael S. Tsirkin
2009-06-18 13:12 ` Michael S. Tsirkin
2009-06-18 13:12   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:13 ` [PATCHv5 02/13] qemu: capability bits in pci save/restore Michael S. Tsirkin
2009-06-18 13:13 ` Michael S. Tsirkin
2009-06-18 13:13   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:13 ` [PATCHv5 03/13] qemu: add routines to manage PCI capabilities Michael S. Tsirkin
2009-06-18 13:13   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:13 ` Michael S. Tsirkin
2009-06-18 13:13 ` [PATCHv5 04/13] qemu: helper routines for pci access Michael S. Tsirkin
2009-06-18 13:13   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:13 ` Michael S. Tsirkin
2009-06-18 13:13 ` [PATCHv5 05/13] qemu: MSI-X support functions Michael S. Tsirkin
2009-06-18 13:13 ` Michael S. Tsirkin
2009-06-18 13:13   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:14 ` [PATCHv5 06/13] qemu: add flag to disable MSI-X by default Michael S. Tsirkin
2009-06-18 13:14 ` Michael S. Tsirkin
2009-06-18 13:14   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:14 ` [PATCHv5 07/13] qemu: minimal MSI/MSI-X implementation for PC Michael S. Tsirkin
2009-06-18 13:14 ` Michael S. Tsirkin
2009-06-18 13:14   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:14 ` [PATCHv5 08/13] qemu: add support for resizing regions Michael S. Tsirkin
2009-06-18 13:14 ` Michael S. Tsirkin
2009-06-18 13:14   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 16:32   ` Paul Brook
2009-06-18 16:32   ` Paul Brook
2009-06-18 16:32     ` Paul Brook
2009-06-18 16:44     ` Michael S. Tsirkin
2009-06-18 16:44     ` Michael S. Tsirkin
2009-06-18 16:44       ` Michael S. Tsirkin
2009-06-18 13:14 ` [PATCHv5 09/13] qemu: virtio support for many interrupt vectors Michael S. Tsirkin
2009-06-18 13:14 ` Michael S. Tsirkin
2009-06-18 13:14   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:15 ` [PATCHv5 10/13] qemu: MSI-X support in virtio PCI Michael S. Tsirkin
2009-06-18 13:15   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:15 ` Michael S. Tsirkin
2009-06-18 13:15 ` [PATCHv5 11/13] qemu: request 3 vectors in virtio-net Michael S. Tsirkin
2009-06-18 13:15 ` Michael S. Tsirkin
2009-06-18 13:15   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:15 ` [PATCHv5 12/13] qemu: virtio save/load bindings Michael S. Tsirkin
2009-06-18 13:15 ` Michael S. Tsirkin
2009-06-18 13:15   ` [Qemu-devel] " Michael S. Tsirkin
2009-06-18 13:15 ` [PATCHv5 13/13] qemu: add pci_get/set_byte Michael S. Tsirkin
2009-06-18 13:15 ` Michael S. Tsirkin [this message]
2009-06-18 13:15   ` [Qemu-devel] " Michael S. Tsirkin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090618131551.GN19092@redhat.com \
    --to=mst@redhat.com \
    --cc=avi@redhat.com \
    --cc=cotte@de.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=paul@codesourcery.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rusty@rustcorp.com.au \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.