reiserfs_fs.h 775 B

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