From: Honnappa Nagarahalli Date: Tue, 8 Oct 2019 21:12:15 +0000 (-0500) Subject: doc: remove wrong limitation in RCU guide X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f50d9aad00605d1009e2c0fc0ff2cfc49c37b281;p=dpdk.git doc: remove wrong limitation in RCU guide There is no limitation of 1024 reader threads. Fixes: 64994b56cfd7 ("rcu: add RCU library supporting QSBR mechanism") Cc: stable@dpdk.org Signed-off-by: Honnappa Nagarahalli Reviewed-by: Ruifeng Wang Reviewed-by: Gavin Hu --- diff --git a/doc/guides/prog_guide/rcu_lib.rst b/doc/guides/prog_guide/rcu_lib.rst index c019dfca89..4d1ed3954a 100644 --- a/doc/guides/prog_guide/rcu_lib.rst +++ b/doc/guides/prog_guide/rcu_lib.rst @@ -120,8 +120,7 @@ The application must allocate memory and initialize a QS variable. Applications can call ``rte_rcu_qsbr_get_memsize()`` to calculate the size of memory to allocate. This API takes a maximum number of reader threads, -using this variable, as a parameter. Currently, a maximum of 1024 threads -are supported. +using this variable, as a parameter. Further, the application can initialize a QS variable using the API ``rte_rcu_qsbr_init()``.