examples/vhost_crypto: fix bracket
authorFan Zhang <roy.fan.zhang@intel.com>
Tue, 11 Dec 2018 15:09:51 +0000 (15:09 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 13 Dec 2018 18:17:42 +0000 (18:17 +0000)
This patch fixes a missed bracket bug in the code.

Fixes: e1d90eaa83ff ("examples/vhost_crypto: fix zero copy")
Cc: stable@dpdk.org
Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
examples/vhost_crypto/main.c

index f08babd..3deb526 100644 (file)
@@ -503,11 +503,12 @@ main(int argc, char *argv[])
                        if (strstr(dev_info.driver_name,
                                RTE_STR(VHOST_CRYPTO_CDEV_NAME_AESNI_MB_PMD)) ||
                                strstr(dev_info.driver_name,
-                               RTE_STR(VHOST_CRYPTO_CDEV_NAME_AESNI_GCM_PMD)))
-                       RTE_LOG(ERR, USER1, "Cannot enable zero-copy in %s\n",
+                               RTE_STR(VHOST_CRYPTO_CDEV_NAME_AESNI_GCM_PMD))) {
+                               RTE_LOG(ERR, USER1, "Cannot enable zero-copy in %s\n",
                                        dev_info.driver_name);
-                       ret = -EPERM;
-                       goto error_exit;
+                               ret = -EPERM;
+                               goto error_exit;
+                       }
                }
 
                if (dev_info.max_nb_queue_pairs < info->qid + 1) {