xattr.h 494 B

123456789101112131415161718
  1. /*
  2. File: linux/xattr.h
  3. Extended attributes handling.
  4. Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
  5. Copyright (c) 2001-2002 Silicon Graphics, Inc. All Rights Reserved.
  6. Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
  7. */
  8. #ifndef _LINUX_XATTR_H
  9. #define _LINUX_XATTR_H
  10. #define XATTR_CREATE 0x1 /* set value, fail if attr already exists */
  11. #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
  12. #endif /* _LINUX_XATTR_H */