Home | History | Annotate | Download | only in linux
      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 
      7 #include <linux/types.h>
      8 #include <linux/magic.h>
      9 
     10 /*
     11  *  include/linux/reiser_fs.h
     12  *
     13  *  Reiser File System constants and structures
     14  *
     15  */
     16 
     17 /* ioctl's command */
     18 #define REISERFS_IOC_UNPACK		_IOW(0xCD,1,long)
     19 /* define following flags to be the same as in ext2, so that chattr(1),
     20    lsattr(1) will work with us. */
     21 #define REISERFS_IOC_GETFLAGS		FS_IOC_GETFLAGS
     22 #define REISERFS_IOC_SETFLAGS		FS_IOC_SETFLAGS
     23 #define REISERFS_IOC_GETVERSION		FS_IOC_GETVERSION
     24 #define REISERFS_IOC_SETVERSION		FS_IOC_SETVERSION
     25 
     26 #endif				/* _LINUX_REISER_FS_H */
     27