Browse Source

lwip: fix IPv6 ND6 queue too much pkts cause no mem issue and add menuconfig item for this params.

ChenJianxing 5 years ago
parent
commit
a5907ee3fe
3 changed files with 25 additions and 1 deletions
  1. 14 0
      components/lwip/Kconfig
  2. 1 1
      components/lwip/lwip
  3. 10 0
      components/lwip/port/esp32/include/lwipopts.h

+ 14 - 0
components/lwip/Kconfig

@@ -605,6 +605,20 @@ menu "LWIP"
             This would in turn fail the configuration for the whole link.
             This would in turn fail the configuration for the whole link.
             If your modem is not responding correctly to PPP Phase Network, try to disable IPV6 support.
             If your modem is not responding correctly to PPP Phase Network, try to disable IPV6 support.
 
 
+    config LWIP_IPV6_MEMP_NUM_ND6_QUEUE
+        int "Max number of IPv6 packets to queue during MAC resolution"
+        range 3 20
+        default 3
+        help
+            Config max number of IPv6 packets to queue during MAC resolution.
+
+    config LWIP_IPV6_ND6_NUM_NEIGHBORS
+        int "Max number of entries in IPv6 neighbor cache"
+        range 3 10
+        default 5
+        help
+            Config max number of entries in IPv6 neighbor cache
+
     config LWIP_PPP_NOTIFY_PHASE_SUPPORT
     config LWIP_PPP_NOTIFY_PHASE_SUPPORT
         bool "Enable Notify Phase Callback"
         bool "Enable Notify Phase Callback"
         depends on LWIP_PPP_SUPPORT
         depends on LWIP_PPP_SUPPORT

+ 1 - 1
components/lwip/lwip

@@ -1 +1 @@
-Subproject commit 602d25c525cbca272b33736170575c1665613beb
+Subproject commit f13c986a208db54a23104933aef8980de032f1b2

+ 10 - 0
components/lwip/port/esp32/include/lwipopts.h

@@ -724,6 +724,16 @@
  */
  */
 #define LWIP_IPV6                       1
 #define LWIP_IPV6                       1
 
 
+/**
+ * MEMP_NUM_ND6_QUEUE: Max number of IPv6 packets to queue during MAC resolution.
+ */
+#define MEMP_NUM_ND6_QUEUE              CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE
+
+/**
+ * LWIP_ND6_NUM_NEIGHBORS: Number of entries in IPv6 neighbor cache
+ */
+#define LWIP_ND6_NUM_NEIGHBORS          CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS
+
 /*
 /*
    ---------------------------------------
    ---------------------------------------
    ---------- Hook options ---------------
    ---------- Hook options ---------------