On Tue, Apr 10, 2018 at 03:12:37PM +0300, Дмитрий Леонтьев wrote: > First, I've noticed the network drivers were allocating memory in interrupt > handlers. That sounds strange to me, because as far as I know, this > behaviour is discouraged and may lead to DDOS attack. Linux supports allocating memory in interrupt context. We also support allocating memory while holding locks. Doing it any other way would require the network stack to preallocate all of the memory it's going to use. You can pop over to the netdev mailing list and ask them to stop this behaviour, but I don't think they'll be very sympathetic.