mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	FreeBSD: Retry OCF ENOMEM errors.
ZFS does not expect transient errors from crypto. For read they are counted as checksum errors, while for write end up in panic. To not panic on random low memory conditions retry ENOMEM errors in the OCF wrapper function. While there remove unneeded timeout and priority from msleep(). External-issue: https://reviews.freebsd.org/D30339 Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Mark Maybee <mark.maybee@delphix.com> Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored-By: iXsystems, Inc. Closes #12077
This commit is contained in:
		
							parent
							
								
									fa7ee48e10
								
							
						
					
					
						commit
						cc1c7b0171
					
				| @ -172,11 +172,13 @@ zfs_crypto_dispatch(freebsd_crypt_session_t *session, 	struct cryptop *crp) | ||||
| 			break; | ||||
| 		mtx_lock(&session->fs_lock); | ||||
| 		while (session->fs_done == false) | ||||
| 			msleep(crp, &session->fs_lock, PRIBIO, | ||||
| 			    "zfs_crypto", hz/5); | ||||
| 			msleep(crp, &session->fs_lock, 0, | ||||
| 			    "zfs_crypto", 0); | ||||
| 		mtx_unlock(&session->fs_lock); | ||||
| 
 | ||||
| 		if (crp->crp_etype != EAGAIN) { | ||||
| 		if (crp->crp_etype == ENOMEM) { | ||||
| 			pause("zcrnomem", 1); | ||||
| 		} else if (crp->crp_etype != EAGAIN) { | ||||
| 			error = crp->crp_etype; | ||||
| 			break; | ||||
| 		} | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Alexander Motin
						Alexander Motin