2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1996, 1997, 1998 Hans Reiser, see reiserfs/README for licensing and copyright details
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_REISER_FS_H
|
|
|
|
#define _LINUX_REISER_FS_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
2006-09-24 15:13:19 +00:00
|
|
|
#include <linux/magic.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* include/linux/reiser_fs.h
|
|
|
|
*
|
|
|
|
* Reiser File System constants and structures
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-02-03 14:10:03 +00:00
|
|
|
/* ioctl's command */
|
|
|
|
#define REISERFS_IOC_UNPACK _IOW(0xCD,1,long)
|
|
|
|
/* define following flags to be the same as in ext2, so that chattr(1),
|
|
|
|
lsattr(1) will work with us. */
|
|
|
|
#define REISERFS_IOC_GETFLAGS FS_IOC_GETFLAGS
|
|
|
|
#define REISERFS_IOC_SETFLAGS FS_IOC_SETFLAGS
|
|
|
|
#define REISERFS_IOC_GETVERSION FS_IOC_GETVERSION
|
|
|
|
#define REISERFS_IOC_SETVERSION FS_IOC_SETVERSION
|
|
|
|
|
2005-07-13 03:21:28 +00:00
|
|
|
#endif /* _LINUX_REISER_FS_H */
|