aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorYoussef Samir <youssef.abdulrahman@oss.qualcomm.com>2026-07-13 16:59:01 +0200
committerJakub Kicinski <kuba@kernel.org>2026-07-21 15:13:14 -0700
commitff194cffd586cbd4cc49eccb002c65f2a902a277 (patch)
tree226ddcfe817c8e3e09e5f125515687efa317860f /net
parent22f8aa35964e8f2ab026578f45befc9605fd1b28 (diff)
net: qrtr: ns: Raise node count limit to 512
The current node limit of 64 breaks the functionality for a number of AI200 deployments that have up to 384 nodes. Raise the limit to 512. Fixes: 27d5e84e810b ("net: qrtr: ns: Limit the total number of nodes") Cc: stable@vger.kernel.org Signed-off-by: Youssef Samir <youssef.abdulrahman@oss.qualcomm.com> Link: https://patch.msgid.link/20260713145901.212396-1-youssef.abdulrahman@oss.qualcomm.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net')
-rw-r--r--net/qrtr/ns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/qrtr/ns.c b/net/qrtr/ns.c
index b3f9bbcf9ab9..e5b2adb161d9 100644
--- a/net/qrtr/ns.c
+++ b/net/qrtr/ns.c
@@ -76,11 +76,11 @@ struct qrtr_node {
* requirements. If the requirement changes in the future, these values can be
* increased.
*/
-#define QRTR_NS_MAX_NODES 64
+#define QRTR_NS_MAX_NODES 512
#define QRTR_NS_MAX_SERVERS 256
#define QRTR_NS_MAX_LOOKUPS 64
-static u8 node_count;
+static u16 node_count;
static struct qrtr_node *node_get(unsigned int node_id)
{