 2af282ec51
			
		
	
	
		2af282ec51
		
	
	
	
	
		
			
			This adds and parses the --monitor option, so that a QMP monitor can be used in the storage daemon. The monitor offers commands defined in the QAPI schema at storage-daemon/qapi/qapi-schema.json. The --monitor options currently allows to create multiple monitors with the same ID. This part of the interface is considered unstable. We will reject such configurations as soon as we have a design for the monitor subsystem to perform these checks. (In the system emulator, we depend on QemuOpts rejecting duplicate IDs.) Signed-off-by: Kevin Wolf <kwolf@redhat.com> Message-Id: <20200224143008.13362-21-kwolf@redhat.com> Acked-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| util-obj-y = qapi-visit-core.o qapi-dealloc-visitor.o qobject-input-visitor.o
 | |
| util-obj-y += qobject-output-visitor.o qmp-registry.o qmp-dispatch.o
 | |
| util-obj-y += string-input-visitor.o string-output-visitor.o
 | |
| util-obj-y += opts-visitor.o qapi-clone-visitor.o
 | |
| util-obj-y += qmp-event.o
 | |
| util-obj-y += qapi-util.o
 | |
| 
 | |
| QAPI_COMMON_MODULES = audio authz block-core block char common control crypto
 | |
| QAPI_COMMON_MODULES += dump error introspect job machine migration misc
 | |
| QAPI_COMMON_MODULES += net pragma qdev qom rdma rocker run-state sockets tpm
 | |
| QAPI_COMMON_MODULES += trace transaction ui
 | |
| QAPI_TARGET_MODULES = machine-target misc-target
 | |
| QAPI_MODULES = $(QAPI_COMMON_MODULES) $(QAPI_TARGET_MODULES)
 | |
| 
 | |
| util-obj-y += qapi-builtin-types.o
 | |
| util-obj-y += $(QAPI_COMMON_MODULES:%=qapi-types-%.o)
 | |
| util-obj-y += qapi-builtin-visit.o
 | |
| util-obj-y += $(QAPI_COMMON_MODULES:%=qapi-visit-%.o)
 | |
| util-obj-y += qapi-emit-events.o
 | |
| util-obj-y += $(QAPI_COMMON_MODULES:%=qapi-events-%.o)
 | |
| 
 | |
| common-obj-y = $(QAPI_COMMON_MODULES:%=qapi-commands-%.o)
 | |
| 
 | |
| obj-y = qapi-introspect.o
 | |
| obj-y += $(QAPI_TARGET_MODULES:%=qapi-types-%.o)
 | |
| obj-y += qapi-types.o
 | |
| obj-y += $(QAPI_TARGET_MODULES:%=qapi-visit-%.o)
 | |
| obj-y += qapi-visit.o
 | |
| obj-y += $(QAPI_TARGET_MODULES:%=qapi-events-%.o)
 | |
| obj-y += qapi-events.o
 | |
| obj-y += $(QAPI_TARGET_MODULES:%=qapi-commands-%.o)
 | |
| obj-y += qapi-commands.o
 | |
| obj-y += qapi-init-commands.o
 | |
| 
 | |
| QAPI_MODULES_STORAGE_DAEMON = block-core char common control crypto
 | |
| QAPI_MODULES_STORAGE_DAEMON += introspect job qom sockets pragma transaction
 | |
| 
 | |
| storage-daemon-obj-y += $(QAPI_MODULES_STORAGE_DAEMON:%=qapi-commands-%.o)
 |