 3829640049
			
		
	
	
		3829640049
		
	
	
	
	
		
			
			Run some memfd-related checks before registering hostmem-memfd & various properties. This will help libvirt to figure out what the host is supposed to be capable of. qemu_memfd_check() is changed to a less optimized version, since it is used with various flags, it no longer caches the result. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20180906161415.8543-1-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef QEMU_MEMFD_H
 | |
| #define QEMU_MEMFD_H
 | |
| 
 | |
| 
 | |
| #ifndef F_LINUX_SPECIFIC_BASE
 | |
| #define F_LINUX_SPECIFIC_BASE 1024
 | |
| #endif
 | |
| 
 | |
| #ifndef F_ADD_SEALS
 | |
| #define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
 | |
| #define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
 | |
| 
 | |
| #define F_SEAL_SEAL     0x0001  /* prevent further seals from being set */
 | |
| #define F_SEAL_SHRINK   0x0002  /* prevent file from shrinking */
 | |
| #define F_SEAL_GROW     0x0004  /* prevent file from growing */
 | |
| #define F_SEAL_WRITE    0x0008  /* prevent writes */
 | |
| #endif
 | |
| 
 | |
| #ifndef MFD_CLOEXEC
 | |
| #define MFD_CLOEXEC 0x0001U
 | |
| #endif
 | |
| 
 | |
| #ifndef MFD_ALLOW_SEALING
 | |
| #define MFD_ALLOW_SEALING 0x0002U
 | |
| #endif
 | |
| 
 | |
| #ifndef MFD_HUGETLB
 | |
| #define MFD_HUGETLB 0x0004U
 | |
| #endif
 | |
| 
 | |
| #ifndef MFD_HUGE_SHIFT
 | |
| #define MFD_HUGE_SHIFT 26
 | |
| #endif
 | |
| 
 | |
| int qemu_memfd_create(const char *name, size_t size, bool hugetlb,
 | |
|                       uint64_t hugetlbsize, unsigned int seals, Error **errp);
 | |
| bool qemu_memfd_alloc_check(void);
 | |
| void *qemu_memfd_alloc(const char *name, size_t size, unsigned int seals,
 | |
|                        int *fd, Error **errp);
 | |
| void qemu_memfd_free(void *ptr, size_t size, int fd);
 | |
| bool qemu_memfd_check(unsigned int flags);
 | |
| 
 | |
| #endif /* QEMU_MEMFD_H */
 |