Whamcloud - gitweb
ebe6065d778554fcdbb77632a8772f0657786208
[fs/lustre-release.git] / lnet / include / lnet / lib-types.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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lnet/include/lnet/lib-types.h
32  *
33  * Types used by the library side routines that do not need to be
34  * exposed to the user application
35  */
36
37 #ifndef __LNET_LIB_TYPES_H__
38 #define __LNET_LIB_TYPES_H__
39
40 #ifndef __KERNEL__
41 # error This include is only for kernel use.
42 #endif
43
44 #include <linux/kthread.h>
45 #include <linux/uio.h>
46 #include <linux/semaphore.h>
47 #include <linux/types.h>
48 #include <linux/kref.h>
49 #include <net/genetlink.h>
50
51 #include <uapi/linux/lnet/lnet-nl.h>
52 #include <uapi/linux/lnet/lnet-dlc.h>
53 #include <uapi/linux/lnet/lnetctl.h>
54 #include <uapi/linux/lnet/nidstr.h>
55
56 /* Max payload size */
57 #define LNET_MAX_PAYLOAD        LNET_MTU
58
59 /** limit on the number of fragments in discontiguous MDs */
60 #define LNET_MAX_IOV    256
61
62 /*
63  * This is the maximum health value.
64  * All local and peer NIs created have their health default to this value.
65  */
66 #define LNET_MAX_HEALTH_VALUE 1000
67 #define LNET_MAX_SELECTION_PRIORITY UINT_MAX
68
69 /* forward refs */
70 struct lnet_libmd;
71
72 enum lnet_msg_hstatus {
73         LNET_MSG_STATUS_OK = 0,
74         LNET_MSG_STATUS_LOCAL_INTERRUPT,
75         LNET_MSG_STATUS_LOCAL_DROPPED,
76         LNET_MSG_STATUS_LOCAL_ABORTED,
77         LNET_MSG_STATUS_LOCAL_NO_ROUTE,
78         LNET_MSG_STATUS_LOCAL_ERROR,
79         LNET_MSG_STATUS_LOCAL_TIMEOUT,
80         LNET_MSG_STATUS_REMOTE_ERROR,
81         LNET_MSG_STATUS_REMOTE_DROPPED,
82         LNET_MSG_STATUS_REMOTE_TIMEOUT,
83         LNET_MSG_STATUS_NETWORK_TIMEOUT,
84         LNET_MSG_STATUS_END,
85 };
86
87 struct lnet_rsp_tracker {
88         /* chain on the waiting list */
89         struct list_head rspt_on_list;
90         /* cpt to lock */
91         int rspt_cpt;
92         /* nid of next hop */
93         lnet_nid_t rspt_next_hop_nid;
94         /* deadline of the REPLY/ACK */
95         ktime_t rspt_deadline;
96         /* parent MD */
97         struct lnet_handle_md rspt_mdh;
98 };
99
100 struct lnet_msg {
101         struct list_head        msg_activelist;
102         struct list_head        msg_list;       /* Q for credits/MD */
103
104         struct lnet_process_id  msg_target;
105         /* Primary NID of the source. */
106         lnet_nid_t              msg_initiator;
107         /* where is it from, it's only for building event */
108         lnet_nid_t              msg_from;
109         __u32                   msg_type;
110
111         /*
112          * hold parameters in case message is with held due
113          * to discovery
114          */
115         lnet_nid_t              msg_src_nid_param;
116         lnet_nid_t              msg_rtr_nid_param;
117
118         /*
119          * Deadline for the message after which it will be finalized if it
120          * has not completed.
121          */
122         ktime_t                 msg_deadline;
123
124         /* The message health status. */
125         enum lnet_msg_hstatus   msg_health_status;
126         /* This is a recovery message */
127         bool                    msg_recovery;
128         /* force an RDMA even if the message size is < 4K */
129         bool                    msg_rdma_force;
130         /* the number of times a transmission has been retried */
131         int                     msg_retry_count;
132         /* flag to indicate that we do not want to resend this message */
133         bool                    msg_no_resend;
134
135         /* committed for sending */
136         unsigned int            msg_tx_committed:1;
137         /* CPT # this message committed for sending */
138         unsigned int            msg_tx_cpt:15;
139         /* committed for receiving */
140         unsigned int            msg_rx_committed:1;
141         /* CPT # this message committed for receiving */
142         unsigned int            msg_rx_cpt:15;
143         /* queued for tx credit */
144         unsigned int            msg_tx_delayed:1;
145         /* queued for RX buffer */
146         unsigned int            msg_rx_delayed:1;
147         /* ready for pending on RX delay list */
148         unsigned int            msg_rx_ready_delay:1;
149
150         unsigned int          msg_vmflush:1;      /* VM trying to free memory */
151         unsigned int          msg_target_is_router:1; /* sending to a router */
152         unsigned int          msg_routing:1;      /* being forwarded */
153         unsigned int          msg_ack:1;          /* ack on finalize (PUT) */
154         unsigned int          msg_sending:1;      /* outgoing message */
155         unsigned int          msg_receiving:1;    /* being received */
156         unsigned int          msg_txcredit:1;     /* taken an NI send credit */
157         unsigned int          msg_peertxcredit:1; /* taken a peer send credit */
158         unsigned int          msg_rtrcredit:1;    /* taken a globel router credit */
159         unsigned int          msg_peerrtrcredit:1; /* taken a peer router credit */
160         unsigned int          msg_onactivelist:1; /* on the activelist */
161         unsigned int          msg_rdma_get:1;
162
163         struct lnet_peer_ni  *msg_txpeer;         /* peer I'm sending to */
164         struct lnet_peer_ni  *msg_rxpeer;         /* peer I received from */
165
166         void                 *msg_private;
167         struct lnet_libmd    *msg_md;
168         /* the NI the message was sent or received over */
169         struct lnet_ni       *msg_txni;
170         struct lnet_ni       *msg_rxni;
171
172         unsigned int          msg_len;
173         unsigned int          msg_wanted;
174         unsigned int          msg_offset;
175         unsigned int          msg_niov;
176         struct bio_vec       *msg_kiov;
177
178         struct lnet_event       msg_ev;
179         struct lnet_hdr         msg_hdr;
180 };
181
182 struct lnet_libhandle {
183         struct list_head        lh_hash_chain;
184         __u64                   lh_cookie;
185 };
186
187 #define lh_entry(ptr, type, member) \
188         ((type *)((char *)(ptr)-(char *)(&((type *)0)->member)))
189
190 struct lnet_me {
191         struct list_head        me_list;
192         int                     me_cpt;
193         struct lnet_process_id  me_match_id;
194         unsigned int            me_portal;
195         unsigned int            me_pos;         /* hash offset in mt_hash */
196         __u64                   me_match_bits;
197         __u64                   me_ignore_bits;
198         enum lnet_unlink        me_unlink;
199         struct lnet_libmd      *me_md;
200 };
201
202 struct lnet_libmd {
203         struct list_head         md_list;
204         struct lnet_libhandle    md_lh;
205         struct lnet_me          *md_me;
206         char                    *md_start;
207         unsigned int             md_offset;
208         unsigned int             md_length;
209         unsigned int             md_max_size;
210         int                      md_threshold;
211         int                      md_refcount;
212         unsigned int             md_options;
213         unsigned int             md_flags;
214         unsigned int             md_niov;       /* # frags at end of struct */
215         void                    *md_user_ptr;
216         struct lnet_rsp_tracker *md_rspt_ptr;
217         lnet_handler_t           md_handler;
218         struct lnet_handle_md    md_bulk_handle;
219         struct bio_vec           md_kiov[LNET_MAX_IOV];
220 };
221
222 #define LNET_MD_FLAG_ZOMBIE      BIT(0)
223 #define LNET_MD_FLAG_AUTO_UNLINK BIT(1)
224 #define LNET_MD_FLAG_ABORTED     BIT(2)
225 /* LNET_MD_FLAG_HANDLING is set when a non-unlink event handler
226  * is being called for an event relating to the md.
227  * It ensures only one such handler runs at a time.
228  * The final "unlink" event is only called once the
229  * md_refcount has reached zero, and this flag has been cleared,
230  * ensuring that it doesn't race with any other event handler
231  * call.
232  */
233 #define LNET_MD_FLAG_HANDLING    BIT(3)
234 #define LNET_MD_FLAG_DISCARD     BIT(4)
235
236 struct lnet_test_peer {
237         /* info about peers we are trying to fail */
238         struct list_head        tp_list;        /* ln_test_peers */
239         lnet_nid_t              tp_nid;         /* matching nid */
240         unsigned int            tp_threshold;   /* # failures to simulate */
241 };
242
243 #define LNET_COOKIE_TYPE_MD    1
244 #define LNET_COOKIE_TYPE_ME    2
245 #define LNET_COOKIE_TYPE_EQ    3
246 #define LNET_COOKIE_TYPE_BITS  2
247 #define LNET_COOKIE_MASK        ((1ULL << LNET_COOKIE_TYPE_BITS) - 1ULL)
248
249 struct netstrfns {
250         u32     nf_type;
251         char    *nf_name;
252         char    *nf_modname;
253         void    (*nf_addr2str)(u32 addr, char *str, size_t size);
254         int     (*nf_str2addr)(const char *str, int nob, u32 *addr);
255         int     (*nf_parse_addrlist)(char *str, int len,
256                                      struct list_head *list);
257         int     (*nf_print_addrlist)(char *buffer, int count,
258                                      struct list_head *list);
259         int     (*nf_match_addr)(u32 addr, struct list_head *list);
260         int     (*nf_min_max)(struct list_head *nidlist, u32 *min_nid,
261                               u32 *max_nid);
262 };
263
264 struct lnet_ni;                                  /* forward ref */
265 struct socket;
266
267 struct lnet_lnd {
268         /* fields initialized by the LND */
269         __u32                   lnd_type;
270
271         int  (*lnd_startup)(struct lnet_ni *ni);
272         void (*lnd_shutdown)(struct lnet_ni *ni);
273         int  (*lnd_ctl)(struct lnet_ni *ni, unsigned int cmd, void *arg);
274
275         /* In data movement APIs below, payload buffers are described as a set
276          * of 'niov' fragments which are in pages.
277          * The LND may NOT overwrite these fragment descriptors.
278          * An 'offset' and may specify a byte offset within the set of
279          * fragments to start from
280          */
281
282         /* Start sending a preformatted message.  'private' is NULL for PUT and
283          * GET messages; otherwise this is a response to an incoming message
284          * and 'private' is the 'private' passed to lnet_parse().  Return
285          * non-zero for immediate failure, otherwise complete later with
286          * lnet_finalize() */
287         int (*lnd_send)(struct lnet_ni *ni, void *private,
288                         struct lnet_msg *msg);
289
290         /* Start receiving 'mlen' bytes of payload data, skipping the following
291          * 'rlen' - 'mlen' bytes. 'private' is the 'private' passed to
292          * lnet_parse().  Return non-zero for immedaite failure, otherwise
293          * complete later with lnet_finalize().  This also gives back a receive
294          * credit if the LND does flow control. */
295         int (*lnd_recv)(struct lnet_ni *ni, void *private, struct lnet_msg *msg,
296                         int delayed, unsigned int niov,
297                         struct bio_vec *kiov,
298                         unsigned int offset, unsigned int mlen, unsigned int rlen);
299
300         /* lnet_parse() has had to delay processing of this message
301          * (e.g. waiting for a forwarding buffer or send credits).  Give the
302          * LND a chance to free urgently needed resources.  If called, return 0
303          * for success and do NOT give back a receive credit; that has to wait
304          * until lnd_recv() gets called.  On failure return < 0 and
305          * release resources; lnd_recv() will not be called. */
306         int (*lnd_eager_recv)(struct lnet_ni *ni, void *private,
307                               struct lnet_msg *msg, void **new_privatep);
308
309         /* notification of peer down */
310         void (*lnd_notify_peer_down)(lnet_nid_t peer);
311
312         /* accept a new connection */
313         int (*lnd_accept)(struct lnet_ni *ni, struct socket *sock);
314
315         /* get dma_dev priority */
316         unsigned int (*lnd_get_dev_prio)(struct lnet_ni *ni,
317                                          unsigned int dev_idx);
318 };
319
320 struct lnet_tx_queue {
321         int                     tq_credits;     /* # tx credits free */
322         int                     tq_credits_min; /* lowest it's been */
323         int                     tq_credits_max; /* total # tx credits */
324         struct list_head        tq_delayed;     /* delayed TXs */
325 };
326
327 enum lnet_net_state {
328         /* set when net block is allocated */
329         LNET_NET_STATE_INIT = 0,
330         /* set when NIs in net are started successfully */
331         LNET_NET_STATE_ACTIVE,
332         /* set if all NIs in net are in FAILED state */
333         LNET_NET_STATE_INACTIVE,
334         /* set when shutting down a NET */
335         LNET_NET_STATE_DELETING
336 };
337
338 enum lnet_ni_state {
339         /* initial state when NI is created */
340         LNET_NI_STATE_INIT = 0,
341         /* set when NI is brought up */
342         LNET_NI_STATE_ACTIVE,
343         /* set when NI is being shutdown */
344         LNET_NI_STATE_DELETING,
345 };
346
347 #define LNET_NI_RECOVERY_PENDING        BIT(0)
348 #define LNET_NI_RECOVERY_FAILED         BIT(1)
349
350 enum lnet_stats_type {
351         LNET_STATS_TYPE_SEND = 0,
352         LNET_STATS_TYPE_RECV,
353         LNET_STATS_TYPE_DROP
354 };
355
356 struct lnet_comm_count {
357         atomic_t co_get_count;
358         atomic_t co_put_count;
359         atomic_t co_reply_count;
360         atomic_t co_ack_count;
361         atomic_t co_hello_count;
362 };
363
364 struct lnet_element_stats {
365         struct lnet_comm_count el_send_stats;
366         struct lnet_comm_count el_recv_stats;
367         struct lnet_comm_count el_drop_stats;
368 };
369
370 struct lnet_health_local_stats {
371         atomic_t hlt_local_interrupt;
372         atomic_t hlt_local_dropped;
373         atomic_t hlt_local_aborted;
374         atomic_t hlt_local_no_route;
375         atomic_t hlt_local_timeout;
376         atomic_t hlt_local_error;
377 };
378
379 struct lnet_health_remote_stats {
380         atomic_t hlt_remote_dropped;
381         atomic_t hlt_remote_timeout;
382         atomic_t hlt_remote_error;
383         atomic_t hlt_network_timeout;
384 };
385
386 struct lnet_net {
387         /* chain on the ln_nets */
388         struct list_head        net_list;
389
390         /* net ID, which is composed of
391          * (net_type << 16) | net_num.
392          * net_type can be one of the enumerated types defined in
393          * lnet/include/lnet/nidstr.h */
394         __u32                   net_id;
395
396         /* round robin selection */
397         __u32                   net_seq;
398
399         /* total number of CPTs in the array */
400         __u32                   net_ncpts;
401
402         /* cumulative CPTs of all NIs in this net */
403         __u32                   *net_cpts;
404
405         /* relative net selection priority */
406         __u32                   net_sel_priority;
407
408         /* network tunables */
409         struct lnet_ioctl_config_lnd_cmn_tunables net_tunables;
410
411         /*
412          * boolean to indicate that the tunables have been set and
413          * shouldn't be reset
414          */
415         bool                    net_tunables_set;
416
417         /* procedural interface */
418         const struct lnet_lnd   *net_lnd;
419
420         /* list of NIs on this net */
421         struct list_head        net_ni_list;
422
423         /* list of NIs being added, but not started yet */
424         struct list_head        net_ni_added;
425
426         /* dying LND instances */
427         struct list_head        net_ni_zombie;
428
429         /* when I was last alive */
430         time64_t                net_last_alive;
431
432         /* protects access to net_last_alive */
433         spinlock_t              net_lock;
434
435         /* list of router nids preferred for this network */
436         struct list_head        net_rtr_pref_nids;
437 };
438
439 struct lnet_ni {
440         /* chain on the lnet_net structure */
441         struct list_head        ni_netlist;
442
443         /* chain on the recovery queue */
444         struct list_head        ni_recovery;
445
446         /* MD handle for recovery ping */
447         struct lnet_handle_md   ni_ping_mdh;
448
449         spinlock_t              ni_lock;
450
451         /* number of CPTs */
452         int                     ni_ncpts;
453
454         /* bond NI on some CPTs */
455         __u32                   *ni_cpts;
456
457         /* interface's NID */
458         lnet_nid_t              ni_nid;
459
460         /* instance-specific data */
461         void                    *ni_data;
462
463         /* per ni credits */
464         atomic_t                ni_tx_credits;
465
466         /* percpt TX queues */
467         struct lnet_tx_queue    **ni_tx_queues;
468
469         /* percpt reference count */
470         int                     **ni_refs;
471
472         /* pointer to parent network */
473         struct lnet_net         *ni_net;
474
475         /* my health status */
476         struct lnet_ni_status   *ni_status;
477
478         /* NI FSM. Protected by lnet_ni_lock() */
479         enum lnet_ni_state      ni_state;
480
481         /* Recovery state. Protected by lnet_ni_lock() */
482         __u32                   ni_recovery_state;
483
484         /* When to send the next recovery ping */
485         time64_t                ni_next_ping;
486         /* How many pings sent during current recovery period did not receive
487          * a reply. NB: reset whenever _any_ message arrives on this NI
488          */
489         unsigned int            ni_ping_count;
490
491         /* per NI LND tunables */
492         struct lnet_lnd_tunables ni_lnd_tunables;
493
494         /* lnd tunables set explicitly */
495         bool ni_lnd_tunables_set;
496
497         /* NI statistics */
498         struct lnet_element_stats ni_stats;
499         struct lnet_health_local_stats ni_hstats;
500
501         /* physical device CPT */
502         int                     ni_dev_cpt;
503
504         /* sequence number used to round robin over nis within a net */
505         __u32                   ni_seq;
506
507         /*
508          * health value
509          *      initialized to LNET_MAX_HEALTH_VALUE
510          * Value is decremented every time we fail to send a message over
511          * this NI because of a NI specific failure.
512          * Value is incremented if we successfully send a message.
513          */
514         atomic_t                ni_healthv;
515
516         /*
517          * Set to 1 by the LND when it receives an event telling it the device
518          * has gone into a fatal state. Set to 0 when the LND receives an
519          * even telling it the device is back online.
520          */
521         atomic_t                ni_fatal_error_on;
522
523         /* the relative selection priority of this NI */
524         __u32                   ni_sel_priority;
525
526         /*
527          * equivalent interface to use
528          */
529         char                    *ni_interface;
530         struct net              *ni_net_ns;     /* original net namespace */
531 };
532
533 #define LNET_PROTO_PING_MATCHBITS       0x8000000000000000LL
534
535 /*
536  * Descriptor of a ping info buffer: keep a separate indicator of the
537  * size and a reference count. The type is used both as a source and
538  * sink of data, so we need to keep some information outside of the
539  * area that may be overwritten by network data.
540  */
541 struct lnet_ping_buffer {
542         int                     pb_nnis;
543         atomic_t                pb_refcnt;
544         bool                    pb_needs_post;
545         struct lnet_ping_info   pb_info;
546 };
547
548 #define LNET_PING_BUFFER_SIZE(NNIDS) \
549         offsetof(struct lnet_ping_buffer, pb_info.pi_ni[NNIDS])
550 #define LNET_PING_BUFFER_LONI(PBUF)     ((PBUF)->pb_info.pi_ni[0].ns_nid)
551 #define LNET_PING_BUFFER_SEQNO(PBUF)    ((PBUF)->pb_info.pi_ni[0].ns_status)
552
553 #define LNET_PING_INFO_TO_BUFFER(PINFO) \
554         container_of((PINFO), struct lnet_ping_buffer, pb_info)
555
556 struct lnet_nid_list {
557         struct list_head nl_list;
558         lnet_nid_t nl_nid;
559 };
560
561 struct lnet_peer_ni {
562         /* chain on lpn_peer_nis */
563         struct list_head        lpni_peer_nis;
564         /* chain on remote peer list */
565         struct list_head        lpni_on_remote_peer_ni_list;
566         /* chain on recovery queue */
567         struct list_head        lpni_recovery;
568         /* chain on peer hash */
569         struct list_head        lpni_hashlist;
570         /* messages blocking for tx credits */
571         struct list_head        lpni_txq;
572         /* pointer to peer net I'm part of */
573         struct lnet_peer_net    *lpni_peer_net;
574         /* statistics kept on each peer NI */
575         struct lnet_element_stats lpni_stats;
576         struct lnet_health_remote_stats lpni_hstats;
577         /* spin lock protecting credits and lpni_txq */
578         spinlock_t              lpni_lock;
579         /* # tx credits available */
580         int                     lpni_txcredits;
581         /* low water mark */
582         int                     lpni_mintxcredits;
583         /*
584          * Each peer_ni in a gateway maintains its own credits. This
585          * allows more traffic to gateways that have multiple interfaces.
586          */
587         /* # router credits */
588         int                     lpni_rtrcredits;
589         /* low water mark */
590         int                     lpni_minrtrcredits;
591         /* bytes queued for sending */
592         long                    lpni_txqnob;
593         /* network peer is on */
594         struct lnet_net         *lpni_net;
595         /* peer's NID */
596         lnet_nid_t              lpni_nid;
597         /* # refs */
598         struct kref             lpni_kref;
599         /* health value for the peer */
600         atomic_t                lpni_healthv;
601         /* recovery ping mdh */
602         struct lnet_handle_md   lpni_recovery_ping_mdh;
603         /* When to send the next recovery ping */
604         time64_t                lpni_next_ping;
605         /* How many pings sent during current recovery period did not receive
606          * a reply. NB: reset whenever _any_ message arrives from this peer NI
607          */
608         unsigned int            lpni_ping_count;
609         /* CPT this peer attached on */
610         int                     lpni_cpt;
611         /* state flags -- protected by lpni_lock */
612         unsigned                lpni_state;
613         /* status of the peer NI as reported by the peer */
614         __u32                   lpni_ns_status;
615         /* sequence number used to round robin over peer nis within a net */
616         __u32                   lpni_seq;
617         /* sequence number used to round robin over gateways */
618         __u32                   lpni_gw_seq;
619         /* returned RC ping features. Protected with lpni_lock */
620         unsigned int            lpni_ping_feats;
621         /* time last message was received from the peer */
622         time64_t                lpni_last_alive;
623         /* preferred local nids: if only one, use lpni_pref.nid */
624         union lpni_pref {
625                 lnet_nid_t      nid;
626                 struct list_head nids;
627         } lpni_pref;
628         /* list of router nids preferred for this peer NI */
629         struct list_head        lpni_rtr_pref_nids;
630         /* The relative selection priority of this peer NI */
631         __u32                   lpni_sel_priority;
632         /* number of preferred NIDs in lnpi_pref_nids */
633         __u32                   lpni_pref_nnids;
634 };
635
636 /* Preferred path added due to traffic on non-MR peer_ni */
637 #define LNET_PEER_NI_NON_MR_PREF        BIT(0)
638 /* peer is being recovered. */
639 #define LNET_PEER_NI_RECOVERY_PENDING   BIT(1)
640 /* recovery ping failed */
641 #define LNET_PEER_NI_RECOVERY_FAILED    BIT(2)
642 /* peer is being deleted */
643 #define LNET_PEER_NI_DELETING           BIT(3)
644
645 struct lnet_peer {
646         /* chain on pt_peer_list */
647         struct list_head        lp_peer_list;
648
649         /* list of peer nets */
650         struct list_head        lp_peer_nets;
651
652         /* list of messages pending discovery*/
653         struct list_head        lp_dc_pendq;
654
655         /* chain on router list */
656         struct list_head        lp_rtr_list;
657
658         /* primary NID of the peer */
659         lnet_nid_t              lp_primary_nid;
660
661         /* source NID to use during discovery */
662         lnet_nid_t              lp_disc_src_nid;
663         /* destination NID to use during discovery */
664         lnet_nid_t              lp_disc_dst_nid;
665
666         /* net to perform discovery on */
667         __u32                   lp_disc_net_id;
668
669         /* CPT of peer_table */
670         int                     lp_cpt;
671
672         /* number of NIDs on this peer */
673         int                     lp_nnis;
674
675         /* # refs from lnet_route::lr_gateway */
676         int                     lp_rtr_refcount;
677
678         /*
679          * peer specific health sensitivity value to decrement peer nis in
680          * this peer with if set to something other than 0
681          */
682         __u32                   lp_health_sensitivity;
683
684         /* messages blocking for router credits */
685         struct list_head        lp_rtrq;
686
687         /* routes on this peer */
688         struct list_head        lp_routes;
689
690         /* reference count */
691         atomic_t                lp_refcount;
692
693         /* lock protecting peer state flags and lpni_rtrq */
694         spinlock_t              lp_lock;
695
696         /* peer state flags */
697         unsigned                lp_state;
698
699         /* buffer for data pushed by peer */
700         struct lnet_ping_buffer *lp_data;
701
702         /* MD handle for ping in progress */
703         struct lnet_handle_md   lp_ping_mdh;
704
705         /* MD handle for push in progress */
706         struct lnet_handle_md   lp_push_mdh;
707
708         /* number of NIDs for sizing push data */
709         int                     lp_data_nnis;
710
711         /* NI config sequence number of peer */
712         __u32                   lp_peer_seqno;
713
714         /* Local NI config sequence number acked by peer */
715         __u32                   lp_node_seqno;
716
717         /* Local NI config sequence number sent to peer */
718         __u32                   lp_node_seqno_sent;
719
720         /* Ping error encountered during discovery. */
721         int                     lp_ping_error;
722
723         /* Push error encountered during discovery. */
724         int                     lp_push_error;
725
726         /* Error encountered during discovery. */
727         int                     lp_dc_error;
728
729         /* time it was put on the ln_dc_working queue */
730         time64_t                lp_last_queued;
731
732         /* link on discovery-related lists */
733         struct list_head        lp_dc_list;
734
735         /* tasks waiting on discovery of this peer */
736         wait_queue_head_t       lp_dc_waitq;
737
738         /* cached peer aliveness */
739         bool                    lp_alive;
740 };
741
742 /*
743  * The status flags in lp_state. Their semantics have chosen so that
744  * lp_state can be zero-initialized.
745  *
746  * A peer is marked MULTI_RAIL in two cases: it was configured using DLC
747  * as multi-rail aware, or the LNET_PING_FEAT_MULTI_RAIL bit was set.
748  *
749  * A peer is marked NO_DISCOVERY if the LNET_PING_FEAT_DISCOVERY bit was
750  * NOT set when the peer was pinged by discovery.
751  *
752  * A peer is marked ROUTER if it indicates so in the feature bit.
753  */
754 #define LNET_PEER_MULTI_RAIL            BIT(0)  /* Multi-rail aware */
755 #define LNET_PEER_NO_DISCOVERY          BIT(1)  /* Peer disabled discovery */
756 #define LNET_PEER_ROUTER_ENABLED        BIT(2)  /* router feature enabled */
757
758 /*
759  * A peer is marked CONFIGURED if it was configured by DLC.
760  *
761  * In addition, a peer is marked DISCOVERED if it has fully passed
762  * through Peer Discovery.
763  *
764  * When Peer Discovery is disabled, the discovery thread will mark
765  * peers REDISCOVER to indicate that they should be re-examined if
766  * discovery is (re)enabled on the node.
767  *
768  * A peer that was created as the result of inbound traffic will not
769  * be marked at all.
770  */
771 #define LNET_PEER_CONFIGURED            BIT(3)  /* Configured via DLC */
772 #define LNET_PEER_DISCOVERED            BIT(4)  /* Peer was discovered */
773 #define LNET_PEER_REDISCOVER            BIT(5)  /* Discovery was disabled */
774 /*
775  * A peer is marked DISCOVERING when discovery is in progress.
776  * The other flags below correspond to stages of discovery.
777  */
778 #define LNET_PEER_DISCOVERING           BIT(6)  /* Discovering */
779 #define LNET_PEER_DATA_PRESENT          BIT(7)  /* Remote peer data present */
780 #define LNET_PEER_NIDS_UPTODATE         BIT(8)  /* Remote peer info uptodate */
781 #define LNET_PEER_PING_SENT             BIT(9)  /* Waiting for REPLY to Ping */
782 #define LNET_PEER_PUSH_SENT             BIT(10) /* Waiting for ACK of Push */
783 #define LNET_PEER_PING_FAILED           BIT(11) /* Ping send failure */
784 #define LNET_PEER_PUSH_FAILED           BIT(12) /* Push send failure */
785 /*
786  * A ping can be forced as a way to fix up state, or as a manual
787  * intervention by an admin.
788  * A push can be forced in circumstances that would normally not
789  * allow for one to happen.
790  */
791 #define LNET_PEER_FORCE_PING            BIT(13) /* Forced Ping */
792 #define LNET_PEER_FORCE_PUSH            BIT(14) /* Forced Push */
793
794 /* force delete even if router */
795 #define LNET_PEER_RTR_NI_FORCE_DEL      BIT(15)
796
797 /* gw undergoing alive discovery */
798 #define LNET_PEER_RTR_DISCOVERY         BIT(16)
799 /* gw has undergone discovery (does not indicate success or failure) */
800 #define LNET_PEER_RTR_DISCOVERED        BIT(17)
801
802 /* peer is marked for deletion */
803 #define LNET_PEER_MARK_DELETION         BIT(18)
804 /* lnet_peer_del()/lnet_peer_del_locked() has been called on the peer */
805 #define LNET_PEER_MARK_DELETED          BIT(19)
806
807 struct lnet_peer_net {
808         /* chain on lp_peer_nets */
809         struct list_head        lpn_peer_nets;
810
811         /* list of peer_nis on this network */
812         struct list_head        lpn_peer_nis;
813
814         /* pointer to the peer I'm part of */
815         struct lnet_peer        *lpn_peer;
816
817         /* Net ID */
818         __u32                   lpn_net_id;
819
820         /* peer net health */
821         int                     lpn_healthv;
822
823         /* time of next router ping on this net */
824         time64_t                lpn_next_ping;
825
826         /* selection sequence number */
827         __u32                   lpn_seq;
828
829         /* relative peer net selection priority */
830         __u32                   lpn_sel_priority;
831
832         /* reference count */
833         atomic_t                lpn_refcount;
834 };
835
836 /* peer hash size */
837 #define LNET_PEER_HASH_BITS     9
838 #define LNET_PEER_HASH_SIZE     (1 << LNET_PEER_HASH_BITS)
839
840 /*
841  * peer hash table - one per CPT
842  *
843  * protected by lnet_net_lock/EX for update
844  *    pt_version
845  *    pt_hash[...]
846  *    pt_peer_list
847  *    pt_peers
848  * protected by pt_zombie_lock:
849  *    pt_zombie_list
850  *    pt_zombies
851  *
852  * pt_zombie lock nests inside lnet_net_lock
853  */
854 struct lnet_peer_table {
855         int                     pt_version;     /* /proc validity stamp */
856         struct list_head        *pt_hash;       /* NID->peer hash */
857         struct list_head        pt_peer_list;   /* peers */
858         int                     pt_peers;       /* # peers */
859         struct list_head        pt_zombie_list; /* zombie peer_ni */
860         int                     pt_zombies;     /* # zombie peers_ni */
861         spinlock_t              pt_zombie_lock; /* protect list and count */
862 };
863
864 /* peer aliveness is enabled only on routers for peers in a network where the
865  * struct lnet_ni::ni_peertimeout has been set to a positive value
866  */
867 #define lnet_peer_aliveness_enabled(lp) (the_lnet.ln_routing != 0 && \
868                                         ((lp)->lpni_net) && \
869                                         (lp)->lpni_net->net_tunables.lct_peer_timeout > 0)
870
871 struct lnet_route {
872         struct list_head        lr_list;        /* chain on net */
873         struct list_head        lr_gwlist;      /* chain on gateway */
874         struct lnet_peer        *lr_gateway;    /* router node */
875         lnet_nid_t              lr_nid;         /* NID used to add route */
876         __u32                   lr_net;         /* remote network number */
877         __u32                   lr_lnet;        /* local network number */
878         int                     lr_seq;         /* sequence for round-robin */
879         __u32                   lr_hops;        /* how far I am */
880         unsigned int            lr_priority;    /* route priority */
881         atomic_t                lr_alive;       /* cached route aliveness */
882         bool                    lr_single_hop;  /* this route is single-hop */
883 };
884
885 #define LNET_REMOTE_NETS_HASH_DEFAULT   (1U << 7)
886 #define LNET_REMOTE_NETS_HASH_MAX       (1U << 16)
887 #define LNET_REMOTE_NETS_HASH_SIZE      (1 << the_lnet.ln_remote_nets_hbits)
888
889 struct lnet_remotenet {
890         /* chain on ln_remote_nets_hash */
891         struct list_head        lrn_list;
892         /* routes to me */
893         struct list_head        lrn_routes;
894         /* my net number */
895         __u32                   lrn_net;
896 };
897
898 /** lnet message has credit and can be submitted to lnd for send/receive */
899 #define LNET_CREDIT_OK          0
900 /** lnet message is waiting for credit */
901 #define LNET_CREDIT_WAIT        1
902 /** lnet message is waiting for discovery */
903 #define LNET_DC_WAIT            2
904
905 struct lnet_rtrbufpool {
906         /* my free buffer pool */
907         struct list_head        rbp_bufs;
908         /* messages blocking for a buffer */
909         struct list_head        rbp_msgs;
910         /* # pages in each buffer */
911         int                     rbp_npages;
912         /* requested number of buffers */
913         int                     rbp_req_nbuffers;
914         /* # buffers actually allocated */
915         int                     rbp_nbuffers;
916         /* # free buffers / blocked messages */
917         int                     rbp_credits;
918         /* low water mark */
919         int                     rbp_mincredits;
920 };
921
922 struct lnet_rtrbuf {
923         struct list_head         rb_list;       /* chain on rbp_bufs */
924         struct lnet_rtrbufpool  *rb_pool;       /* owning pool */
925         struct bio_vec           rb_kiov[0];    /* the buffer space */
926 };
927
928 #define LNET_PEER_HASHSIZE   503                /* prime! */
929
930 enum lnet_match_flags {
931         /* Didn't match anything */
932         LNET_MATCHMD_NONE       = BIT(0),
933         /* Matched OK */
934         LNET_MATCHMD_OK         = BIT(1),
935         /* Must be discarded */
936         LNET_MATCHMD_DROP       = BIT(2),
937         /* match and buffer is exhausted */
938         LNET_MATCHMD_EXHAUSTED  = BIT(3),
939         /* match or drop */
940         LNET_MATCHMD_FINISH     = (LNET_MATCHMD_OK | LNET_MATCHMD_DROP),
941 };
942
943 /* Options for struct lnet_portal::ptl_options */
944 #define LNET_PTL_LAZY           BIT(0)
945 #define LNET_PTL_MATCH_UNIQUE   BIT(1)  /* unique match, for RDMA */
946 #define LNET_PTL_MATCH_WILDCARD BIT(2)  /* wildcard match, request portal */
947
948 /* parameter for matching operations (GET, PUT) */
949 struct lnet_match_info {
950         __u64                   mi_mbits;
951         struct lnet_process_id  mi_id;
952         unsigned int            mi_cpt;
953         unsigned int            mi_opc;
954         unsigned int            mi_portal;
955         unsigned int            mi_rlength;
956         unsigned int            mi_roffset;
957 };
958
959 /* ME hash of RDMA portal */
960 #define LNET_MT_HASH_BITS               8
961 #define LNET_MT_HASH_SIZE               (1 << LNET_MT_HASH_BITS)
962 #define LNET_MT_HASH_MASK               (LNET_MT_HASH_SIZE - 1)
963 /* we allocate (LNET_MT_HASH_SIZE + 1) entries for lnet_match_table::mt_hash,
964  * the last entry is reserved for MEs with ignore-bits */
965 #define LNET_MT_HASH_IGNORE             LNET_MT_HASH_SIZE
966 /* __u64 has 2^6 bits, so need 2^(LNET_MT_HASH_BITS - LNET_MT_BITS_U64) which
967  * is 4 __u64s as bit-map, and add an extra __u64 (only use one bit) for the
968  * ME-list with ignore-bits, which is mtable::mt_hash[LNET_MT_HASH_IGNORE] */
969 #define LNET_MT_BITS_U64                6       /* 2^6 bits */
970 #define LNET_MT_EXHAUSTED_BITS          (LNET_MT_HASH_BITS - LNET_MT_BITS_U64)
971 #define LNET_MT_EXHAUSTED_BMAP          ((1 << LNET_MT_EXHAUSTED_BITS) + 1)
972
973 /* portal match table */
974 struct lnet_match_table {
975         /* reserved for upcoming patches, CPU partition ID */
976         unsigned int            mt_cpt;
977         unsigned int            mt_portal;      /* portal index */
978         /* match table is set as "enabled" if there's non-exhausted MD
979          * attached on mt_mhash, it's only valid for wildcard portal */
980         unsigned int            mt_enabled;
981         /* bitmap to flag whether MEs on mt_hash are exhausted or not */
982         __u64                   mt_exhausted[LNET_MT_EXHAUSTED_BMAP];
983         struct list_head        *mt_mhash;      /* matching hash */
984 };
985
986 /* these are only useful for wildcard portal */
987 /* Turn off message rotor for wildcard portals */
988 #define LNET_PTL_ROTOR_OFF      0
989 /* round-robin dispatch all PUT messages for wildcard portals */
990 #define LNET_PTL_ROTOR_ON       1
991 /* round-robin dispatch routed PUT message for wildcard portals */
992 #define LNET_PTL_ROTOR_RR_RT    2
993 /* dispatch routed PUT message by hashing source NID for wildcard portals */
994 #define LNET_PTL_ROTOR_HASH_RT  3
995
996 struct lnet_portal {
997         spinlock_t              ptl_lock;
998         unsigned int            ptl_index;      /* portal ID, reserved */
999         /* flags on this portal: lazy, unique... */
1000         unsigned int            ptl_options;
1001         /* list of messages which are stealing buffer */
1002         struct list_head        ptl_msg_stealing;
1003         /* messages blocking for MD */
1004         struct list_head        ptl_msg_delayed;
1005         /* Match table for each CPT */
1006         struct lnet_match_table **ptl_mtables;
1007         /* spread rotor of incoming "PUT" */
1008         unsigned int            ptl_rotor;
1009         /* # active entries for this portal */
1010         int                     ptl_mt_nmaps;
1011         /* array of active entries' cpu-partition-id */
1012         int                     ptl_mt_maps[0];
1013 };
1014
1015 #define LNET_LH_HASH_BITS       12
1016 #define LNET_LH_HASH_SIZE       (1ULL << LNET_LH_HASH_BITS)
1017 #define LNET_LH_HASH_MASK       (LNET_LH_HASH_SIZE - 1)
1018
1019 /* resource container (ME, MD, EQ) */
1020 struct lnet_res_container {
1021         unsigned int            rec_type;       /* container type */
1022         __u64                   rec_lh_cookie;  /* cookie generator */
1023         struct list_head        rec_active;     /* active resource list */
1024         struct list_head        *rec_lh_hash;   /* handle hash */
1025 };
1026
1027 /* message container */
1028 struct lnet_msg_container {
1029         int                     msc_init;       /* initialized or not */
1030         /* max # threads finalizing */
1031         int                     msc_nfinalizers;
1032         /* msgs waiting to complete finalizing */
1033         struct list_head        msc_finalizing;
1034         /* msgs waiting to be resent */
1035         struct list_head        msc_resending;
1036         struct list_head        msc_active;     /* active message list */
1037         /* threads doing finalization */
1038         void                    **msc_finalizers;
1039         /* threads doing resends */
1040         void                    **msc_resenders;
1041 };
1042
1043 /* This UDSP structures need to match the user space liblnetconfig structures
1044  * in order for the marshall and unmarshall functions to be common.
1045  */
1046
1047 /* Net is described as a
1048  *  1. net type
1049  *  2. num range
1050  */
1051 struct lnet_ud_net_descr {
1052         __u32 udn_net_type;
1053         struct list_head udn_net_num_range;
1054 };
1055
1056 /* each NID range is defined as
1057  *  1. net descriptor
1058  *  2. address range descriptor
1059  */
1060 struct lnet_ud_nid_descr {
1061         struct lnet_ud_net_descr ud_net_id;
1062         struct list_head ud_addr_range;
1063         __u32 ud_mem_size;
1064 };
1065
1066 /* a UDSP rule can have up to three user defined NID descriptors
1067  *      - src: defines the local NID range for the rule
1068  *      - dst: defines the peer NID range for the rule
1069  *      - rte: defines the router NID range for the rule
1070  *
1071  * An action union defines the action to take when the rule
1072  * is matched
1073  */
1074 struct lnet_udsp {
1075         struct list_head udsp_on_list;
1076         __u32 udsp_idx;
1077         struct lnet_ud_nid_descr udsp_src;
1078         struct lnet_ud_nid_descr udsp_dst;
1079         struct lnet_ud_nid_descr udsp_rte;
1080         enum lnet_udsp_action_type udsp_action_type;
1081         union {
1082                 __u32 udsp_priority;
1083         } udsp_action;
1084 };
1085
1086 /* Peer Discovery states */
1087 #define LNET_DC_STATE_SHUTDOWN          0       /* not started */
1088 #define LNET_DC_STATE_RUNNING           1       /* started up OK */
1089 #define LNET_DC_STATE_STOPPING          2       /* telling thread to stop */
1090
1091 /* Router Checker states */
1092 #define LNET_MT_STATE_SHUTDOWN          0       /* not started */
1093 #define LNET_MT_STATE_RUNNING           1       /* started up OK */
1094 #define LNET_MT_STATE_STOPPING          2       /* telling thread to stop */
1095
1096 /* LNet states */
1097 #define LNET_STATE_SHUTDOWN             0       /* not started */
1098 #define LNET_STATE_RUNNING              1       /* started up OK */
1099 #define LNET_STATE_STOPPING             2       /* telling thread to stop */
1100
1101 struct lnet {
1102         /* CPU partition table of LNet */
1103         struct cfs_cpt_table            *ln_cpt_table;
1104         /* number of CPTs in ln_cpt_table */
1105         unsigned int                    ln_cpt_number;
1106         unsigned int                    ln_cpt_bits;
1107
1108         /* protect LNet resources (ME/MD/EQ) */
1109         struct cfs_percpt_lock          *ln_res_lock;
1110         /* # portals */
1111         int                             ln_nportals;
1112         /* the vector of portals */
1113         struct lnet_portal              **ln_portals;
1114         /* percpt MD container */
1115         struct lnet_res_container       **ln_md_containers;
1116
1117         /* Event Queue container */
1118         struct lnet_res_container       ln_eq_container;
1119         spinlock_t                      ln_eq_wait_lock;
1120
1121         unsigned int                    ln_remote_nets_hbits;
1122
1123         /* protect NI, peer table, credits, routers, rtrbuf... */
1124         struct cfs_percpt_lock          *ln_net_lock;
1125         /* percpt message containers for active/finalizing/freed message */
1126         struct lnet_msg_container       **ln_msg_containers;
1127         struct lnet_counters            **ln_counters;
1128         struct lnet_peer_table          **ln_peer_tables;
1129         /* list of peer nis not on a local network */
1130         struct list_head                ln_remote_peer_ni_list;
1131         /* failure simulation */
1132         struct list_head                ln_test_peers;
1133         struct list_head                ln_drop_rules;
1134         struct list_head                ln_delay_rules;
1135         /* LND instances */
1136         struct list_head                ln_nets;
1137         /* the loopback NI */
1138         struct lnet_ni                  *ln_loni;
1139         /* network zombie list */
1140         struct list_head                ln_net_zombie;
1141         /* resend messages list */
1142         struct list_head                ln_msg_resend;
1143         /* spin lock to protect the msg resend list */
1144         spinlock_t                      ln_msg_resend_lock;
1145
1146         /* remote networks with routes to them */
1147         struct list_head                *ln_remote_nets_hash;
1148         /* validity stamp */
1149         __u64                           ln_remote_nets_version;
1150         /* list of all known routers */
1151         struct list_head                ln_routers;
1152         /* validity stamp */
1153         __u64                           ln_routers_version;
1154         /* percpt router buffer pools */
1155         struct lnet_rtrbufpool          **ln_rtrpools;
1156
1157         /*
1158          * Ping target / Push source
1159          *
1160          * The ping target and push source share a single buffer. The
1161          * ln_ping_target is protected against concurrent updates by
1162          * ln_api_mutex.
1163          */
1164         struct lnet_handle_md           ln_ping_target_md;
1165         lnet_handler_t                  ln_ping_target_handler;
1166         struct lnet_ping_buffer         *ln_ping_target;
1167         atomic_t                        ln_ping_target_seqno;
1168
1169         /*
1170          * Push Target
1171          *
1172          * ln_push_nnis contains the desired size of the push target.
1173          * The lnet_net_lock is used to handle update races. The old
1174          * buffer may linger a while after it has been unlinked, in
1175          * which case the event handler cleans up.
1176          */
1177         lnet_handler_t                  ln_push_target_handler;
1178         struct lnet_handle_md           ln_push_target_md;
1179         struct lnet_ping_buffer         *ln_push_target;
1180         int                             ln_push_target_nnis;
1181
1182         /* discovery event queue handle */
1183         lnet_handler_t                  ln_dc_handler;
1184         /* discovery requests */
1185         struct list_head                ln_dc_request;
1186         /* discovery working list */
1187         struct list_head                ln_dc_working;
1188         /* discovery expired list */
1189         struct list_head                ln_dc_expired;
1190         /* discovery thread wait queue */
1191         wait_queue_head_t               ln_dc_waitq;
1192         /* discovery startup/shutdown state */
1193         int                             ln_dc_state;
1194
1195         /* monitor thread startup/shutdown state */
1196         int                             ln_mt_state;
1197         /* serialise startup/shutdown */
1198         struct semaphore                ln_mt_signal;
1199
1200         struct mutex                    ln_api_mutex;
1201         struct mutex                    ln_lnd_mutex;
1202         /* Have I called LNetNIInit myself? */
1203         int                             ln_niinit_self;
1204         /* LNetNIInit/LNetNIFini counter */
1205         int                             ln_refcount;
1206         /* SHUTDOWN/RUNNING/STOPPING */
1207         int                             ln_state;
1208
1209         int                             ln_routing;     /* am I a router? */
1210         lnet_pid_t                      ln_pid;         /* requested pid */
1211         /* uniquely identifies this ni in this epoch */
1212         __u64                           ln_interface_cookie;
1213         /* registered LNDs */
1214         const struct lnet_lnd           *ln_lnds[NUM_LNDS];
1215
1216         /* test protocol compatibility flags */
1217         unsigned long                   ln_testprotocompat;
1218
1219         /* 0 - load the NIs from the mod params
1220          * 1 - do not load the NIs from the mod params
1221          * Reverse logic to ensure that other calls to LNetNIInit
1222          * need no change
1223          */
1224         bool                            ln_nis_from_mod_params;
1225
1226         /*
1227          * completion for the monitor thread. The monitor thread takes care of
1228          * checking routes, timedout messages and resending messages.
1229          */
1230         struct completion               ln_mt_wait_complete;
1231
1232         /* per-cpt resend queues */
1233         struct list_head                **ln_mt_resendqs;
1234         /* local NIs to recover */
1235         struct list_head                ln_mt_localNIRecovq;
1236         /* local NIs to recover */
1237         struct list_head                ln_mt_peerNIRecovq;
1238         /*
1239          * An array of queues for GET/PUT waiting for REPLY/ACK respectively.
1240          * There are CPT number of queues. Since response trackers will be
1241          * added on the fast path we can't afford to grab the exclusive
1242          * net lock to protect these queues. The CPT will be calculated
1243          * based on the mdh cookie.
1244          */
1245         struct list_head                **ln_mt_rstq;
1246         /*
1247          * A response tracker becomes a zombie when the associated MD is queued
1248          * for unlink before the response tracker is detached from the MD. An
1249          * entry on a zombie list can be freed when either the remaining
1250          * operations on the MD complete or when LNet has shut down.
1251          */
1252         struct list_head                **ln_mt_zombie_rstqs;
1253         /* recovery handler */
1254         lnet_handler_t                  ln_mt_handler;
1255
1256         /*
1257          * Completed when the discovery and monitor threads can enter their
1258          * work loops
1259          */
1260         struct completion               ln_started;
1261         /* UDSP list */
1262         struct list_head                ln_udsp_list;
1263 };
1264
1265 static const struct nla_policy scalar_attr_policy[LN_SCALAR_CNT + 1] = {
1266         [LN_SCALAR_ATTR_LIST]           = { .type = NLA_NESTED },
1267         [LN_SCALAR_ATTR_LIST_SIZE]      = { .type = NLA_U16 },
1268         [LN_SCALAR_ATTR_INDEX]          = { .type = NLA_U16 },
1269         [LN_SCALAR_ATTR_NLA_TYPE]       = { .type = NLA_U16 },
1270         [LN_SCALAR_ATTR_VALUE]          = { .type = NLA_STRING },
1271         [LN_SCALAR_ATTR_KEY_FORMAT]     = { .type = NLA_U16 },
1272 };
1273
1274 int lnet_genl_send_scalar_list(struct sk_buff *msg, u32 portid, u32 seq,
1275                                const struct genl_family *family, int flags,
1276                                u8 cmd, const struct ln_key_list *data[]);
1277
1278 /* Special workaround for pre-4.19 kernels to send error messages
1279  * from dumpit routines. Newer kernels will send message with
1280  * NL_SET_ERR_MSG information by default if NETLINK_EXT_ACK is set.
1281  */
1282 static inline int lnet_nl_send_error(struct sk_buff *msg, int portid, int seq,
1283                                      int error)
1284 {
1285 #ifndef HAVE_NL_DUMP_WITH_EXT_ACK
1286         struct nlmsghdr *nlh;
1287
1288         if (!error)
1289                 return 0;
1290
1291         nlh = nlmsg_put(msg, portid, seq, NLMSG_ERROR, sizeof(error), 0);
1292         if (!nlh)
1293                 return -ENOMEM;
1294 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
1295         netlink_ack(msg, nlh, error, NULL);
1296 #else
1297         netlink_ack(msg, nlh, error);
1298 #endif
1299         return nlmsg_len(nlh);
1300 #else
1301         return error;
1302 #endif
1303 }
1304
1305 #endif