mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	xen/netback: Properly initialize credit_bytes
Commit e9ce7cb6b1 ("xen-netback: Factor queue-specific data into queue
struct") introduced a regression when moving queue-specific data into
the queue struct by failing to set the credit_bytes field. This
prevented bandwidth limiting from working. Initialize the field as it
was done before multiqueue support was added.
Signed-off-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									748a7295d7
								
							
						
					
					
						commit
						ce0e5c522d
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -793,6 +793,7 @@ static void connect(struct backend_info *be)
 | 
				
			||||||
			goto err;
 | 
								goto err;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							queue->credit_bytes = credit_bytes;
 | 
				
			||||||
		queue->remaining_credit = credit_bytes;
 | 
							queue->remaining_credit = credit_bytes;
 | 
				
			||||||
		queue->credit_usec = credit_usec;
 | 
							queue->credit_usec = credit_usec;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue