Whamcloud - gitweb
LU-12930 various: use schedule_timeout_*interruptible
[fs/lustre-release.git] / lnet / lnet / lib-me.c
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, 2013, 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  * lnet/lnet/lib-me.c
33  *
34  * Match Entry management routines
35  */
36
37 #define DEBUG_SUBSYSTEM S_LNET
38
39 #include <lnet/lib-lnet.h>
40
41 /**
42  * Create and attach a match entry to the match list of \a portal. The new
43  * ME is empty, i.e. not associated with a memory descriptor. LNetMDAttach()
44  * can be used to attach a MD to an empty ME.
45  *
46  * \param portal The portal table index where the ME should be attached.
47  * \param match_id Specifies the match criteria for the process ID of
48  * the requester. The constants LNET_PID_ANY and LNET_NID_ANY can be
49  * used to wildcard either of the identifiers in the struct lnet_process_id
50  * structure.
51  * \param match_bits,ignore_bits Specify the match criteria to apply
52  * to the match bits in the incoming request. The ignore bits are used
53  * to mask out insignificant bits in the incoming match bits. The resulting
54  * bits are then compared to the ME's match bits to determine if the
55  * incoming request meets the match criteria.
56  * \param unlink Indicates whether the ME should be unlinked when the memory
57  * descriptor associated with it is unlinked (Note that the check for
58  * unlinking a ME only occurs when the memory descriptor is unlinked.).
59  * Valid values are LNET_RETAIN and LNET_UNLINK.
60  * \param pos Indicates whether the new ME should be prepended or
61  * appended to the match list. Allowed constants: LNET_INS_BEFORE,
62  * LNET_INS_AFTER.
63  *
64  * \retval A handle to the newly created ME is returned on success
65  * \retval ERR_PTR(-EINVAL) If \a portal is invalid.
66  * \retval ERR_PTR(-ENOMEM) If new ME object cannot be allocated.
67  */
68 struct lnet_me *
69 LNetMEAttach(unsigned int portal,
70              struct lnet_process_id match_id,
71              __u64 match_bits, __u64 ignore_bits,
72              enum lnet_unlink unlink, enum lnet_ins_pos pos)
73 {
74         struct lnet_match_table *mtable;
75         struct lnet_me          *me;
76         struct list_head        *head;
77
78         LASSERT(the_lnet.ln_refcount > 0);
79
80         if ((int)portal >= the_lnet.ln_nportals)
81                 return ERR_PTR(-EINVAL);
82
83         mtable = lnet_mt_of_attach(portal, match_id,
84                                    match_bits, ignore_bits, pos);
85         if (mtable == NULL) /* can't match portal type */
86                 return ERR_PTR(-EPERM);
87
88         me = lnet_me_alloc();
89         if (me == NULL)
90                 return ERR_PTR(-ENOMEM);
91
92         lnet_res_lock(mtable->mt_cpt);
93
94         me->me_portal = portal;
95         me->me_match_id = match_id;
96         me->me_match_bits = match_bits;
97         me->me_ignore_bits = ignore_bits;
98         me->me_unlink = unlink;
99         me->me_md = NULL;
100
101         me->me_cpt = mtable->mt_cpt;
102
103         if (ignore_bits != 0)
104                 head = &mtable->mt_mhash[LNET_MT_HASH_IGNORE];
105         else
106                 head = lnet_mt_match_head(mtable, match_id, match_bits);
107
108         me->me_pos = head - &mtable->mt_mhash[0];
109         if (pos == LNET_INS_AFTER || pos == LNET_INS_LOCAL)
110                 list_add_tail(&me->me_list, head);
111         else
112                 list_add(&me->me_list, head);
113
114         lnet_res_unlock(mtable->mt_cpt);
115         return me;
116 }
117 EXPORT_SYMBOL(LNetMEAttach);
118
119 /**
120  * Unlink a match entry from its match list.
121  *
122  * This operation also releases any resources associated with the ME. If a
123  * memory descriptor is attached to the ME, then it will be unlinked as well
124  * and an unlink event will be generated. It is an error to use the ME handle
125  * after calling LNetMEUnlink().
126  *
127  * \param meh A handle for the ME to be unlinked.
128  *
129  * \retval 0       On success.
130  * \retval -ENOENT If \a meh does not point to a valid ME.
131  * \see LNetMDUnlink() for the discussion on delivering unlink event.
132  */
133 void
134 LNetMEUnlink(struct lnet_me *me)
135 {
136         struct lnet_libmd *md;
137         struct lnet_event ev;
138         int cpt;
139
140         LASSERT(the_lnet.ln_refcount > 0);
141
142         cpt = me->me_cpt;
143         lnet_res_lock(cpt);
144
145         md = me->me_md;
146         if (md != NULL) {
147                 md->md_flags |= LNET_MD_FLAG_ABORTED;
148                 if (md->md_eq != NULL && md->md_refcount == 0) {
149                         lnet_build_unlink_event(md, &ev);
150                         lnet_eq_enqueue_event(md->md_eq, &ev);
151                 }
152         }
153
154         lnet_me_unlink(me);
155
156         lnet_res_unlock(cpt);
157 }
158 EXPORT_SYMBOL(LNetMEUnlink);
159
160 /* call with lnet_res_lock please */
161 void
162 lnet_me_unlink(struct lnet_me *me)
163 {
164         list_del(&me->me_list);
165
166         if (me->me_md != NULL) {
167                 struct lnet_libmd *md = me->me_md;
168
169                 /* detach MD from portal of this ME */
170                 lnet_ptl_detach_md(me, md);
171                 lnet_md_unlink(md);
172         }
173
174         lnet_me_free(me);
175 }
176
177 #if 0
178 static void
179 lib_me_dump(struct lnet_me *me)
180 {
181         CWARN("Match Entry %p (%#llx)\n", me,
182               me->me_lh.lh_cookie);
183
184         CWARN("\tMatch/Ignore\t= %016lx / %016lx\n",
185               me->me_match_bits, me->me_ignore_bits);
186
187         CWARN("\tMD\t= %p\n", me->md);
188         CWARN("\tprev\t= %p\n",
189               list_entry(me->me_list.prev, struct lnet_me, me_list));
190         CWARN("\tnext\t= %p\n",
191               list_entry(me->me_list.next, struct lnet_me, me_list));
192 }
193 #endif