| 
				
			 | 
			
			
				
				@@ -157,11 +157,11 @@ static int eth_slow_lacp_rx ( struct io_buffer *iobuf, 
			 | 
		
		
	
		
			
			| 
				157
			 | 
			
				157
			 | 
			
			
				
				 	 * then block the link until after the next expected LACP 
			 | 
		
		
	
		
			
			| 
				158
			 | 
			
				158
			 | 
			
			
				
				 	 * packet. 
			 | 
		
		
	
		
			
			| 
				159
			 | 
			
				159
			 | 
			
			
				
				 	 */ 
			 | 
		
		
	
		
			
			| 
				160
			 | 
			
				
			 | 
			
			
				
				-	if ( ~lacp->partner.state & ( LACP_STATE_IN_SYNC | 
			 | 
		
		
	
		
			
			| 
				161
			 | 
			
				
			 | 
			
			
				
				-				      LACP_STATE_COLLECTING | 
			 | 
		
		
	
		
			
			| 
				162
			 | 
			
				
			 | 
			
			
				
				-				      LACP_STATE_DISTRIBUTING ) ) { 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				160
			 | 
			
			
				
				+	if ( ~lacp->actor.state & ( LACP_STATE_IN_SYNC | 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				161
			 | 
			
			
				
				+				    LACP_STATE_COLLECTING | 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				162
			 | 
			
			
				
				+				    LACP_STATE_DISTRIBUTING ) ) { 
			 | 
		
		
	
		
			
			| 
				163
			 | 
			
				163
			 | 
			
			
				
				 		DBGC ( netdev, "SLOW %s LACP partner is down\n", netdev->name ); 
			 | 
		
		
	
		
			
			| 
				164
			 | 
			
				
			 | 
			
			
				
				-		interval = ( ( lacp->partner.state & LACP_STATE_FAST ) ? 
			 | 
		
		
	
		
			
			| 
				
			 | 
			
				164
			 | 
			
			
				
				+		interval = ( ( lacp->actor.state & LACP_STATE_FAST ) ? 
			 | 
		
		
	
		
			
			| 
				165
			 | 
			
				165
			 | 
			
			
				
				 			     ( ( LACP_INTERVAL_FAST + 1 ) * TICKS_PER_SEC ) : 
			 | 
		
		
	
		
			
			| 
				166
			 | 
			
				166
			 | 
			
			
				
				 			     ( ( LACP_INTERVAL_SLOW + 1 ) * TICKS_PER_SEC ) ); 
			 | 
		
		
	
		
			
			| 
				167
			 | 
			
				167
			 | 
			
			
				
				 		netdev_link_block ( netdev, interval ); 
			 |