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