net/failsafe: fix RSS hash offload reporting
[dpdk.git] / lib / librte_vhost / rte_vhost_crypto.h
index 866a592..8531757 100644 (file)
@@ -5,12 +5,22 @@
 #ifndef _VHOST_CRYPTO_H_
 #define _VHOST_CRYPTO_H_
 
+#include <stdint.h>
+
+#include <rte_compat.h>
+
+/* pre-declare structs to avoid including full headers */
+struct rte_mempool;
+struct rte_crypto_op;
+
 #define VHOST_CRYPTO_MBUF_POOL_SIZE            (8192)
 #define VHOST_CRYPTO_MAX_BURST_SIZE            (64)
+#define VHOST_CRYPTO_MAX_DATA_SIZE             (4096)
 #define VHOST_CRYPTO_SESSION_MAP_ENTRIES       (1024) /**< Max nb sessions */
 /** max nb virtual queues in a burst for finalizing*/
 #define VIRTIO_CRYPTO_MAX_NUM_BURST_VQS                (64)
 #define VHOST_CRYPTO_MAX_IV_LEN                        (32)
+#define VHOST_CRYPTO_MAX_N_DESC                        (32)
 
 enum rte_vhost_crypto_zero_copy {
        RTE_VHOST_CRYPTO_ZERO_COPY_DISABLE = 0,
@@ -18,6 +28,18 @@ enum rte_vhost_crypto_zero_copy {
        RTE_VHOST_CRYPTO_MAX_ZERO_COPY_OPTIONS
 };
 
+/**
+ * Start vhost crypto driver
+ *
+ * @param path
+ *  The vhost-user socket file path
+ * @return
+ *  0 on success, -1 on failure
+ */
+__rte_experimental
+int
+rte_vhost_crypto_driver_start(const char *path);
+
 /**
  *  Create Vhost-crypto instance
  *