diff options
Diffstat (limited to 'net/core/dst.c')
| -rw-r--r-- | net/core/dst.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/net/core/dst.c b/net/core/dst.c index 57bc4d5b8d0..cb1b3488b73 100644 --- a/net/core/dst.c +++ b/net/core/dst.c @@ -17,6 +17,7 @@  #include <linux/string.h>  #include <linux/types.h>  #include <net/net_namespace.h> +#include <linux/sched.h>  #include <net/dst.h> @@ -79,6 +80,7 @@ loop:  	while ((dst = next) != NULL) {  		next = dst->next;  		prefetch(&next->next); +		cond_resched();  		if (likely(atomic_read(&dst->__refcnt))) {  			last->next = dst;  			last = dst;  |