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: * udf_fs_i.h 03: * 04: * This file is intended for the Linux kernel/module. 05: * 06: * COPYRIGHT 07: * This file is distributed under the terms of the GNU General Public 08: * License (GPL). Copies of the GPL can be obtained from: 09: * ftp://prep.ai.mit.edu/pub/gnu/GPL 10: * Each contributing author retains all rights to their own work. 11: */ 12: #ifndef _UDF_FS_I_H 13: #define _UDF_FS_I_H 1 14: 15: /* exported IOCTLs, we have 'l', 0x40-0x7f */ 16: #define UDF_GETEASIZE _IOR('l', 0x40, int) 17: #define UDF_GETEABLOCK _IOR('l', 0x41, void *) 18: #define UDF_GETVOLIDENT _IOR('l', 0x42, void *) 19: #define UDF_RELOCATE_BLOCKS _IOWR('l', 0x43, long) 20: 21: #endif /* _UDF_FS_I_H */ 22: