forked from mirrors/linux
		
	bpfilter: switch to kernel_write
While pipes don't really need sb_writers projection, __kernel_write is an interface better kept private, and the additional rw_verify_area does not hurt here. Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
		
							parent
							
								
									13c164b1a1
								
							
						
					
					
						commit
						6955a76fbc
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -50,7 +50,7 @@ static int __bpfilter_process_sockopt(struct sock *sk, int optname,
 | 
				
			||||||
	req.len = optlen;
 | 
						req.len = optlen;
 | 
				
			||||||
	if (!bpfilter_ops.info.pid)
 | 
						if (!bpfilter_ops.info.pid)
 | 
				
			||||||
		goto out;
 | 
							goto out;
 | 
				
			||||||
	n = __kernel_write(bpfilter_ops.info.pipe_to_umh, &req, sizeof(req),
 | 
						n = kernel_write(bpfilter_ops.info.pipe_to_umh, &req, sizeof(req),
 | 
				
			||||||
			   &pos);
 | 
								   &pos);
 | 
				
			||||||
	if (n != sizeof(req)) {
 | 
						if (n != sizeof(req)) {
 | 
				
			||||||
		pr_err("write fail %zd\n", n);
 | 
							pr_err("write fail %zd\n", n);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue