blob: eadf5f176d684210ec95523ad621a334e9222569 [file] [log] [blame]
Stephen Hemminger6fbef232018-10-15 12:52:30 -07001/*
2 * Copyright (c) 2018, Microsoft Corporation.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vlib/vlib.h>
17#include <vlib/vmbus/vmbus.h>
18#include <vlib/unix/unix.h>
19
20#include <sys/types.h>
21#include <sys/stat.h>
22#include <fcntl.h>
23#include <dirent.h>
24#include <sys/ioctl.h>
25#include <net/if.h>
26
27/* this is a stub replaced by the Linux specfic version */
28vlib_vmbus_addr_t * __attribute__ ((weak)) vlib_vmbus_get_all_dev_addrs ()
29{
30 return NULL;
31}
32
Stephen Hemminger6fbef232018-10-15 12:52:30 -070033clib_error_t *
34vmbus_bus_init (vlib_main_t * vm)
35{
Dave Barachf8d50682019-05-14 18:01:44 -040036 return 0;
Stephen Hemminger6fbef232018-10-15 12:52:30 -070037}
38
39VLIB_INIT_FUNCTION (vmbus_bus_init);
40
41/*
42 * fd.io coding-style-patch-verification: ON
43 *
44 * Local Variables:
45 * eval: (c-set-style "gnu")
46 * End:
47 */