net/octeontx: support fast mbuf free
[dpdk.git] / drivers / common / qat / qat_logs.c
index fa3df85..dfd0cbe 100644 (file)
@@ -14,19 +14,13 @@ int
 qat_hexdump_log(uint32_t level, uint32_t logtype, const char *title,
                const void *buf, unsigned int len)
 {
-       if (level > rte_log_get_global_level())
-               return 0;
-       if (level > (uint32_t)(rte_log_get_level(logtype)))
-               return 0;
+       if (rte_log_can_log(logtype, level))
+               rte_hexdump(rte_log_get_stream(), title, buf, len);
 
-       rte_hexdump(rte_logs.file == NULL ? stderr : rte_logs.file,
-                               title, buf, len);
        return 0;
 }
 
-RTE_INIT(qat_pci_init_log);
-static void
-qat_pci_init_log(void)
+RTE_INIT(qat_pci_init_log)
 {
        /* Non-data-path logging for pci device and all services */
        qat_gen_logtype = rte_log_register("pmd.qat_general");