June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: /* 02: * Copyright 1996, 1997, 1998 Hans Reiser, see reiserfs/README for licensing and copyright details 03: */ 04: 05: /* this file has an amazingly stupid 06: name, yura please fix it to be 07: reiserfs.h, and merge all the rest 08: of our .h files that are in this 09: directory into it. */ 10: 11: #ifndef _LINUX_REISER_FS_H 12: #define _LINUX_REISER_FS_H 13: 14: #include <linux/types.h> 15: #include <linux/magic.h> 16: 17: 18: /* 19: * include/linux/reiser_fs.h 20: * 21: * Reiser File System constants and structures 22: * 23: */ 24: 25: /* ioctl's command */ 26: #define REISERFS_IOC_UNPACK _IOW(0xCD,1,long) 27: /* define following flags to be the same as in ext2, so that chattr(1), 28: lsattr(1) will work with us. */ 29: #define REISERFS_IOC_GETFLAGS FS_IOC_GETFLAGS 30: #define REISERFS_IOC_SETFLAGS FS_IOC_SETFLAGS 31: #define REISERFS_IOC_GETVERSION FS_IOC_GETVERSION 32: #define REISERFS_IOC_SETVERSION FS_IOC_SETVERSION 33: 34: 35: #endif /* _LINUX_REISER_FS_H */ 36: