MCPcopy Index your code
hub / github.com/F-Stack/f-stack / ff_init

Function ff_init

lib/ff_init.c:35–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33extern int ff_freebsd_init();
34
35int
36ff_init(int argc, char * const argv[])
37{
38 int ret;
39 ret = ff_load_config(argc, argv);
40 if (ret < 0)
41 exit(1);
42
43 ret = ff_dpdk_init(dpdk_argc, (char **)&dpdk_argv);
44 if (ret < 0)
45 exit(1);
46
47 ret = ff_freebsd_init();
48 if (ret < 0)
49 exit(1);
50
51 ret = ff_dpdk_if_up();
52 if (ret < 0)
53 exit(1);
54
55 return 0;
56}
57
58void
59ff_run(loop_func_t loop, void *arg)

Callers 7

mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
ff_mod_initFunction · 0.85
mainFunction · 0.85
mt_init_frameFunction · 0.85

Calls 4

ff_load_configFunction · 0.85
ff_dpdk_initFunction · 0.85
ff_freebsd_initFunction · 0.85
ff_dpdk_if_upFunction · 0.85

Tested by

no test coverage detected