1607ca46eSDavid Howells /* 2607ca46eSDavid Howells * udf_fs_i.h 3607ca46eSDavid Howells * 4607ca46eSDavid Howells * This file is intended for the Linux kernel/module. 5607ca46eSDavid Howells * 6607ca46eSDavid Howells * COPYRIGHT 7607ca46eSDavid Howells * This file is distributed under the terms of the GNU General Public 8607ca46eSDavid Howells * License (GPL). Copies of the GPL can be obtained from: 9607ca46eSDavid Howells * ftp://prep.ai.mit.edu/pub/gnu/GPL 10607ca46eSDavid Howells * Each contributing author retains all rights to their own work. 11607ca46eSDavid Howells */ 12607ca46eSDavid Howells #ifndef _UDF_FS_I_H 13607ca46eSDavid Howells #define _UDF_FS_I_H 1 14607ca46eSDavid Howells 15607ca46eSDavid Howells /* exported IOCTLs, we have 'l', 0x40-0x7f */ 16607ca46eSDavid Howells #define UDF_GETEASIZE _IOR('l', 0x40, int) 17607ca46eSDavid Howells #define UDF_GETEABLOCK _IOR('l', 0x41, void *) 18607ca46eSDavid Howells #define UDF_GETVOLIDENT _IOR('l', 0x42, void *) 19607ca46eSDavid Howells #define UDF_RELOCATE_BLOCKS _IOWR('l', 0x43, long) 20607ca46eSDavid Howells 21607ca46eSDavid Howells #endif /* _UDF_FS_I_H */ 22