From 5db15096d047f0ec92bd5f1680343ea7acbed4e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Canet?= Date: Thu, 5 Jun 2014 13:45:30 +0200 Subject: qapi: create two block related json modules qapi/block-core.json contains block definitions unrelated to emulation. qapi/block.json is a superset of the previous and contains definitions related to emulation. The purpose of these extractions is to be able to hook qapi/block-core.json generated code on qemu-nbd. Signed-off-by: Benoit Canet Reviewed-by: Eric Blake Signed-off-by: Stefan Hajnoczi --- qapi/block-core.json | 6 ++++++ qapi/block.json | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 qapi/block-core.json create mode 100644 qapi/block.json (limited to 'qapi') diff --git a/qapi/block-core.json b/qapi/block-core.json new file mode 100644 index 0000000..11bd8c2 --- /dev/null +++ b/qapi/block-core.json @@ -0,0 +1,6 @@ +# -*- Mode: Python -*- +# +# QAPI block core definitions (vm unrelated) + +# QAPI common definitions +{ 'include': 'common.json' } diff --git a/qapi/block.json b/qapi/block.json new file mode 100644 index 0000000..e2b882f --- /dev/null +++ b/qapi/block.json @@ -0,0 +1,7 @@ +# -*- Mode: Python -*- +# +# QAPI block definitions (vm related) + +# QAPI block core definitions +{ 'include': 'block-core.json' } + -- cgit v1.1