From: Stefan Berger <stefanb@linux.vnet.ibm.com>
To: stefanb@linux.vnet.ibm.com, qemu-devel@nongnu.org, anthony@codemonkey.ws
Cc: jschopp@linux.vnet.ibm.com, coreyb@linux.vnet.ibm.com,
mdroth@linux.vnet.ibm.com, mst@redhat.com
Subject: [Qemu-devel] [PATCH v4 0/9] Subject: Implement and test ASN.1 BER visitors
Date: Thu, 21 Mar 2013 14:29:22 -0400 [thread overview]
Message-ID: <1363890571-15146-1-git-send-email-stefanb@linux.vnet.ibm.com> (raw)
This patch series implements ASN.1 BER visitors for encoding and decoding
of data into byte streams.
Stefan Berger (9):
Move some contents of savevm.c to qemu-file.c
3 new file wrappers
QEMUSizedBuffer
QAPI: add type_sized_buffer
ASN.1 output visitor
ASN.1 input visitor
Extend test-visitor-serialization with ASN.1 visitor(s)
Update MAINTAINERS
ASN.1 specific test cases
MAINTAINERS | 8 +
configure | 2 +-
include/migration/qemu-file.h | 22 +
include/qapi/ber-input-visitor.h | 30 +
include/qapi/ber-output-visitor.h | 28 +
include/qapi/ber.h | 107 ++++
include/qapi/visitor-impl.h | 3 +
include/qapi/visitor.h | 3 +
include/qemu-common.h | 14 +
qapi/Makefile.objs | 1 +
qapi/ber-common.c | 86 +++
qapi/ber-common.h | 29 +
qapi/ber-input-visitor.c | 1141 +++++++++++++++++++++++++++++++++
qapi/ber-output-visitor.c | 673 ++++++++++++++++++++
qapi/qapi-visit-core.c | 8 +
savevm.c | 690 --------------------
tests/Makefile | 11 +-
tests/test-ber-visitor.c | 746 ++++++++++++++++++++++
tests/test-visitor-serialization.c | 73 +++
util/Makefile.objs | 1 +
util/qemu-file.c | 1214 ++++++++++++++++++++++++++++++++++++
21 files changed, 4198 insertions(+), 692 deletions(-)
create mode 100644 include/qapi/ber-input-visitor.h
create mode 100644 include/qapi/ber-output-visitor.h
create mode 100644 include/qapi/ber.h
create mode 100644 qapi/ber-common.c
create mode 100644 qapi/ber-common.h
create mode 100644 qapi/ber-input-visitor.c
create mode 100644 qapi/ber-output-visitor.c
create mode 100644 tests/test-ber-visitor.c
create mode 100644 util/qemu-file.c
--
1.7.11.7
next reply other threads:[~2013-03-21 18:30 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-21 18:29 Stefan Berger [this message]
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 1/9] Move some contents of savevm.c to qemu-file.c Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 2/9] 3 new file wrappers Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 3/9] QEMUSizedBuffer Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 4/9] QAPI: add type_sized_buffer Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 5/9] ASN.1 output visitor Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 6/9] ASN.1 input visitor Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 7/9] Extend test-visitor-serialization with ASN.1 visitor(s) Stefan Berger
2013-03-21 21:59 ` Eric Blake
2013-03-21 22:06 ` Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 8/9] Update MAINTAINERS Stefan Berger
2013-03-21 18:29 ` [Qemu-devel] [PATCH v4 9/9] ASN.1 specific test cases Stefan Berger
2013-03-21 22:05 ` Eric Blake
2013-03-22 17:07 ` Stefan Berger
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=1363890571-15146-1-git-send-email-stefanb@linux.vnet.ibm.com \
--to=stefanb@linux.vnet.ibm.com \
--cc=anthony@codemonkey.ws \
--cc=coreyb@linux.vnet.ibm.com \
--cc=jschopp@linux.vnet.ibm.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).