[dpdk-test-report] |WARNING| pw88535 [PATCH 08/52] common/cnxk: add VF support to base device class

checkpatch at dpdk.org checkpatch at dpdk.org
Fri Mar 5 14:41:55 CET 2021


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

_coding style issues_


ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#549: FILE: drivers/common/cnxk/roc_dev.c:513:
+#define M(_name, _id, _fn_name, _req_type, _rsp_type)                          \
+	case _id: {                                                            \
+		struct _rsp_type *rsp;                                         \
+		int err;                                                       \
+		rsp = (struct _rsp_type *)mbox_alloc_msg(                      \
+			&dev->mbox_up, 0, sizeof(struct _rsp_type));           \
+		if (!rsp)                                                      \
+			return -ENOMEM;                                        \
+		rsp->hdr.id = _id;                                             \
+		rsp->hdr.sig = MBOX_RSP_SIG;                                   \
+		rsp->hdr.pcifunc = dev->pf_func;                               \
+		rsp->hdr.rc = 0;                                               \
+		err = mbox_up_handler_##_fn_name(dev, (struct _req_type *)req, \
+						 rsp);                         \
+		return err;                                                    \
+	}

WARNING:TYPO_SPELLING: 'TIM' may be misspelled - perhaps 'TIME'?
#871: FILE: drivers/common/cnxk/roc_dev.c:871:
+	case PCI_DEVID_CNXK_RVU_SSO_TIM_VF:

total: 1 errors, 1 warnings, 1055 lines checked


More information about the test-report mailing list