mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 13:34:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			655 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			655 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/net/sched/sch_api.c
 | |
| +++ b/net/sched/sch_api.c
 | |
| @@ -1914,7 +1914,7 @@ static int __init pktsched_init(void)
 | |
|  		return err;
 | |
|  	}
 | |
|  
 | |
| -	register_qdisc(&pfifo_fast_ops);
 | |
| +	register_qdisc(&fq_codel_qdisc_ops);
 | |
|  	register_qdisc(&pfifo_qdisc_ops);
 | |
|  	register_qdisc(&bfifo_qdisc_ops);
 | |
|  	register_qdisc(&pfifo_head_drop_qdisc_ops);
 | |
| --- a/net/sched/sch_generic.c
 | |
| +++ b/net/sched/sch_generic.c
 | |
| @@ -31,7 +31,7 @@
 | |
|  #include <net/dst.h>
 | |
|  
 | |
|  /* Qdisc to use by default */
 | |
| -const struct Qdisc_ops *default_qdisc_ops = &pfifo_fast_ops;
 | |
| +const struct Qdisc_ops *default_qdisc_ops = &fq_codel_qdisc_ops;
 | |
|  EXPORT_SYMBOL(default_qdisc_ops);
 | |
|  
 | |
|  /* Main transmission queue. */
 |