From 2c504f89c662629be5548d26d65e09e35726927e Mon Sep 17 00:00:00 2001 From: Jakub Grajciar Date: Thu, 26 Sep 2019 10:34:41 +0200 Subject: devices: virtio API cleanup Use consistent API types. Type: fix Signed-off-by: Jakub Grajciar Change-Id: I38a409af770c88c1eb2c68b24abef2a5a91e1b9a --- src/vnet/pci/pci_types_api.c | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/vnet/pci/pci_types_api.c (limited to 'src/vnet/pci/pci_types_api.c') diff --git a/src/vnet/pci/pci_types_api.c b/src/vnet/pci/pci_types_api.c new file mode 100644 index 00000000000..5d1abec5af8 --- /dev/null +++ b/src/vnet/pci/pci_types_api.c @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2019 Cisco and/or its affiliates. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include + +#define vl_typedefs /* define message structures */ +#include +#undef vl_typedefs + +#define vl_endianfun /* define message structures */ +#include +#undef vl_endianfun + +/* instantiate all the print functions we know about */ +#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) +#define vl_printfun +#include +#undef vl_printfun + +void +pci_address_decode (const vl_api_pci_address_t * in, vlib_pci_addr_t * out) +{ + out->domain = in->domain; + out->bus = in->bus; + out->slot = in->slot; + out->function = in->function; +} + +void +pci_address_encode (const vlib_pci_addr_t * in, vl_api_pci_address_t * out) +{ + out->domain = in->domain; + out->bus = in->bus; + out->slot = in->slot; + out->function = in->function; +} + +/* + * fd.io coding-style-patch-verification: ON + * + * Local Variables: + * eval: (c-set-style "gnu") + * End: + */ -- cgit 1.2.3-korg