reiserfs_fs.h 907 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright 1996, 1997, 1998 Hans Reiser, see reiserfs/README for licensing and copyright details
  3. */
  4. /* this file has an amazingly stupid
  5. name, yura please fix it to be
  6. reiserfs.h, and merge all the rest
  7. of our .h files that are in this
  8. directory into it. */
  9. #ifndef _LINUX_REISER_FS_H
  10. #define _LINUX_REISER_FS_H
  11. #include <linux/types.h>
  12. #include <linux/magic.h>
  13. /*
  14. * include/linux/reiser_fs.h
  15. *
  16. * Reiser File System constants and structures
  17. *
  18. */
  19. /* ioctl's command */
  20. #define REISERFS_IOC_UNPACK _IOW(0xCD,1,long)
  21. /* define following flags to be the same as in ext2, so that chattr(1),
  22. lsattr(1) will work with us. */
  23. #define REISERFS_IOC_GETFLAGS FS_IOC_GETFLAGS
  24. #define REISERFS_IOC_SETFLAGS FS_IOC_SETFLAGS
  25. #define REISERFS_IOC_GETVERSION FS_IOC_GETVERSION
  26. #define REISERFS_IOC_SETVERSION FS_IOC_SETVERSION
  27. #endif /* _LINUX_REISER_FS_H */