Whamcloud - gitweb
LU-9712 kernel: correct malformed ChangeLog
[fs/lustre-release.git] / lnet / include / lnet / lib-dlc.h
1 /*
2  * LGPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library.
18  *
19  * LGPL HEADER END
20  *
21  */
22 /*
23  * Copyright (c) 2014, 2016, Intel Corporation.
24  */
25 /*
26  * Author: Amir Shehata <amir.shehata@intel.com>
27  */
28
29 #ifndef LNET_DLC_H
30 #define LNET_DLC_H
31
32 #include <libcfs/libcfs_ioctl.h>
33 #include <lnet/types.h>
34
35 #define MAX_NUM_SHOW_ENTRIES    32
36 #define LNET_MAX_STR_LEN        128
37 #define LNET_MAX_SHOW_NUM_CPT   128
38 #define LNET_UNDEFINED_HOPS     ((__u32) -1)
39
40 /*
41  * To allow for future enhancements to extend the tunables
42  * add a hdr to this structure, so that the version can be set
43  * and checked for backwards compatibility. Newer versions of LNet
44  * can still work with older versions of lnetctl. The restriction is
45  * that the structure can be added to and not removed from in order
46  * to not invalidate older lnetctl utilities. Moreover, the order of
47  * fields must remain the same, and new fields appended to the structure
48  *
49  * That said all existing LND tunables will be added in this structure
50  * to avoid future changes.
51  */
52 struct lnet_ioctl_config_lnd_cmn_tunables {
53         __u32 lct_version;
54         __s32 lct_peer_timeout;
55         __s32 lct_peer_tx_credits;
56         __s32 lct_peer_rtr_credits;
57         __s32 lct_max_tx_credits;
58 };
59
60 struct lnet_ioctl_config_o2iblnd_tunables {
61         __u32 lnd_version;
62         __u32 lnd_peercredits_hiw;
63         __u32 lnd_map_on_demand;
64         __u32 lnd_concurrent_sends;
65         __u32 lnd_fmr_pool_size;
66         __u32 lnd_fmr_flush_trigger;
67         __u32 lnd_fmr_cache;
68         __u16 lnd_conns_per_peer;
69         __u16 lnd_ntx;
70 };
71
72 struct lnet_lnd_tunables {
73         union {
74                 struct lnet_ioctl_config_o2iblnd_tunables lnd_o2ib;
75         } lnd_tun_u;
76 };
77
78 struct lnet_ioctl_config_lnd_tunables {
79         struct lnet_ioctl_config_lnd_cmn_tunables lt_cmn;
80         struct lnet_lnd_tunables lt_tun;
81 };
82
83 struct lnet_ioctl_net_config {
84         char ni_interfaces[LNET_NUM_INTERFACES][LNET_MAX_STR_LEN];
85         __u32 ni_status;
86         __u32 ni_cpts[LNET_MAX_SHOW_NUM_CPT];
87         char cfg_bulk[0];
88 };
89
90 #define LNET_TINY_BUF_IDX       0
91 #define LNET_SMALL_BUF_IDX      1
92 #define LNET_LARGE_BUF_IDX      2
93
94 /* # different router buffer pools */
95 #define LNET_NRBPOOLS           (LNET_LARGE_BUF_IDX + 1)
96
97 struct lnet_ioctl_pool_cfg {
98         struct {
99                 __u32 pl_npages;
100                 __u32 pl_nbuffers;
101                 __u32 pl_credits;
102                 __u32 pl_mincredits;
103         } pl_pools[LNET_NRBPOOLS];
104         __u32 pl_routing;
105 };
106
107 struct lnet_ioctl_ping_data {
108         struct libcfs_ioctl_hdr ping_hdr;
109
110         __u32 op_param;
111         __u32 ping_count;
112         __u32 ping_flags;
113         bool mr_info;
114         lnet_process_id_t ping_id;
115         lnet_process_id_t __user *ping_buf;
116 };
117
118 struct lnet_ioctl_config_data {
119         struct libcfs_ioctl_hdr cfg_hdr;
120
121         __u32 cfg_net;
122         __u32 cfg_count;
123         __u64 cfg_nid;
124         __u32 cfg_ncpts;
125
126         union {
127                 struct {
128                         __u32 rtr_hop;
129                         __u32 rtr_priority;
130                         __u32 rtr_flags;
131                 } cfg_route;
132                 struct {
133                         char net_intf[LNET_MAX_STR_LEN];
134                         __s32 net_peer_timeout;
135                         __s32 net_peer_tx_credits;
136                         __s32 net_peer_rtr_credits;
137                         __s32 net_max_tx_credits;
138                         __u32 net_cksum_algo;
139                         __u32 net_interface_count;
140                 } cfg_net;
141                 struct {
142                         __u32 buf_enable;
143                         __s32 buf_tiny;
144                         __s32 buf_small;
145                         __s32 buf_large;
146                 } cfg_buffers;
147         } cfg_config_u;
148
149         char cfg_bulk[0];
150 };
151
152 struct lnet_ioctl_comm_count {
153         __u32 ico_get_count;
154         __u32 ico_put_count;
155         __u32 ico_reply_count;
156         __u32 ico_ack_count;
157         __u32 ico_hello_count;
158 };
159
160 struct lnet_ioctl_element_stats {
161         __u32 iel_send_count;
162         __u32 iel_recv_count;
163         __u32 iel_drop_count;
164 };
165
166 struct lnet_ioctl_element_msg_stats {
167         struct libcfs_ioctl_hdr im_hdr;
168         __u32 im_idx;
169         struct lnet_ioctl_comm_count im_send_stats;
170         struct lnet_ioctl_comm_count im_recv_stats;
171         struct lnet_ioctl_comm_count im_drop_stats;
172 };
173
174 /*
175  * lnet_ioctl_config_ni
176  *  This structure describes an NI configuration. There are multiple components
177  *  when configuring an NI: Net, Interfaces, CPT list and LND tunables
178  *  A network is passed as a string to the DLC and translated using
179  *  libcfs_str2net()
180  *  An interface is the name of the system configured interface
181  *  (ex eth0, ib1)
182  *  CPT is the list of CPTS LND tunables are passed in the lic_bulk area
183  */
184 struct lnet_ioctl_config_ni {
185         struct libcfs_ioctl_hdr lic_cfg_hdr;
186         lnet_nid_t              lic_nid;
187         char                    lic_ni_intf[LNET_NUM_INTERFACES][LNET_MAX_STR_LEN];
188         char                    lic_legacy_ip2nets[LNET_MAX_STR_LEN];
189         __u32                   lic_cpts[LNET_MAX_SHOW_NUM_CPT];
190         __u32                   lic_ncpts;
191         __u32                   lic_status;
192         __u32                   lic_tcp_bonding;
193         __u32                   lic_idx;
194         __s32                   lic_dev_cpt;
195         char                    pad[4];
196         char                    lic_bulk[0];
197 };
198
199 struct lnet_peer_ni_credit_info {
200         char cr_aliveness[LNET_MAX_STR_LEN];
201         __u32 cr_refcount;
202         __s32 cr_ni_peer_tx_credits;
203         __s32 cr_peer_tx_credits;
204         __s32 cr_peer_min_tx_credits;
205         __u32 cr_peer_tx_qnob;
206         __s32 cr_peer_rtr_credits;
207         __s32 cr_peer_min_rtr_credits;
208         __u32 cr_ncpt;
209 };
210
211 struct lnet_ioctl_peer {
212         struct libcfs_ioctl_hdr pr_hdr;
213         __u32 pr_count;
214         __u32 pr_pad;
215         lnet_nid_t pr_nid;
216
217         union {
218                 struct lnet_peer_ni_credit_info  pr_peer_credits;
219         } pr_lnd_u;
220 };
221
222 struct lnet_ioctl_peer_cfg {
223         struct libcfs_ioctl_hdr prcfg_hdr;
224         lnet_nid_t prcfg_prim_nid;
225         lnet_nid_t prcfg_cfg_nid;
226         __u32 prcfg_count;
227         bool prcfg_mr;
228         __u32 prcfg_state;
229         __u32 prcfg_size;
230         void __user *prcfg_bulk;
231 };
232
233 struct lnet_ioctl_numa_range {
234         struct libcfs_ioctl_hdr nr_hdr;
235         __u32 nr_range;
236 };
237
238 struct lnet_ioctl_lnet_stats {
239         struct libcfs_ioctl_hdr st_hdr;
240         struct lnet_counters st_cntrs;
241 };
242
243 #endif /* LNET_DLC_H */