mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Better describe what these functions do. Suggested-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			456 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			456 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-only
 | 
						|
/*
 | 
						|
 * Copyright (C) 2013 Richard Weinberger <richrd@nod.at>
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/uaccess.h>
 | 
						|
#include <linux/kernel.h>
 | 
						|
#include <os.h>
 | 
						|
 | 
						|
bool copy_from_kernel_nofault_allowed(const void *src, size_t size)
 | 
						|
{
 | 
						|
	void *psrc = (void *)rounddown((unsigned long)src, PAGE_SIZE);
 | 
						|
 | 
						|
	if ((unsigned long)src < PAGE_SIZE || size <= 0)
 | 
						|
		return false;
 | 
						|
	if (os_mincore(psrc, size + src - psrc) <= 0)
 | 
						|
		return false;
 | 
						|
	return true;
 | 
						|
}
 |