hash: fix Doxygen comment of Toeplitz file
authorVladimir Medvedkin <vladimir.medvedkin@intel.com>
Mon, 6 Sep 2021 16:02:43 +0000 (17:02 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 25 Oct 2021 17:06:07 +0000 (19:06 +0200)
Fixes: 7574c3ef7428 ("hash: add toeplitz algorithm used by RSS")
Cc: stable@dpdk.org
Signed-off-by: Vladimir Medvedkin <vladimir.medvedkin@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
lib/hash/rte_thash.h

index 76109fc..a26fe56 100644 (file)
@@ -9,20 +9,16 @@
 /**
  * @file
  *
- * toeplitz hash functions.
- */
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
  * Software implementation of the Toeplitz hash function used by RSS.
  * Can be used either for packet distribution on single queue NIC
  * or for simulating of RSS computation on specific NIC (for example
  * after GRE header decapsulating)
  */
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include <stdint.h>
 #include <rte_byteorder.h>
 #include <rte_config.h>