From: Liang Li <liang.z.li@intel.com>
To: qemu-devel@nongnu.org
Cc: mst@redhat.com, pbonzini@redhat.com, quintela@redhat.com,
amit.shah@redhat.com, kvm@vger.kernel.org, dgilbert@redhat.com,
thuth@redhat.com, Liang Li <liang.z.li@intel.com>
Subject: [QEMU v2 4/9] virtio-balloon: update linux head file for new feature
Date: Fri, 15 Jul 2016 10:47:24 +0800 [thread overview]
Message-ID: <1468550849-22172-5-git-send-email-liang.z.li@intel.com> (raw)
In-Reply-To: <1468550849-22172-1-git-send-email-liang.z.li@intel.com>
Update the new feature bit definition for the new virt queue and
the request header struct to keep consistent with kernel side.
Signed-off-by: Liang Li <liang.z.li@intel.com>
---
include/standard-headers/linux/virtio_balloon.h | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/include/standard-headers/linux/virtio_balloon.h b/include/standard-headers/linux/virtio_balloon.h
index d577359..797a868 100644
--- a/include/standard-headers/linux/virtio_balloon.h
+++ b/include/standard-headers/linux/virtio_balloon.h
@@ -35,6 +35,7 @@
#define VIRTIO_BALLOON_F_STATS_VQ 1 /* Memory Stats virtqueue */
#define VIRTIO_BALLOON_F_DEFLATE_ON_OOM 2 /* Deflate balloon on OOM */
#define VIRTIO_BALLOON_F_PAGE_BITMAP 3 /* Send page info with bitmap */
+#define VIRTIO_BALLOON_F_MISC_VQ 4 /* Misc info virtqueue */
/* Size of a PFN in the balloon interface. */
#define VIRTIO_BALLOON_PFN_SHIFT 12
@@ -101,4 +102,25 @@ struct balloon_bmap_hdr {
__virtio64 bmap_len;
};
+enum balloon_req_id {
+ /* Get free pages information */
+ BALLOON_GET_FREE_PAGES,
+};
+
+enum balloon_flag {
+ /* Have more data for a request */
+ BALLOON_FLAG_CONT,
+ /* No more data for a request */
+ BALLOON_FLAG_DONE,
+};
+
+struct balloon_req_hdr {
+ /* Used to distinguish different request */
+ __virtio16 cmd;
+ /* Reserved */
+ __virtio16 reserved[3];
+ /* Request parameter */
+ __virtio64 param;
+};
+
#endif /* _LINUX_VIRTIO_BALLOON_H */
--
1.9.1
next prev parent reply other threads:[~2016-07-15 2:55 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-15 2:47 [QEMU v2 0/9] Fast (de)inflating & fast live migration Liang Li
2016-07-15 2:47 ` [QEMU v2 1/9] virtio-balloon: Remove needless precompiled directive Liang Li
2016-08-01 10:42 ` Dr. David Alan Gilbert
2016-08-01 23:48 ` Li, Liang Z
2016-07-15 2:47 ` [QEMU v2 2/9] virtio-balloon: update linux head file Liang Li
2016-07-15 2:47 ` [QEMU v2 3/9] virtio-balloon: speed up inflating & deflating process Liang Li
2016-07-15 2:47 ` Liang Li [this message]
2016-07-15 2:47 ` [QEMU v2 5/9] balloon: get free page info from guest Liang Li
2016-07-15 2:47 ` [QEMU v2 6/9] balloon: migrate vq elem to destination Liang Li
2016-07-15 2:47 ` [QEMU v2 7/9] bitmap: Add a new bitmap_move function Liang Li
2016-08-01 11:25 ` Dr. David Alan Gilbert
2016-07-15 2:47 ` [QEMU v2 8/9] kvm: Add two new arch specific functions Liang Li
2016-07-15 2:47 ` [QEMU v2 9/9] migration: skip free pages during live migration Liang Li
2016-07-21 8:10 ` [QEMU v2 0/9] Fast (de)inflating & fast " Li, Liang Z
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=1468550849-22172-5-git-send-email-liang.z.li@intel.com \
--to=liang.z.li@intel.com \
--cc=amit.shah@redhat.com \
--cc=dgilbert@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=thuth@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).