Re: [PATCH net-next v3] net: ip: avoid OOM kills with large UDP sends over loopback
From: Eric Dumazet <hidden>
Date: 2021-06-23 18:11:40
On 6/23/21 8:05 PM, Eric Dumazet wrote:
On 6/23/21 6:23 PM, Jakub Kicinski wrote:quoted
Dave observed number of machines hitting OOM on the UDP send path. The workload seems to be sending large UDP packets over loopback. Since loopback has MTU of 64k kernel will try to allocate an skb with up to 64k of head space. This has a good chance of failing under memory pressure. What's worse if the message length is <32k the allocation may trigger an OOM killer. This is entirely avoidable, we can use an skb with page frags. af_unix solves a similar problem by limiting the head length to SKB_MAX_ALLOC. This seems like a good and simple approach. It means that UDP messages > 16kB will now use fragments if underlying device supports SG, if extra allocator pressure causes regressions in real workloads we can switch to trying the large allocation first and falling back. Reported-by: Dave Jones <redacted> Signed-off-by: Jakub Kicinski <kuba@kernel.org> ---Reviewed-by: Eric Dumazet <edumazet@google.com> Thanks !
I am taking this back. IPv6 side also needs to account for sizeof(struct frag_hdr) ?