forked from mirrors/linux
		
	NFS4: Avoid migration loops
If a server returns itself as a location while migrating, the client may end up getting stuck attempting to migrate twice to the same server. Catch this by checking if the nfs_client found is the same as the existing client. For the other two callers to nfs4_set_client, the nfs_client will always be ERR_PTR(-EINVAL). Signed-off-by: Benjamin Coddington <bcodding@redhat.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
		
							parent
							
								
									3dc147359e
								
							
						
					
					
						commit
						52442f9b11
					
				
					 1 changed files with 5 additions and 0 deletions
				
			
		| 
						 | 
					@ -817,6 +817,11 @@ static int nfs4_set_client(struct nfs_server *server,
 | 
				
			||||||
		goto error;
 | 
							goto error;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (server->nfs_client == clp) {
 | 
				
			||||||
 | 
							error = -ELOOP;
 | 
				
			||||||
 | 
							goto error;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Query for the lease time on clientid setup or renewal
 | 
						 * Query for the lease time on clientid setup or renewal
 | 
				
			||||||
	 *
 | 
						 *
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue