xref: /linux/include/uapi/linux/reiserfs_fs.h (revision 498495dba268b20e8eadd7fe93c140c68b6cc9d2)
1*6f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells /*
3607ca46eSDavid Howells  * Copyright 1996, 1997, 1998 Hans Reiser, see reiserfs/README for licensing and copyright details
4607ca46eSDavid Howells  */
5607ca46eSDavid Howells #ifndef _LINUX_REISER_FS_H
6607ca46eSDavid Howells #define _LINUX_REISER_FS_H
7607ca46eSDavid Howells 
8607ca46eSDavid Howells #include <linux/types.h>
9607ca46eSDavid Howells #include <linux/magic.h>
10607ca46eSDavid Howells 
11607ca46eSDavid Howells /*
12607ca46eSDavid Howells  *  include/linux/reiser_fs.h
13607ca46eSDavid Howells  *
14607ca46eSDavid Howells  *  Reiser File System constants and structures
15607ca46eSDavid Howells  *
16607ca46eSDavid Howells  */
17607ca46eSDavid Howells 
18607ca46eSDavid Howells /* ioctl's command */
19607ca46eSDavid Howells #define REISERFS_IOC_UNPACK		_IOW(0xCD,1,long)
20607ca46eSDavid Howells /* define following flags to be the same as in ext2, so that chattr(1),
21607ca46eSDavid Howells    lsattr(1) will work with us. */
22607ca46eSDavid Howells #define REISERFS_IOC_GETFLAGS		FS_IOC_GETFLAGS
23607ca46eSDavid Howells #define REISERFS_IOC_SETFLAGS		FS_IOC_SETFLAGS
24607ca46eSDavid Howells #define REISERFS_IOC_GETVERSION		FS_IOC_GETVERSION
25607ca46eSDavid Howells #define REISERFS_IOC_SETVERSION		FS_IOC_SETVERSION
26607ca46eSDavid Howells 
27607ca46eSDavid Howells #endif				/* _LINUX_REISER_FS_H */
28