qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>, qemu-devel@nongnu.org
Cc: amit.shah@redhat.com, kraxel@redhat.com, quintela@redhat.com
Subject: [Qemu-devel] [PATCHv3 01/12] tap: add interface to get device fd
Date: Tue, 2 Mar 2010 20:43:22 +0200	[thread overview]
Message-ID: <dd8e19347cf6abae069d9d4b08938bbe242f7d2b.1267555267.git.mst@redhat.com> (raw)
In-Reply-To: <cover.1267555267.git.mst@redhat.com>

Will be used by vhost to attach/detach to backend.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 net/tap.c |    7 +++++++
 net/tap.h |    2 ++
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/net/tap.c b/net/tap.c
index 7a7320c..fc59fd4 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -269,6 +269,13 @@ static void tap_poll(VLANClientState *nc, bool enable)
     tap_write_poll(s, enable);
 }
 
+int tap_get_fd(VLANClientState *nc)
+{
+    TAPState *s = DO_UPCAST(TAPState, nc, nc);
+    assert(nc->info->type == NET_CLIENT_TYPE_TAP);
+    return s->fd;
+}
+
 /* fd support */
 
 static NetClientInfo net_tap_info = {
diff --git a/net/tap.h b/net/tap.h
index 538a562..a244b28 100644
--- a/net/tap.h
+++ b/net/tap.h
@@ -48,4 +48,6 @@ int tap_probe_vnet_hdr(int fd);
 int tap_probe_has_ufo(int fd);
 void tap_fd_set_offload(int fd, int csum, int tso4, int tso6, int ecn, int ufo);
 
+int tap_get_fd(VLANClientState *vc);
+
 #endif /* QEMU_NET_TAP_H */
-- 
1.7.0.18.g0d53a5

  reply	other threads:[~2010-03-02 18:46 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-02 18:43 [Qemu-devel] [PATCHv3 00/12] vhost-net: upstream integration Michael S. Tsirkin
2010-03-02 18:43 ` Michael S. Tsirkin [this message]
2010-03-02 18:43 ` [Qemu-devel] [PATCHv3 02/12] kvm: add API to set ioeventfd Michael S. Tsirkin
2010-03-02 18:43 ` [Qemu-devel] [PATCHv3 03/12] notifier: event notifier implementation Michael S. Tsirkin
2010-03-02 18:43 ` [Qemu-devel] [PATCHv3 04/12] virtio: add notifier support Michael S. Tsirkin
2010-03-02 18:43 ` [Qemu-devel] [PATCHv3 05/12] virtio: add APIs for queue fields Michael S. Tsirkin
2010-03-02 18:43 ` [Qemu-devel] [PATCHv3 06/12] virtio: add set_status callback Michael S. Tsirkin
2010-03-02 18:43 ` [Qemu-devel] [PATCHv3 07/12] virtio: move typedef to qemu-common Michael S. Tsirkin
2010-03-02 18:43 ` [Qemu-devel] [PATCHv3 08/12] virtio-pci: fill in notifier support Michael S. Tsirkin
2010-03-02 18:44 ` [Qemu-devel] [PATCHv3 09/12] vhost: vhost net support Michael S. Tsirkin
2010-03-02 18:44 ` [Qemu-devel] [PATCHv3 10/12] tap: add vhost/vhostfd options Michael S. Tsirkin
2010-03-02 18:44 ` [Qemu-devel] [PATCHv3 11/12] tap: add API to retrieve vhost net header Michael S. Tsirkin
2010-03-02 18:44 ` [Qemu-devel] [PATCHv3 12/12] virtio-net: vhost net support 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=dd8e19347cf6abae069d9d4b08938bbe242f7d2b.1267555267.git.mst@redhat.com \
    --to=mst@redhat.com \
    --cc=amit.shah@redhat.com \
    --cc=anthony@codemonkey.ws \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).