Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. NB: If this commit breaks compilation for your out-of-tree patchseries or fork, then you need to make sure you add #include "qemu/osdep.h" to any new .c files that you have. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Eric Blake <eblake@redhat.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			581 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			581 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Host xattr.h abstraction
 | 
						|
 *
 | 
						|
 * Copyright 2011 Red Hat Inc. and/or its affiliates
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *  Avi Kivity <avi@redhat.com>
 | 
						|
 *
 | 
						|
 * This work is licensed under the terms of the GNU GPL, version 2, or any
 | 
						|
 * later version.  See the COPYING file in the top-level directory.
 | 
						|
 *
 | 
						|
 */
 | 
						|
#ifndef QEMU_XATTR_H
 | 
						|
#define QEMU_XATTR_H
 | 
						|
 | 
						|
/*
 | 
						|
 * Modern distributions (e.g. Fedora 15, have no libattr.so, place attr.h
 | 
						|
 * in /usr/include/sys, and don't have ENOATTR.
 | 
						|
 */
 | 
						|
 | 
						|
 | 
						|
#ifdef CONFIG_LIBATTR
 | 
						|
#  include <attr/xattr.h>
 | 
						|
#else
 | 
						|
#  define ENOATTR ENODATA
 | 
						|
#  include <sys/xattr.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |