2015-06-10 18:21:21 -07:00
|
|
|
/*
|
2023-02-07 08:51:15 +01:00
|
|
|
* QMP command stubs
|
2015-06-10 18:21:21 -07:00
|
|
|
*
|
|
|
|
* Copyright (c) 2015 David Ahern <dsahern@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 18:17:11 +00:00
|
|
|
#include "qemu/osdep.h"
|
2018-02-01 12:18:31 +01:00
|
|
|
#include "qapi/error.h"
|
2018-02-11 10:36:01 +01:00
|
|
|
#include "qapi/qapi-commands-rocker.h"
|
2015-06-10 18:21:21 -07:00
|
|
|
|
|
|
|
RockerSwitch *qmp_query_rocker(const char *name, Error **errp)
|
|
|
|
{
|
2023-02-07 08:51:15 +01:00
|
|
|
error_setg(errp, "rocker %s not found", name);
|
2015-06-10 18:21:21 -07:00
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
|
|
|
|
RockerPortList *qmp_query_rocker_ports(const char *name, Error **errp)
|
|
|
|
{
|
2023-02-07 08:51:15 +01:00
|
|
|
error_setg(errp, "rocker %s not found", name);
|
2015-06-10 18:21:21 -07:00
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
|
|
|
|
RockerOfDpaFlowList *qmp_query_rocker_of_dpa_flows(const char *name,
|
|
|
|
bool has_tbl_id,
|
|
|
|
uint32_t tbl_id,
|
|
|
|
Error **errp)
|
|
|
|
{
|
2023-02-07 08:51:15 +01:00
|
|
|
error_setg(errp, "rocker %s not found", name);
|
2015-06-10 18:21:21 -07:00
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
|
|
|
|
RockerOfDpaGroupList *qmp_query_rocker_of_dpa_groups(const char *name,
|
|
|
|
bool has_type,
|
|
|
|
uint8_t type,
|
|
|
|
Error **errp)
|
|
|
|
{
|
2023-02-07 08:51:15 +01:00
|
|
|
error_setg(errp, "rocker %s not found", name);
|
2015-06-10 18:21:21 -07:00
|
|
|
return NULL;
|
|
|
|
};
|