Re: [PATCH net] net/rose: fix unbound loop in rose_loopback_timer()

2019-04-24 Thread David Miller
From: Eric Dumazet Date: Wed, 24 Apr 2019 05:35:00 -0700 > This patch adds a limit on the number of skbs that fuzzers can queue > into loopback_queue. 1000 packets for rose loopback seems more than enough. > > Then, since we now have multiple cpus in most linux hosts, > we also need to limit the

[PATCH net] net/rose: fix unbound loop in rose_loopback_timer()

2019-04-24 Thread Eric Dumazet
This patch adds a limit on the number of skbs that fuzzers can queue into loopback_queue. 1000 packets for rose loopback seems more than enough. Then, since we now have multiple cpus in most linux hosts, we also need to limit the number of skbs rose_loopback_timer() can dequeue at each round. ros