reiserfs_fs.h 712 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright 1996, 1997, 1998 Hans Reiser, see reiserfs/README for licensing and copyright details
  3. */
  4. #ifndef _LINUX_REISER_FS_H
  5. #define _LINUX_REISER_FS_H
  6. #include <linux/types.h>
  7. #include <linux/magic.h>
  8. /*
  9. * include/linux/reiser_fs.h
  10. *
  11. * Reiser File System constants and structures
  12. *
  13. */
  14. /* ioctl's command */
  15. #define REISERFS_IOC_UNPACK _IOW(0xCD,1,long)
  16. /* define following flags to be the same as in ext2, so that chattr(1),
  17. lsattr(1) will work with us. */
  18. #define REISERFS_IOC_GETFLAGS FS_IOC_GETFLAGS
  19. #define REISERFS_IOC_SETFLAGS FS_IOC_SETFLAGS
  20. #define REISERFS_IOC_GETVERSION FS_IOC_GETVERSION
  21. #define REISERFS_IOC_SETVERSION FS_IOC_SETVERSION
  22. #endif /* _LINUX_REISER_FS_H */