Re: [PATCH net v2] net: core: reduce recursion limit value

2020-06-18 Thread David Miller
From: Taehee Yoo Date: Tue, 16 Jun 2020 15:52:05 + > In the current code, ->ndo_start_xmit() can be executed recursively only > 10 times because of stack memory. > But, in the case of the vxlan, 10 recursion limit value results in > a stack overflow. > In the current code, the nested interfac

[PATCH net v2] net: core: reduce recursion limit value

2020-06-16 Thread Taehee Yoo
In the current code, ->ndo_start_xmit() can be executed recursively only 10 times because of stack memory. But, in the case of the vxlan, 10 recursion limit value results in a stack overflow. In the current code, the nested interface is limited by 8 depth. There is no critical reason that the recur