diff options
author | Wenchao Xia <wenchaoqemu@gmail.com> | 2014-06-18 08:43:48 +0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-06-23 11:12:28 -0400 |
commit | 061502790328ac8d09d39b2b580121dc2ac3f19f (patch) | |
tree | 4c348d827fab7361afcdcd0f4e396389978bf82b /qapi-event.json | |
parent | bcada37b19e79329c47a956c4c2dd5c81727e8c8 (diff) |
qapi event: convert NIC_RX_FILTER_CHANGED
Param name is declared as optional, since in code it is an optional
one.
Signed-off-by: Wenchao Xia <wenchaoqemu@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi-event.json')
-rw-r--r-- | qapi-event.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qapi-event.json b/qapi-event.json index c880d77291..b8dec4771b 100644 --- a/qapi-event.json +++ b/qapi-event.json @@ -122,3 +122,18 @@ ## { 'event': 'DEVICE_DELETED', 'data': { '*device': 'str', 'path': 'str' } } + +## +# @NIC_RX_FILTER_CHANGED +# +# Emitted once until the 'query-rx-filter' command is executed, the first event +# will always be emitted +# +# @name: #optional, net client name +# +# @path: device path +# +# Since: 1.6 +## +{ 'event': 'NIC_RX_FILTER_CHANGED', + 'data': { '*name': 'str', 'path': 'str' } } |