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