xref: /OK3568_Linux_fs/kernel/fs/ocfs2/ioctl.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * ioctl.h
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * Function prototypes
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * Copyright (C) 2006 Herbert Poetzl
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  */
10*4882a593Smuzhiyun 
11*4882a593Smuzhiyun #ifndef OCFS2_IOCTL_PROTO_H
12*4882a593Smuzhiyun #define OCFS2_IOCTL_PROTO_H
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun long ocfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg);
15*4882a593Smuzhiyun long ocfs2_compat_ioctl(struct file *file, unsigned cmd, unsigned long arg);
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #endif /* OCFS2_IOCTL_PROTO_H */
18