2006-07-04 04:27:12 +04:00
|
|
|
/*
|
|
|
|
* ioctl.h
|
|
|
|
*
|
|
|
|
* Function prototypes
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Herbert Poetzl
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-03-02 08:59:42 +03:00
|
|
|
#ifndef OCFS2_IOCTL_PROTO_H
|
|
|
|
#define OCFS2_IOCTL_PROTO_H
|
2006-07-04 04:27:12 +04:00
|
|
|
|
2008-01-27 05:17:17 +03:00
|
|
|
long ocfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg);
|
2007-03-10 02:56:28 +03:00
|
|
|
long ocfs2_compat_ioctl(struct file *file, unsigned cmd, unsigned long arg);
|
2006-07-04 04:27:12 +04:00
|
|
|
|
2010-03-02 08:59:42 +03:00
|
|
|
#endif /* OCFS2_IOCTL_PROTO_H */
|