]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/staging/lustre/include/linux/lnet/types.h
mm: only include blk_types in swap.h if CONFIG_SWAP is enabled
[mirror_ubuntu-artful-kernel.git] / drivers / staging / lustre / include / linux / lnet / types.h
CommitLineData
d7e09d03
PT
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
4f3ca893 18 * http://www.gnu.org/licenses/gpl-2.0.html
d7e09d03
PT
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 *
4f3ca893 26 * Copyright (c) 2012 - 2015, Intel Corporation.
d7e09d03
PT
27 */
28/*
29 * This file is part of Lustre, http://www.lustre.org/
4f3ca893 30 * Lustre is a trademark of Seagate, Inc.
d7e09d03
PT
31 */
32
33#ifndef __LNET_TYPES_H__
34#define __LNET_TYPES_H__
35
db18b8e9 36#include <linux/types.h>
be297968 37#include <linux/bvec.h>
db18b8e9 38
d7e09d03 39/** \addtogroup lnet
4420cfd3
JS
40 * @{
41 */
d7e09d03 42
5b0e50b9
JS
43#define LNET_VERSION "0.6.0"
44
d7e09d03 45/** \addtogroup lnet_addr
4420cfd3
JS
46 * @{
47 */
d7e09d03
PT
48
49/** Portal reserved for LNet's own use.
50 * \see lustre/include/lustre/lustre_idl.h for Lustre portal assignments.
51 */
188acc61 52#define LNET_RESERVED_PORTAL 0
d7e09d03
PT
53
54/**
55 * Address of an end-point in an LNet network.
56 *
57 * A node can have multiple end-points and hence multiple addresses.
58 * An LNet network can be a simple network (e.g. tcp0) or a network of
59 * LNet networks connected by LNet routers. Therefore an end-point address
60 * has two parts: network ID, and address within a network.
61 *
62 * \see LNET_NIDNET, LNET_NIDADDR, and LNET_MKNID.
63 */
64typedef __u64 lnet_nid_t;
65/**
66 * ID of a process in a node. Shortened as PID to distinguish from
67 * lnet_process_id_t, the global process ID.
68 */
69typedef __u32 lnet_pid_t;
70
71/** wildcard NID that matches any end-point address */
9797fb0e 72#define LNET_NID_ANY ((lnet_nid_t)(-1))
d7e09d03 73/** wildcard PID that matches any lnet_pid_t */
9797fb0e 74#define LNET_PID_ANY ((lnet_pid_t)(-1))
d7e09d03
PT
75
76#define LNET_PID_RESERVED 0xf0000000 /* reserved bits in PID */
77#define LNET_PID_USERFLAG 0x80000000 /* set in userspace peers */
db18b8e9 78#define LNET_PID_LUSTRE 12345
d7e09d03 79
188acc61 80#define LNET_TIME_FOREVER (-1)
d7e09d03 81
bbf00c3d
JS
82/* how an LNET NID encodes net:address */
83/** extract the address part of an lnet_nid_t */
84
85static inline __u32 LNET_NIDADDR(lnet_nid_t nid)
86{
87 return nid & 0xffffffff;
88}
89
90static inline __u32 LNET_NIDNET(lnet_nid_t nid)
91{
92 return (nid >> 32) & 0xffffffff;
93}
94
95static inline lnet_nid_t LNET_MKNID(__u32 net, __u32 addr)
96{
97 return (((__u64)net) << 32) | addr;
98}
99
100static inline __u32 LNET_NETNUM(__u32 net)
101{
102 return net & 0xffff;
103}
104
105static inline __u32 LNET_NETTYP(__u32 net)
106{
107 return (net >> 16) & 0xffff;
108}
109
110static inline __u32 LNET_MKNET(__u32 type, __u32 num)
111{
112 return (type << 16) | num;
113}
114
db18b8e9
JS
115#define WIRE_ATTR __packed
116
117/* Packed version of lnet_process_id_t to transfer via network */
118typedef struct {
119 /* node id / process id */
120 lnet_nid_t nid;
121 lnet_pid_t pid;
122} WIRE_ATTR lnet_process_id_packed_t;
123
4420cfd3
JS
124/*
125 * The wire handle's interface cookie only matches one network interface in
db18b8e9
JS
126 * one epoch (i.e. new cookie when the interface restarts or the node
127 * reboots). The object cookie only matches one object on that interface
4420cfd3
JS
128 * during that object's lifetime (i.e. no cookie re-use).
129 */
db18b8e9
JS
130typedef struct {
131 __u64 wh_interface_cookie;
132 __u64 wh_object_cookie;
133} WIRE_ATTR lnet_handle_wire_t;
134
135typedef enum {
136 LNET_MSG_ACK = 0,
137 LNET_MSG_PUT,
138 LNET_MSG_GET,
139 LNET_MSG_REPLY,
140 LNET_MSG_HELLO,
141} lnet_msg_type_t;
142
4420cfd3
JS
143/*
144 * The variant fields of the portals message header are aligned on an 8
db18b8e9
JS
145 * byte boundary in the message header. Note that all types used in these
146 * wire structs MUST be fixed size and the smaller types are placed at the
4420cfd3
JS
147 * end.
148 */
db18b8e9
JS
149typedef struct lnet_ack {
150 lnet_handle_wire_t dst_wmd;
151 __u64 match_bits;
152 __u32 mlength;
153} WIRE_ATTR lnet_ack_t;
154
155typedef struct lnet_put {
156 lnet_handle_wire_t ack_wmd;
157 __u64 match_bits;
158 __u64 hdr_data;
159 __u32 ptl_index;
160 __u32 offset;
161} WIRE_ATTR lnet_put_t;
162
163typedef struct lnet_get {
164 lnet_handle_wire_t return_wmd;
165 __u64 match_bits;
166 __u32 ptl_index;
167 __u32 src_offset;
168 __u32 sink_length;
169} WIRE_ATTR lnet_get_t;
170
171typedef struct lnet_reply {
172 lnet_handle_wire_t dst_wmd;
173} WIRE_ATTR lnet_reply_t;
174
175typedef struct lnet_hello {
176 __u64 incarnation;
177 __u32 type;
178} WIRE_ATTR lnet_hello_t;
179
180typedef struct {
181 lnet_nid_t dest_nid;
182 lnet_nid_t src_nid;
183 lnet_pid_t dest_pid;
184 lnet_pid_t src_pid;
185 __u32 type; /* lnet_msg_type_t */
186 __u32 payload_length; /* payload data to follow */
187 /*<------__u64 aligned------->*/
188 union {
189 lnet_ack_t ack;
190 lnet_put_t put;
191 lnet_get_t get;
192 lnet_reply_t reply;
193 lnet_hello_t hello;
194 } msg;
195} WIRE_ATTR lnet_hdr_t;
196
4420cfd3
JS
197/*
198 * A HELLO message contains a magic number and protocol version
db18b8e9
JS
199 * code in the header's dest_nid, the peer's NID in the src_nid, and
200 * LNET_MSG_HELLO in the type field. All other common fields are zero
201 * (including payload_size; i.e. no payload).
202 * This is for use by byte-stream LNDs (e.g. TCP/IP) to check the peer is
203 * running the same protocol and to find out its NID. These LNDs should
204 * exchange HELLO messages when a connection is first established. Individual
205 * LNDs can put whatever else they fancy in lnet_hdr_t::msg.
206 */
207typedef struct {
208 __u32 magic; /* LNET_PROTO_TCP_MAGIC */
209 __u16 version_major; /* increment on incompatible change */
210 __u16 version_minor; /* increment on compatible change */
211} WIRE_ATTR lnet_magicversion_t;
212
213/* PROTO MAGIC for LNDs */
214#define LNET_PROTO_IB_MAGIC 0x0be91b91
215#define LNET_PROTO_GNI_MAGIC 0xb00fbabe /* ask Kim */
216#define LNET_PROTO_TCP_MAGIC 0xeebc0ded
217#define LNET_PROTO_ACCEPTOR_MAGIC 0xacce7100
218#define LNET_PROTO_PING_MAGIC 0x70696E67 /* 'ping' */
219
220/* Placeholder for a future "unified" protocol across all LNDs */
4420cfd3
JS
221/*
222 * Current LNDs that receive a request with this magic will respond with a
223 * "stub" reply using their current protocol
224 */
db18b8e9
JS
225#define LNET_PROTO_MAGIC 0x45726963 /* ! */
226
227#define LNET_PROTO_TCP_VERSION_MAJOR 1
228#define LNET_PROTO_TCP_VERSION_MINOR 0
229
230/* Acceptor connection request */
231typedef struct {
232 __u32 acr_magic; /* PTL_ACCEPTOR_PROTO_MAGIC */
233 __u32 acr_version; /* protocol version */
234 __u64 acr_nid; /* target NID */
235} WIRE_ATTR lnet_acceptor_connreq_t;
236
237#define LNET_PROTO_ACCEPTOR_VERSION 1
238
239typedef struct {
240 lnet_nid_t ns_nid;
241 __u32 ns_status;
242 __u32 ns_unused;
243} WIRE_ATTR lnet_ni_status_t;
244
245typedef struct {
246 __u32 pi_magic;
247 __u32 pi_features;
248 lnet_pid_t pi_pid;
249 __u32 pi_nnis;
250 lnet_ni_status_t pi_ni[0];
251} WIRE_ATTR lnet_ping_info_t;
252
253typedef struct lnet_counters {
254 __u32 msgs_alloc;
255 __u32 msgs_max;
256 __u32 errors;
257 __u32 send_count;
258 __u32 recv_count;
259 __u32 route_count;
260 __u32 drop_count;
261 __u64 send_length;
262 __u64 recv_length;
263 __u64 route_length;
264 __u64 drop_length;
265} WIRE_ATTR lnet_counters_t;
266
267#define LNET_NI_STATUS_UP 0x15aac0de
268#define LNET_NI_STATUS_DOWN 0xdeadface
269#define LNET_NI_STATUS_INVALID 0x00000000
270
271#define LNET_MAX_INTERFACES 16
272
4420cfd3 273/**
d7e09d03
PT
274 * Objects maintained by the LNet are accessed through handles. Handle types
275 * have names of the form lnet_handle_xx_t, where xx is one of the two letter
276 * object type codes ('eq' for event queue, 'md' for memory descriptor, and
277 * 'me' for match entry).
278 * Each type of object is given a unique handle type to enhance type checking.
279 * The type lnet_handle_any_t can be used when a generic handle is needed.
280 * Every handle value can be converted into a value of type lnet_handle_any_t
281 * without loss of information.
282 */
283typedef struct {
284 __u64 cookie;
285} lnet_handle_any_t;
286
287typedef lnet_handle_any_t lnet_handle_eq_t;
288typedef lnet_handle_any_t lnet_handle_md_t;
289typedef lnet_handle_any_t lnet_handle_me_t;
290
291#define LNET_WIRE_HANDLE_COOKIE_NONE (-1)
292
293/**
294 * Invalidate handle \a h.
295 */
296static inline void LNetInvalidateHandle(lnet_handle_any_t *h)
297{
298 h->cookie = LNET_WIRE_HANDLE_COOKIE_NONE;
299}
300
301/**
302 * Compare handles \a h1 and \a h2.
303 *
304 * \return 1 if handles are equal, 0 if otherwise.
305 */
568414f1 306static inline int LNetHandleIsEqual(lnet_handle_any_t h1, lnet_handle_any_t h2)
d7e09d03 307{
e4422943 308 return h1.cookie == h2.cookie;
d7e09d03
PT
309}
310
311/**
312 * Check whether handle \a h is invalid.
313 *
314 * \return 1 if handle is invalid, 0 if valid.
315 */
316static inline int LNetHandleIsInvalid(lnet_handle_any_t h)
317{
625a3121 318 return h.cookie == LNET_WIRE_HANDLE_COOKIE_NONE;
d7e09d03
PT
319}
320
321/**
322 * Global process ID.
323 */
324typedef struct {
325 /** node id */
326 lnet_nid_t nid;
327 /** process id */
328 lnet_pid_t pid;
329} lnet_process_id_t;
330/** @} lnet_addr */
331
332/** \addtogroup lnet_me
4420cfd3
JS
333 * @{
334 */
d7e09d03
PT
335
336/**
337 * Specifies whether the match entry or memory descriptor should be unlinked
338 * automatically (LNET_UNLINK) or not (LNET_RETAIN).
339 */
340typedef enum {
341 LNET_RETAIN = 0,
342 LNET_UNLINK
343} lnet_unlink_t;
344
345/**
346 * Values of the type lnet_ins_pos_t are used to control where a new match
347 * entry is inserted. The value LNET_INS_BEFORE is used to insert the new
348 * entry before the current entry or before the head of the list. The value
349 * LNET_INS_AFTER is used to insert the new entry after the current entry
350 * or after the last item in the list.
351 */
352typedef enum {
353 /** insert ME before current position or head of the list */
354 LNET_INS_BEFORE,
355 /** insert ME after current position or tail of the list */
356 LNET_INS_AFTER,
357 /** attach ME at tail of local CPU partition ME list */
358 LNET_INS_LOCAL
359} lnet_ins_pos_t;
360
361/** @} lnet_me */
362
363/** \addtogroup lnet_md
4420cfd3
JS
364 * @{
365 */
d7e09d03
PT
366
367/**
368 * Defines the visible parts of a memory descriptor. Values of this type
369 * are used to initialize memory descriptors.
370 */
371typedef struct {
372 /**
373 * Specify the memory region associated with the memory descriptor.
374 * If the options field has:
375 * - LNET_MD_KIOV bit set: The start field points to the starting
376 * address of an array of lnet_kiov_t and the length field specifies
377 * the number of entries in the array. The length can't be bigger
378 * than LNET_MAX_IOV. The lnet_kiov_t is used to describe page-based
d766b4b5 379 * fragments that are not necessarily mapped in virtual memory.
d7e09d03
PT
380 * - LNET_MD_IOVEC bit set: The start field points to the starting
381 * address of an array of struct iovec and the length field specifies
382 * the number of entries in the array. The length can't be bigger
383 * than LNET_MAX_IOV. The struct iovec is used to describe fragments
384 * that have virtual addresses.
385 * - Otherwise: The memory region is contiguous. The start field
386 * specifies the starting address for the memory region and the
387 * length field specifies its length.
388 *
389 * When the memory region is fragmented, all fragments but the first
390 * one must start on page boundary, and all but the last must end on
391 * page boundary.
392 */
188acc61
JS
393 void *start;
394 unsigned int length;
d7e09d03
PT
395 /**
396 * Specifies the maximum number of operations that can be performed
397 * on the memory descriptor. An operation is any action that could
398 * possibly generate an event. In the usual case, the threshold value
399 * is decremented for each operation on the MD. When the threshold
400 * drops to zero, the MD becomes inactive and does not respond to
401 * operations. A threshold value of LNET_MD_THRESH_INF indicates that
402 * there is no bound on the number of operations that may be applied
403 * to a MD.
404 */
188acc61 405 int threshold;
d7e09d03
PT
406 /**
407 * Specifies the largest incoming request that the memory descriptor
408 * should respond to. When the unused portion of a MD (length -
409 * local offset) falls below this value, the MD becomes inactive and
410 * does not respond to further operations. This value is only used
411 * if the LNET_MD_MAX_SIZE option is set.
412 */
188acc61 413 int max_size;
d7e09d03
PT
414 /**
415 * Specifies the behavior of the memory descriptor. A bitwise OR
416 * of the following values can be used:
417 * - LNET_MD_OP_PUT: The LNet PUT operation is allowed on this MD.
418 * - LNET_MD_OP_GET: The LNet GET operation is allowed on this MD.
419 * - LNET_MD_MANAGE_REMOTE: The offset used in accessing the memory
420 * region is provided by the incoming request. By default, the
421 * offset is maintained locally. When maintained locally, the
422 * offset is incremented by the length of the request so that
423 * the next operation (PUT or GET) will access the next part of
424 * the memory region. Note that only one offset variable exists
425 * per memory descriptor. If both PUT and GET operations are
426 * performed on a memory descriptor, the offset is updated each time.
427 * - LNET_MD_TRUNCATE: The length provided in the incoming request can
428 * be reduced to match the memory available in the region (determined
429 * by subtracting the offset from the length of the memory region).
430 * By default, if the length in the incoming operation is greater
431 * than the amount of memory available, the operation is rejected.
432 * - LNET_MD_ACK_DISABLE: An acknowledgment should not be sent for
433 * incoming PUT operations, even if requested. By default,
434 * acknowledgments are sent for PUT operations that request an
435 * acknowledgment. Acknowledgments are never sent for GET operations.
436 * The data sent in the REPLY serves as an implicit acknowledgment.
437 * - LNET_MD_KIOV: The start and length fields specify an array of
438 * lnet_kiov_t.
439 * - LNET_MD_IOVEC: The start and length fields specify an array of
440 * struct iovec.
441 * - LNET_MD_MAX_SIZE: The max_size field is valid.
442 *
443 * Note:
444 * - LNET_MD_KIOV or LNET_MD_IOVEC allows for a scatter/gather
445 * capability for memory descriptors. They can't be both set.
446 * - When LNET_MD_MAX_SIZE is set, the total length of the memory
447 * region (i.e. sum of all fragment lengths) must not be less than
448 * \a max_size.
449 */
188acc61 450 unsigned int options;
d7e09d03
PT
451 /**
452 * A user-specified value that is associated with the memory
453 * descriptor. The value does not need to be a pointer, but must fit
454 * in the space used by a pointer. This value is recorded in events
455 * associated with operations on this MD.
456 */
188acc61 457 void *user_ptr;
d7e09d03
PT
458 /**
459 * A handle for the event queue used to log the operations performed on
460 * the memory region. If this argument is a NULL handle (i.e. nullified
461 * by LNetInvalidateHandle()), operations performed on this memory
462 * descriptor are not logged.
463 */
464 lnet_handle_eq_t eq_handle;
465} lnet_md_t;
466
4420cfd3
JS
467/*
468 * Max Transfer Unit (minimum supported everywhere).
d7e09d03 469 * CAVEAT EMPTOR, with multinet (i.e. routers forwarding between networks)
4420cfd3
JS
470 * these limits are system wide and not interface-local.
471 */
d7e09d03
PT
472#define LNET_MTU_BITS 20
473#define LNET_MTU (1 << LNET_MTU_BITS)
474
475/** limit on the number of fragments in discontiguous MDs */
188acc61 476#define LNET_MAX_IOV 256
d7e09d03 477
d7e09d03
PT
478/**
479 * Options for the MD structure. See lnet_md_t::options.
480 */
188acc61 481#define LNET_MD_OP_PUT (1 << 0)
d7e09d03 482/** See lnet_md_t::options. */
188acc61 483#define LNET_MD_OP_GET (1 << 1)
d7e09d03
PT
484/** See lnet_md_t::options. */
485#define LNET_MD_MANAGE_REMOTE (1 << 2)
188acc61 486/* unused (1 << 3) */
d7e09d03 487/** See lnet_md_t::options. */
188acc61 488#define LNET_MD_TRUNCATE (1 << 4)
d7e09d03 489/** See lnet_md_t::options. */
188acc61 490#define LNET_MD_ACK_DISABLE (1 << 5)
d7e09d03
PT
491/** See lnet_md_t::options. */
492#define LNET_MD_IOVEC (1 << 6)
493/** See lnet_md_t::options. */
188acc61 494#define LNET_MD_MAX_SIZE (1 << 7)
d7e09d03 495/** See lnet_md_t::options. */
188acc61 496#define LNET_MD_KIOV (1 << 8)
d7e09d03
PT
497
498/* For compatibility with Cray Portals */
188acc61 499#define LNET_MD_PHYS 0
d7e09d03
PT
500
501/** Infinite threshold on MD operations. See lnet_md_t::threshold */
188acc61 502#define LNET_MD_THRESH_INF (-1)
d7e09d03
PT
503
504/* NB lustre portals uses struct iovec internally! */
505typedef struct iovec lnet_md_iovec_t;
506
65ffc679 507typedef struct bio_vec lnet_kiov_t;
d7e09d03
PT
508/** @} lnet_md */
509
510/** \addtogroup lnet_eq
4420cfd3
JS
511 * @{
512 */
d7e09d03
PT
513
514/**
515 * Six types of events can be logged in an event queue.
516 */
517typedef enum {
518 /** An incoming GET operation has completed on the MD. */
519 LNET_EVENT_GET = 1,
520 /**
521 * An incoming PUT operation has completed on the MD. The
522 * underlying layers will not alter the memory (on behalf of this
523 * operation) once this event has been logged.
524 */
525 LNET_EVENT_PUT,
526 /**
527 * A REPLY operation has completed. This event is logged after the
528 * data (if any) from the REPLY has been written into the MD.
529 */
530 LNET_EVENT_REPLY,
531 /** An acknowledgment has been received. */
532 LNET_EVENT_ACK,
533 /**
534 * An outgoing send (PUT or GET) operation has completed. This event
535 * is logged after the entire buffer has been sent and it is safe for
536 * the caller to reuse the buffer.
537 *
538 * Note:
539 * - The LNET_EVENT_SEND doesn't guarantee message delivery. It can
540 * happen even when the message has not yet been put out on wire.
541 * - It's unsafe to assume that in an outgoing GET operation
542 * the LNET_EVENT_SEND event would happen before the
543 * LNET_EVENT_REPLY event. The same holds for LNET_EVENT_SEND and
544 * LNET_EVENT_ACK events in an outgoing PUT operation.
545 */
546 LNET_EVENT_SEND,
547 /**
548 * A MD has been unlinked. Note that LNetMDUnlink() does not
549 * necessarily trigger an LNET_EVENT_UNLINK event.
550 * \see LNetMDUnlink
551 */
552 LNET_EVENT_UNLINK,
553} lnet_event_kind_t;
554
188acc61 555#define LNET_SEQ_BASETYPE long
d7e09d03 556typedef unsigned LNET_SEQ_BASETYPE lnet_seq_t;
e4422943 557#define LNET_SEQ_GT(a, b) (((signed LNET_SEQ_BASETYPE)((a) - (b))) > 0)
d7e09d03 558
d7e09d03
PT
559/**
560 * Information about an event on a MD.
561 */
562typedef struct {
563 /** The identifier (nid, pid) of the target. */
188acc61 564 lnet_process_id_t target;
d7e09d03 565 /** The identifier (nid, pid) of the initiator. */
188acc61 566 lnet_process_id_t initiator;
d7e09d03
PT
567 /**
568 * The NID of the immediate sender. If the request has been forwarded
569 * by routers, this is the NID of the last hop; otherwise it's the
570 * same as the initiator.
571 */
188acc61 572 lnet_nid_t sender;
d7e09d03 573 /** Indicates the type of the event. */
188acc61 574 lnet_event_kind_t type;
d7e09d03 575 /** The portal table index specified in the request */
188acc61 576 unsigned int pt_index;
d7e09d03 577 /** A copy of the match bits specified in the request. */
188acc61 578 __u64 match_bits;
d7e09d03 579 /** The length (in bytes) specified in the request. */
188acc61 580 unsigned int rlength;
d7e09d03
PT
581 /**
582 * The length (in bytes) of the data that was manipulated by the
583 * operation. For truncated operations, the manipulated length will be
584 * the number of bytes specified by the MD (possibly with an offset,
585 * see lnet_md_t). For all other operations, the manipulated length
586 * will be the length of the requested operation, i.e. rlength.
587 */
188acc61 588 unsigned int mlength;
d7e09d03
PT
589 /**
590 * The handle to the MD associated with the event. The handle may be
591 * invalid if the MD has been unlinked.
592 */
188acc61 593 lnet_handle_md_t md_handle;
d7e09d03
PT
594 /**
595 * A snapshot of the state of the MD immediately after the event has
596 * been processed. In particular, the threshold field in md will
597 * reflect the value of the threshold after the operation occurred.
598 */
188acc61 599 lnet_md_t md;
d7e09d03
PT
600 /**
601 * 64 bits of out-of-band user data. Only valid for LNET_EVENT_PUT.
602 * \see LNetPut
603 */
188acc61 604 __u64 hdr_data;
d7e09d03
PT
605 /**
606 * Indicates the completion status of the operation. It's 0 for
607 * successful operations, otherwise it's an error code.
608 */
188acc61 609 int status;
d7e09d03
PT
610 /**
611 * Indicates whether the MD has been unlinked. Note that:
612 * - An event with unlinked set is the last event on the MD.
613 * - This field is also set for an explicit LNET_EVENT_UNLINK event.
614 * \see LNetMDUnlink
615 */
188acc61 616 int unlinked;
d7e09d03
PT
617 /**
618 * The displacement (in bytes) into the memory region that the
619 * operation used. The offset can be determined by the operation for
620 * a remote managed MD or by the local MD.
621 * \see lnet_md_t::options
622 */
188acc61 623 unsigned int offset;
d7e09d03
PT
624 /**
625 * The sequence number for this event. Sequence numbers are unique
626 * to each event.
627 */
188acc61 628 volatile lnet_seq_t sequence;
d7e09d03 629} lnet_event_t;
d7e09d03
PT
630
631/**
632 * Event queue handler function type.
633 *
634 * The EQ handler runs for each event that is deposited into the EQ. The
635 * handler is supplied with a pointer to the event that triggered the
636 * handler invocation.
637 *
638 * The handler must not block, must be reentrant, and must not call any LNet
639 * API functions. It should return as quickly as possible.
640 */
641typedef void (*lnet_eq_handler_t)(lnet_event_t *event);
642#define LNET_EQ_HANDLER_NONE NULL
643/** @} lnet_eq */
644
645/** \addtogroup lnet_data
4420cfd3
JS
646 * @{
647 */
d7e09d03
PT
648
649/**
650 * Specify whether an acknowledgment should be sent by target when the PUT
651 * operation completes (i.e., when the data has been written to a MD of the
652 * target process).
653 *
654 * \see lnet_md_t::options for the discussion on LNET_MD_ACK_DISABLE by which
655 * acknowledgments can be disabled for a MD.
656 */
657typedef enum {
658 /** Request an acknowledgment */
659 LNET_ACK_REQ,
660 /** Request that no acknowledgment should be generated. */
661 LNET_NOACK_REQ
662} lnet_ack_req_t;
663/** @} lnet_data */
664
665/** @} lnet */
666#endif