]> git.pld-linux.org Git - packages/gfs.git/blob - gfs_ioctl.h
fad0a58f6f39499661704f0d5af3a8c0 gfs_ioctl.h
[packages/gfs.git] / gfs_ioctl.h
1 /******************************************************************************
2 *******************************************************************************
3 **
4 **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
5 **  Copyright (C) 2004 Red Hat, Inc.  All rights reserved.
6 **
7 **  This copyrighted material is made available to anyone wishing to use,
8 **  modify, copy, or redistribute it subject to the terms and conditions
9 **  of the GNU General Public License v.2.
10 **
11 *******************************************************************************
12 ******************************************************************************/
13
14 #ifndef __GFS_IOCTL_DOT_H__
15 #define __GFS_IOCTL_DOT_H__
16
17 #define _GFSC_(x)               (('G' << 8) | (x))
18
19 /* Ioctls implemented */
20
21 #define GFS_IOCTL_IDENTIFY      _GFSC_(35)
22 #define GFS_IOCTL_SUPER         _GFSC_(45)
23
24 struct gfs_ioctl {
25         unsigned int gi_argc;
26         char **gi_argv;
27
28         char __user *gi_data;
29         unsigned int gi_size;
30         uint64_t gi_offset;
31 };
32
33 #endif /* ___GFS_IOCTL_DOT_H__ */
This page took 0.103618 seconds and 3 git commands to generate.