- Guard Linux only headers.
 - Add qemu/statfs.h header to abstract over the which
   headers are needed for struct statfs
 - Define `ENOATTR` only if not only defined
   (it's defined in system headers on Darwin).
Signed-off-by: Keno Fischer <keno@juliacomputing.com>
[Michael Roitzsch: - Rebase for NixOS]
Signed-off-by: Michael Roitzsch <reactorcontrol@icloud.com>
While it might at first appear that fsdev/virtfs-proxy-header.c would
need similar adjustment for darwin as file-op-9p here, a later patch in
this series disables virtfs-proxy-helper for non-Linux. Allowing
virtfs-proxy-helper on darwin could potentially be an additional
optimization later.
[Will Cohen: - Fix headers for Alpine
             - Integrate statfs.h back into file-op-9p.h
             - Remove superfluous header guards from file-opt-9p
             - Add note about virtfs-proxy-helper being disabled
               on non-Linux for this patch series]
Signed-off-by: Will Cohen <wwcohen@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
Message-Id: <20220227223522.91937-2-wwcohen@gmail.com>
Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
		
	
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			617 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			617 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
 | 
						|
#  if !defined(ENOATTR)
 | 
						|
#    define ENOATTR ENODATA
 | 
						|
#  endif
 | 
						|
#  include <sys/xattr.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |