[dpdk-test-report] |WARNING| pw52899 [PATCH] crypto/octeontx: use distinct metabuf pool for each queue

checkpatch at dpdk.org checkpatch at dpdk.org
Thu Apr 18 05:30:35 CEST 2019


Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/52899

_coding style issues_


ERROR:DOS_LINE_ENDINGS: DOS line endings
#45: FILE: drivers/common/cpt/cpt_common.h:8:
+#include <rte_mempool.h>^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#46: FILE: drivers/common/cpt/cpt_common.h:9:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#58: FILE: drivers/common/cpt/cpt_common.h:43:
+struct cpt_qp_meta_info {^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#59: FILE: drivers/common/cpt/cpt_common.h:44:
+^Istruct rte_mempool *pool;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#60: FILE: drivers/common/cpt/cpt_common.h:45:
+^Iint sg_mlen;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#61: FILE: drivers/common/cpt/cpt_common.h:46:
+^Iint lb_mlen;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#74: FILE: drivers/common/cpt/cpt_ucode.h:3150:
+^I       struct cpt_qp_meta_info *m_info,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#86: FILE: drivers/common/cpt/cpt_ucode.h:3368:
+^I^Imdata = alloc_op_meta(m_src, &fc_params.meta_buf,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#87: FILE: drivers/common/cpt/cpt_ucode.h:3369:
+^I^I^I^I      m_info->lb_mlen, m_info->pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#93: FILE: drivers/common/cpt/cpt_ucode.h:3371:
+^I^Imdata = alloc_op_meta(NULL, &fc_params.meta_buf,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#94: FILE: drivers/common/cpt/cpt_ucode.h:3372:
+^I^I^I^I      m_info->sg_mlen, m_info->pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#103: FILE: drivers/common/cpt/cpt_ucode.h:3409:
+^Ifree_op_meta(mdata, m_info->pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#112: FILE: drivers/common/cpt/cpt_ucode.h:3520:
+^I^I   struct cpt_qp_meta_info *m_info,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#122: FILE: drivers/common/cpt/cpt_ucode.h:3546:
+^Imdata = alloc_op_meta(NULL, &params.meta_buf, m_info->sg_mlen,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#123: FILE: drivers/common/cpt/cpt_ucode.h:3547:
+^I^I^I      m_info->pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#132: FILE: drivers/common/cpt/cpt_ucode.h:3682:
+^Ifree_op_meta(mdata, m_info->pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#158: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:10:
+#include <rte_cryptodev.h>^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#160: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:12:
+#include <rte_mempool.h>^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#168: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:20:
+#include "cpt_pmd_ops_helper.h"^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#171: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:23:
+#define METABUF_POOL_CACHE_SIZE^I512^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#172: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:24:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#180: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:403:
+static int^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#181: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:404:
+otx_cpt_metabuf_mempool_create(const struct rte_cryptodev *dev,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#182: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:405:
+^I^I^I       struct cpt_instance *instance, uint8_t qp_id,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#183: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:406:
+^I^I^I       int nb_elements)^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#184: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:407:
+{^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#185: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:408:
+^Ichar mempool_name[RTE_MEMPOOL_NAMESIZE];^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#186: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:409:
+^Iint sg_mlen, lb_mlen, max_mlen, ret;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#187: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:410:
+^Istruct cpt_qp_meta_info *meta_info;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#188: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:411:
+^Istruct rte_mempool *pool;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#189: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:412:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#190: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:413:
+^I/* Get meta len for scatter gather mode */^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#191: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:414:
+^Isg_mlen = cpt_pmd_ops_helper_get_mlen_sg_mode();^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#192: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:415:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#193: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:416:
+^I/* Extra 32B saved for future considerations */^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#194: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:417:
+^Isg_mlen += 4 * sizeof(uint64_t);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#195: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:418:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#196: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:419:
+^I/* Get meta len for linear buffer (direct) mode */^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#197: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:420:
+^Ilb_mlen = cpt_pmd_ops_helper_get_mlen_direct_mode();^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#198: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:421:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#199: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:422:
+^I/* Extra 32B saved for future considerations */^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#200: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:423:
+^Ilb_mlen += 4 * sizeof(uint64_t);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#201: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:424:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#202: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:425:
+^I/* Check max requirement for meta buffer */^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#203: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:426:
+^Imax_mlen = RTE_MAX(lb_mlen, sg_mlen);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#204: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:427:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#205: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:428:
+^I/* Allocate mempool */^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#206: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:429:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#207: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:430:
+^Isnprintf(mempool_name, RTE_MEMPOOL_NAMESIZE, "otx_cpt_mb_%u:%u",^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#208: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:431:
+^I^I dev->data->dev_id, qp_id);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#209: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:432:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#210: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:433:
+^Ipool = rte_mempool_create_empty(mempool_name, nb_elements, max_mlen,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#211: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:434:
+^I^I^I^I^IMETABUF_POOL_CACHE_SIZE, 0,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#212: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:435:
+^I^I^I^I^Irte_socket_id(), 0);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#213: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:436:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#214: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:437:
+^Iif (pool == NULL) {^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#215: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:438:
+^I^ICPT_LOG_ERR("Could not create mempool for metabuf");^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#216: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:439:
+^I^Ireturn rte_errno;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#217: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:440:
+^I}^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#218: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:441:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#219: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:442:
+^Iret = rte_mempool_set_ops_byname(pool, RTE_MBUF_DEFAULT_MEMPOOL_OPS,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#220: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:443:
+^I^I^I^I^I NULL);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#221: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:444:
+^Iif (ret) {^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#222: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:445:
+^I^ICPT_LOG_ERR("Could not set mempool ops");^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#223: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:446:
+^I^Igoto mempool_free;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#224: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:447:
+^I}^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#225: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:448:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#226: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:449:
+^Iret = rte_mempool_populate_default(pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#227: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:450:
+^Iif (ret <= 0) {^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#228: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:451:
+^I^ICPT_LOG_ERR("Could not populate metabuf pool");^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#229: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:452:
+^I^Igoto mempool_free;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#230: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:453:
+^I}^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#231: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:454:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#232: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:455:
+^Imeta_info = &instance->meta_info;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#233: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:456:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#234: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:457:
+^Imeta_info->pool = pool;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#235: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:458:
+^Imeta_info->lb_mlen = lb_mlen;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#236: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:459:
+^Imeta_info->sg_mlen = sg_mlen;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#237: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:460:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#238: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:461:
+^Ireturn 0;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#239: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:462:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#240: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:463:
+mempool_free:^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#241: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:464:
+^Irte_mempool_free(pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#242: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:465:
+^Ireturn ret;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#243: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:466:
+}^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#244: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:467:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#245: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:468:
+static void^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#246: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:469:
+otx_cpt_metabuf_mempool_destroy(struct cpt_instance *instance)^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#247: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:470:
+{^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#248: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:471:
+^Istruct cpt_qp_meta_info *meta_info = &instance->meta_info;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#249: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:472:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#250: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:473:
+^Irte_mempool_free(meta_info->pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#251: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:474:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#252: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:475:
+^Imeta_info->pool = NULL;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#253: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:476:
+^Imeta_info->lb_mlen = 0;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#254: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:477:
+^Imeta_info->sg_mlen = 0;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#255: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:478:
+}^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#256: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:479:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#259: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:481:
+otx_cpt_get_resource(const struct rte_cryptodev *dev, uint8_t group,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#260: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:482:
+^I^I     struct cpt_instance **instance, uint16_t qp_id)^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#265: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:486:
+^Istruct cpt_vf *cptvf = dev->data->dev_private;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#274: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:532:
+^I^Igoto exit;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#282: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:543:
+^Iret = otx_cpt_metabuf_mempool_create(dev, cpt_instance, qp_id, qlen);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#283: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:544:
+^Iif (ret) {^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#284: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:545:
+^I^ICPT_LOG_ERR("Could not create mempool for metabuf");^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#285: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:546:
+^I^Igoto memzone_free;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#286: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:547:
+^I}^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#287: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:548:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#296: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:605:
+^I^Igoto mempool_destroy;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#305: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:613:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#306: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:614:
+mempool_destroy:^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#307: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:615:
+^Iotx_cpt_metabuf_mempool_destroy(cpt_instance);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#308: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:616:
+memzone_free:^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#310: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:618:
+exit:^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#318: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:636:
+^Iotx_cpt_metabuf_mempool_destroy(instance);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#319: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.c:637:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#331: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.h:10:
+#include <rte_cryptodev.h>^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#339: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.h:45:
+^Istruct cpt_qp_meta_info meta_info;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#357: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.h:159:
+otx_cpt_get_resource(const struct rte_cryptodev *dev, uint8_t group,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#358: FILE: drivers/crypto/octeontx/otx_cryptodev_hw_access.h:160:
+^I^I     struct cpt_instance **instance, uint16_t qp_id);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#370: FILE: drivers/crypto/octeontx/otx_cryptodev_ops.c:9:
+#include <rte_errno.h>^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#372: FILE: drivers/crypto/octeontx/otx_cryptodev_ops.c:11:
+#include <rte_mempool.h>^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#461: FILE: drivers/crypto/octeontx/otx_cryptodev_ops.c:159:
+^Iret = otx_cpt_get_resource(dev, 0, &instance, que_pair_id);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#478: FILE: drivers/crypto/octeontx/otx_cryptodev_ops.c:338:
+^I^Iret = fill_fc_params(op, sess, &instance->meta_info, &mdata,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#482: FILE: drivers/crypto/octeontx/otx_cryptodev_ops.c:341:
+^I^Iret = fill_digest_params(op, sess, &instance->meta_info,^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#491: FILE: drivers/crypto/octeontx/otx_cryptodev_ops.c:355:
+^I^Ifree_op_meta(mdata, instance->meta_info.pool);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#500: FILE: drivers/crypto/octeontx/otx_cryptodev_ops.c:563:
+^I^Ifree_op_meta(metabuf, instance->meta_info.pool);^M$

total: 127 errors, 0 warnings, 467 lines checked


More information about the test-report mailing list