mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	rpmsg: smd: Don't hold the tx lock during wait
Holding the tx lock while waiting for tx-drain events from the remote side blocks try_send requests from failing quickly, so temporarily drop the tx lock while waiting. While this allows try_send to fail quickly it also could allow a subsequent send to succeed putting a smaller packet in the FIFO while we're waiting for room for our large packet. But as this lock is per channel we expect that clients with ordering concerns implements their own ordering mechanism. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
		
							parent
							
								
									b2c932e799
								
							
						
					
					
						commit
						178f3f75bb
					
				
					 1 changed files with 7 additions and 0 deletions
				
			
		| 
						 | 
					@ -752,12 +752,19 @@ static int __qcom_smd_send(struct qcom_smd_channel *channel, const void *data,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		SET_TX_CHANNEL_FLAG(channel, fBLOCKREADINTR, 0);
 | 
							SET_TX_CHANNEL_FLAG(channel, fBLOCKREADINTR, 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							/* Wait without holding the tx_lock */
 | 
				
			||||||
 | 
							mutex_unlock(&channel->tx_lock);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		ret = wait_event_interruptible(channel->fblockread_event,
 | 
							ret = wait_event_interruptible(channel->fblockread_event,
 | 
				
			||||||
				       qcom_smd_get_tx_avail(channel) >= tlen ||
 | 
									       qcom_smd_get_tx_avail(channel) >= tlen ||
 | 
				
			||||||
				       channel->state != SMD_CHANNEL_OPENED);
 | 
									       channel->state != SMD_CHANNEL_OPENED);
 | 
				
			||||||
		if (ret)
 | 
							if (ret)
 | 
				
			||||||
			goto out;
 | 
								goto out;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							ret = mutex_lock_interruptible(&channel->tx_lock);
 | 
				
			||||||
 | 
							if (ret)
 | 
				
			||||||
 | 
								goto out;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		SET_TX_CHANNEL_FLAG(channel, fBLOCKREADINTR, 1);
 | 
							SET_TX_CHANNEL_FLAG(channel, fBLOCKREADINTR, 1);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue