1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include "qemu/osdep.h"
18#include "qapi/error.h"
19#include "qapi/qapi-commands-rocker.h"
20
21RockerSwitch *qmp_query_rocker(const char *name, Error **errp)
22{
23 error_setg(errp, "rocker %s not found", name);
24 return NULL;
25};
26
27RockerPortList *qmp_query_rocker_ports(const char *name, Error **errp)
28{
29 error_setg(errp, "rocker %s not found", name);
30 return NULL;
31};
32
33RockerOfDpaFlowList *qmp_query_rocker_of_dpa_flows(const char *name,
34 bool has_tbl_id,
35 uint32_t tbl_id,
36 Error **errp)
37{
38 error_setg(errp, "rocker %s not found", name);
39 return NULL;
40};
41
42RockerOfDpaGroupList *qmp_query_rocker_of_dpa_groups(const char *name,
43 bool has_type,
44 uint8_t type,
45 Error **errp)
46{
47 error_setg(errp, "rocker %s not found", name);
48 return NULL;
49};
50