automatic DPDK test reports
 help / color / mirror / Atom feed
* [dpdk-test-report] |WARNING| pw97993 [PATCH] [V2] compress/mlx5: allow partial transformations support
@ 2021-09-05 17:07 dpdklab
  0 siblings, 0 replies; 2+ messages in thread
From: dpdklab @ 2021-09-05 17:07 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

[-- Attachment #1: Type: text/plain, Size: 2314 bytes --]

Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/97993

_apply patch failure_

Submitter: Raja Zidane <rzidane@nvidia.com>
Date: Sunday, September 05 2021 15:57:53 
Applied on: CommitID:4a62ab8ebce40a6e025345f5de24213ba981b49f
Apply patch set 97993 failed:

Checking patch drivers/compress/mlx5/mlx5_compress.c...
Hunk #1 succeeded at 287 (offset -4 lines).
error: while searching for:
		rte_errno = ENODEV;
		return -rte_errno;
	}
	if (mlx5_devx_cmd_query_hca_attr(ctx, &att) != 0 ||
	    ((att.mmo_compress_sq_en == 0 || att.mmo_decompress_sq_en == 0 ||
	    	att.mmo_dma_sq_en == 0) && (att.mmo_compress_qp_en == 0 || 
				att.mmo_decompress_qp_en == 0 || att.mmo_dma_qp_en == 0))) {
		DRV_LOG(ERR, "Not enough capabilities to support compress "
			"operations, maybe old FW/OFED version?");
		claim_zero(mlx5_glue->close_device(ctx));
		rte_errno = ENOTSUP;
		return -ENOTSUP;

error: patch failed: drivers/compress/mlx5/mlx5_compress.c:816
Applying patch drivers/compress/mlx5/mlx5_compress.c with 1 reject...
Hunk #1 applied cleanly.
Rejected hunk #2.
diff a/drivers/compress/mlx5/mlx5_compress.c b/drivers/compress/mlx5/mlx5_compress.c	(rejected hunks)
@@ -816,12 +843,16 @@ mlx5_compress_dev_probe(struct rte_device *dev)
 		rte_errno = ENODEV;
 		return -rte_errno;
 	}
-	if (mlx5_devx_cmd_query_hca_attr(ctx, &att) != 0 ||
-	    ((att.mmo_compress_sq_en == 0 || att.mmo_decompress_sq_en == 0 ||
-	    	att.mmo_dma_sq_en == 0) && (att.mmo_compress_qp_en == 0 || 
-				att.mmo_decompress_qp_en == 0 || att.mmo_dma_qp_en == 0))) {
-		DRV_LOG(ERR, "Not enough capabilities to support compress "
-			"operations, maybe old FW/OFED version?");
+	if (mlx5_devx_cmd_query_hca_attr(ctx, &att) != 0) {
+		DRV_LOG(ERR, "Failed to query device capabilities");
+		claim_zero(mlx5_glue->close_device(ctx));
+		rte_errno = ENOTSUP;
+		return -ENOTSUP;
+	}
+	if (!att.mmo_decompress_qp_en && !att.mmo_decompress_sq_en
+		&& !att.mmo_compress_qp_en && !att.mmo_compress_sq_en
+		&& !att.mmo_dma_qp_en && !att.mmo_dma_sq_en) {
+		DRV_LOG(ERR, "Not enough capabilities to support compress operations, maybe old FW/OFED version?");
 		claim_zero(mlx5_glue->close_device(ctx));
 		rte_errno = ENOTSUP;
 		return -ENOTSUP;

https://lab.dpdk.org/results/dashboard/patchsets/18555/

UNH-IOL DPDK Community Lab

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [dpdk-test-report] |WARNING| pw97993 [PATCH] [V2] compress/mlx5: allow partial transformations support
@ 2021-09-05 16:54 dpdklab
  0 siblings, 0 replies; 2+ messages in thread
From: dpdklab @ 2021-09-05 16:54 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

[-- Attachment #1: Type: text/plain, Size: 2314 bytes --]

Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/97993

_apply patch failure_

Submitter: Raja Zidane <rzidane@nvidia.com>
Date: Sunday, September 05 2021 15:57:53 
Applied on: CommitID:4a62ab8ebce40a6e025345f5de24213ba981b49f
Apply patch set 97993 failed:

Checking patch drivers/compress/mlx5/mlx5_compress.c...
Hunk #1 succeeded at 287 (offset -4 lines).
error: while searching for:
		rte_errno = ENODEV;
		return -rte_errno;
	}
	if (mlx5_devx_cmd_query_hca_attr(ctx, &att) != 0 ||
	    ((att.mmo_compress_sq_en == 0 || att.mmo_decompress_sq_en == 0 ||
	    	att.mmo_dma_sq_en == 0) && (att.mmo_compress_qp_en == 0 || 
				att.mmo_decompress_qp_en == 0 || att.mmo_dma_qp_en == 0))) {
		DRV_LOG(ERR, "Not enough capabilities to support compress "
			"operations, maybe old FW/OFED version?");
		claim_zero(mlx5_glue->close_device(ctx));
		rte_errno = ENOTSUP;
		return -ENOTSUP;

error: patch failed: drivers/compress/mlx5/mlx5_compress.c:816
Applying patch drivers/compress/mlx5/mlx5_compress.c with 1 reject...
Hunk #1 applied cleanly.
Rejected hunk #2.
diff a/drivers/compress/mlx5/mlx5_compress.c b/drivers/compress/mlx5/mlx5_compress.c	(rejected hunks)
@@ -816,12 +843,16 @@ mlx5_compress_dev_probe(struct rte_device *dev)
 		rte_errno = ENODEV;
 		return -rte_errno;
 	}
-	if (mlx5_devx_cmd_query_hca_attr(ctx, &att) != 0 ||
-	    ((att.mmo_compress_sq_en == 0 || att.mmo_decompress_sq_en == 0 ||
-	    	att.mmo_dma_sq_en == 0) && (att.mmo_compress_qp_en == 0 || 
-				att.mmo_decompress_qp_en == 0 || att.mmo_dma_qp_en == 0))) {
-		DRV_LOG(ERR, "Not enough capabilities to support compress "
-			"operations, maybe old FW/OFED version?");
+	if (mlx5_devx_cmd_query_hca_attr(ctx, &att) != 0) {
+		DRV_LOG(ERR, "Failed to query device capabilities");
+		claim_zero(mlx5_glue->close_device(ctx));
+		rte_errno = ENOTSUP;
+		return -ENOTSUP;
+	}
+	if (!att.mmo_decompress_qp_en && !att.mmo_decompress_sq_en
+		&& !att.mmo_compress_qp_en && !att.mmo_compress_sq_en
+		&& !att.mmo_dma_qp_en && !att.mmo_dma_sq_en) {
+		DRV_LOG(ERR, "Not enough capabilities to support compress operations, maybe old FW/OFED version?");
 		claim_zero(mlx5_glue->close_device(ctx));
 		rte_errno = ENOTSUP;
 		return -ENOTSUP;

https://lab.dpdk.org/results/dashboard/patchsets/18555/

UNH-IOL DPDK Community Lab

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-05 17:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-05 17:07 [dpdk-test-report] |WARNING| pw97993 [PATCH] [V2] compress/mlx5: allow partial transformations support dpdklab
  -- strict thread matches above, loose matches on Subject: below --
2021-09-05 16:54 dpdklab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).