mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-11-01 09:13:37 +00:00 
			
		
		
		
	libceph: kill ceph_none_authorizer::reply_buf
We never receive authorizer replies with cephx disabled, so it is bogus. Also, it still uses the old zero-length array style. Reported-by: Gustavo A. R. Silva <gustavoars@kernel.org> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
This commit is contained in:
		
							parent
							
								
									4364c6938d
								
							
						
					
					
						commit
						d71a95e7ff
					
				
					 2 changed files with 2 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -112,8 +112,8 @@ static int ceph_auth_none_create_authorizer(
 | 
			
		|||
	auth->authorizer = (struct ceph_authorizer *) au;
 | 
			
		||||
	auth->authorizer_buf = au->buf;
 | 
			
		||||
	auth->authorizer_buf_len = au->buf_len;
 | 
			
		||||
	auth->authorizer_reply_buf = au->reply_buf;
 | 
			
		||||
	auth->authorizer_reply_buf_len = sizeof (au->reply_buf);
 | 
			
		||||
	auth->authorizer_reply_buf = NULL;
 | 
			
		||||
	auth->authorizer_reply_buf_len = 0;
 | 
			
		||||
 | 
			
		||||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -16,7 +16,6 @@ struct ceph_none_authorizer {
 | 
			
		|||
	struct ceph_authorizer base;
 | 
			
		||||
	char buf[128];
 | 
			
		||||
	int buf_len;
 | 
			
		||||
	char reply_buf[0];
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct ceph_auth_none_info {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue