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

Function rte_log

dpdk/lib/log/log.c:514–524  ·  view source on GitHub ↗

* Generates a log message The message will be sent in the stream * defined by the previous call to rte_openlog_stream(). * No need to check level here, done by rte_vlog(). */

Source from the content-addressed store, hash-verified

512 * No need to check level here, done by rte_vlog().
513 */
514int
515rte_log(uint32_t level, uint32_t logtype, const char *format, ...)
516{
517 va_list ap;
518 int ret;
519
520 va_start(ap, format);
521 ret = rte_vlog(level, logtype, format, ap);
522 va_end(ap);
523 return ret;
524}
525
526/*
527 * Called by environment-specific initialization functions.

Callers 15

ff_mmap_initFunction · 0.85
ff_if_send_onepktFunction · 0.85
mem_set_dumpFunction · 0.85
rte_dump_stackFunction · 0.85
__rte_panicFunction · 0.85
log_eval_stateFunction · 0.85
rte_rcu_qsbr_get_memsizeFunction · 0.85
rte_rcu_qsbr_initFunction · 0.85
rte_rcu_qsbr_dumpFunction · 0.85
rte_rcu_qsbr_dq_createFunction · 0.85

Calls 1

rte_vlogFunction · 0.85

Tested by 5

print_key_infoFunction · 0.68
test_logsFunction · 0.68
timer_cbFunction · 0.68
reload_timerFunction · 0.68
print_key_infoFunction · 0.68