qemu-patch-raspberry4/include/qemu/xattr.h
Stefan Weil 5bb8590d37 include: Fix typos found by codespell
Add also a missing parenthesis in a comment.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Acked-by: Alistair Francis <alistair.francis@xilinx.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
2017-01-24 23:26:52 +03:00

30 lines
582 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