Whamcloud - gitweb
LU-13274 uapi: make lnet UAPI headers C99 compliant
[fs/lustre-release.git] / libcfs / include / libcfs / util / ioctl.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2014, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * libcfs/include/libcfs/util/ioctl.h
33  *
34  * Utility functions for calling ioctls.
35  *
36  */
37 #ifndef _LIBCFS_IOCTL_H_
38 #define _LIBCFS_IOCTL_H_
39
40 #include <stdbool.h>
41 #include <linux/types.h>
42
43 /* Sparse annotation. */
44 #define __user
45
46 #include <linux/lnet/libcfs_ioctl.h>
47
48 #define LIBCFS_IOC_INIT(data)                                   \
49 do {                                                            \
50         memset(&(data), 0, sizeof(data));                       \
51         (data).ioc_hdr.ioc_version = LIBCFS_IOCTL_VERSION;      \
52         (data).ioc_hdr.ioc_len = sizeof(data);                  \
53 } while (0)
54
55 #define LIBCFS_IOC_INIT_V2(data, hdr)                   \
56 do {                                                    \
57         memset(&(data), 0, sizeof(data));               \
58         (data).hdr.ioc_version = LIBCFS_IOCTL_VERSION2; \
59         (data).hdr.ioc_len = sizeof(data);              \
60 } while (0)
61
62 /* FIXME - rename these to libcfs_ */
63 int libcfs_ioctl_pack(struct libcfs_ioctl_data *data, char **pbuf, int max);
64 void libcfs_ioctl_unpack(struct libcfs_ioctl_data *data, char *pbuf);
65 int register_ioc_dev(int dev_id, const char *dev_name);
66 void unregister_ioc_dev(int dev_id);
67 int l_ioctl(int dev_id, unsigned int opc, void *buf);
68 #endif