blob: f8c8a361ef79280f9ba94c5ba5eef56417a08ff2 [file] [log] [blame]
Peng Taod7e09d02013-05-02 16:46:55 +08001/*
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
Oleg Drokin06894ee2016-06-14 23:33:41 -040017 * version 2 along with this program; If not, see
18 * http://http://www.gnu.org/licenses/gpl-2.0.html
Peng Taod7e09d02013-05-02 16:46:55 +080019 *
Peng Taod7e09d02013-05-02 16:46:55 +080020 * GPL HEADER END
21 */
22/*
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
25 *
26 * Copyright (c) 2012, 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 * lustre/lov/lov_pool.c
33 *
34 * OST pool methods
35 *
36 * Author: Jacques-Charles LAFOUCRIERE <jc.lafoucriere@cea.fr>
37 * Author: Alex Lyashkov <Alexey.Lyashkov@Sun.COM>
38 * Author: Nathaniel Rutman <Nathan.Rutman@Sun.COM>
39 */
40
41#define DEBUG_SUBSYSTEM S_LOV
42
Greg Kroah-Hartman9fdaf8c2014-07-11 20:51:16 -070043#include "../../include/linux/libcfs/libcfs.h"
Peng Taod7e09d02013-05-02 16:46:55 +080044
Greg Kroah-Hartman0cf0f7a2014-07-11 22:01:58 -070045#include "../include/obd.h"
Peng Taod7e09d02013-05-02 16:46:55 +080046#include "lov_internal.h"
47
48#define pool_tgt(_p, _i) \
49 _p->pool_lobd->u.lov.lov_tgts[_p->pool_obds.op_array[_i]]
50
51static void lov_pool_getref(struct pool_desc *pool)
52{
53 CDEBUG(D_INFO, "pool %p\n", pool);
54 atomic_inc(&pool->pool_refcount);
55}
56
57void lov_pool_putref(struct pool_desc *pool)
58{
59 CDEBUG(D_INFO, "pool %p\n", pool);
60 if (atomic_dec_and_test(&pool->pool_refcount)) {
61 LASSERT(hlist_unhashed(&pool->pool_hash));
62 LASSERT(list_empty(&pool->pool_list));
Oleg Drokin00697c42016-02-16 00:46:45 -050063 LASSERT(!pool->pool_debugfs_entry);
Emoly Liu49880262016-08-20 17:34:27 -040064 lov_ost_pool_free(&pool->pool_obds);
Julia Lawall840c94d2015-04-12 23:34:20 +020065 kfree(pool);
Peng Taod7e09d02013-05-02 16:46:55 +080066 }
67}
68
Le Tan12e397c2015-02-11 12:13:14 +080069static void lov_pool_putref_locked(struct pool_desc *pool)
Peng Taod7e09d02013-05-02 16:46:55 +080070{
71 CDEBUG(D_INFO, "pool %p\n", pool);
72 LASSERT(atomic_read(&pool->pool_refcount) > 1);
73
74 atomic_dec(&pool->pool_refcount);
75}
76
77/*
78 * hash function using a Rotating Hash algorithm
79 * Knuth, D. The Art of Computer Programming,
80 * Volume 3: Sorting and Searching,
81 * Chapter 6.4.
82 * Addison Wesley, 1973
83 */
Lisa Nguyen6da6eab2013-10-21 18:16:26 -070084static __u32 pool_hashfn(struct cfs_hash *hash_body, const void *key, unsigned mask)
Peng Taod7e09d02013-05-02 16:46:55 +080085{
86 int i;
87 __u32 result;
88 char *poolname;
89
90 result = 0;
91 poolname = (char *)key;
92 for (i = 0; i < LOV_MAXPOOLNAME; i++) {
93 if (poolname[i] == '\0')
94 break;
Oleg Drokincd94f232016-08-21 18:04:34 -040095 result = (result << 4) ^ (result >> 28) ^ poolname[i];
Peng Taod7e09d02013-05-02 16:46:55 +080096 }
97 return (result % mask);
98}
99
100static void *pool_key(struct hlist_node *hnode)
101{
102 struct pool_desc *pool;
103
104 pool = hlist_entry(hnode, struct pool_desc, pool_hash);
Greg Donalde8291972014-08-31 17:40:17 -0500105 return pool->pool_name;
Peng Taod7e09d02013-05-02 16:46:55 +0800106}
107
108static int pool_hashkey_keycmp(const void *key, struct hlist_node *compared_hnode)
109{
110 char *pool_name;
111 struct pool_desc *pool;
112
113 pool_name = (char *)key;
114 pool = hlist_entry(compared_hnode, struct pool_desc, pool_hash);
115 return !strncmp(pool_name, pool->pool_name, LOV_MAXPOOLNAME);
116}
117
118static void *pool_hashobject(struct hlist_node *hnode)
119{
120 return hlist_entry(hnode, struct pool_desc, pool_hash);
121}
122
Lisa Nguyen6da6eab2013-10-21 18:16:26 -0700123static void pool_hashrefcount_get(struct cfs_hash *hs, struct hlist_node *hnode)
Peng Taod7e09d02013-05-02 16:46:55 +0800124{
125 struct pool_desc *pool;
126
127 pool = hlist_entry(hnode, struct pool_desc, pool_hash);
128 lov_pool_getref(pool);
129}
130
Lisa Nguyen6da6eab2013-10-21 18:16:26 -0700131static void pool_hashrefcount_put_locked(struct cfs_hash *hs,
Peng Taod7e09d02013-05-02 16:46:55 +0800132 struct hlist_node *hnode)
133{
134 struct pool_desc *pool;
135
136 pool = hlist_entry(hnode, struct pool_desc, pool_hash);
137 lov_pool_putref_locked(pool);
138}
139
James Simmonsdb9fc062015-10-28 12:54:24 -0400140struct cfs_hash_ops pool_hash_operations = {
Peng Taod7e09d02013-05-02 16:46:55 +0800141 .hs_hash = pool_hashfn,
James Simmonsdb9fc062015-10-28 12:54:24 -0400142 .hs_key = pool_key,
Peng Taod7e09d02013-05-02 16:46:55 +0800143 .hs_keycmp = pool_hashkey_keycmp,
144 .hs_object = pool_hashobject,
James Simmonsdb9fc062015-10-28 12:54:24 -0400145 .hs_get = pool_hashrefcount_get,
Peng Taod7e09d02013-05-02 16:46:55 +0800146 .hs_put_locked = pool_hashrefcount_put_locked,
147
148};
149
Peng Taod7e09d02013-05-02 16:46:55 +0800150/*
Oleg Drokin64f17a12016-02-16 00:46:37 -0500151 * pool debugfs seq_file methods
Peng Taod7e09d02013-05-02 16:46:55 +0800152 */
153/*
154 * iterator is used to go through the target pool entries
155 * index is the current entry index in the lp_array[] array
156 * index >= pos returned to the seq_file interface
157 * pos is from 0 to (pool->pool_obds.op_count - 1)
158 */
159#define POOL_IT_MAGIC 0xB001CEA0
160struct pool_iterator {
161 int magic;
162 struct pool_desc *pool;
163 int idx; /* from 0 to pool_tgt_size - 1 */
164};
165
166static void *pool_proc_next(struct seq_file *s, void *v, loff_t *pos)
167{
168 struct pool_iterator *iter = (struct pool_iterator *)s->private;
169 int prev_idx;
170
James Nunez19b20562016-03-07 18:10:21 -0500171 LASSERTF(iter->magic == POOL_IT_MAGIC, "%08X\n", iter->magic);
Peng Taod7e09d02013-05-02 16:46:55 +0800172
173 /* test if end of file */
174 if (*pos >= pool_tgt_count(iter->pool))
175 return NULL;
176
177 /* iterate to find a non empty entry */
178 prev_idx = iter->idx;
179 down_read(&pool_tgt_rw_sem(iter->pool));
180 iter->idx++;
181 if (iter->idx == pool_tgt_count(iter->pool)) {
182 iter->idx = prev_idx; /* we stay on the last entry */
183 up_read(&pool_tgt_rw_sem(iter->pool));
184 return NULL;
185 }
186 up_read(&pool_tgt_rw_sem(iter->pool));
187 (*pos)++;
188 /* return != NULL to continue */
189 return iter;
190}
191
192static void *pool_proc_start(struct seq_file *s, loff_t *pos)
193{
194 struct pool_desc *pool = (struct pool_desc *)s->private;
195 struct pool_iterator *iter;
196
197 lov_pool_getref(pool);
198 if ((pool_tgt_count(pool) == 0) ||
199 (*pos >= pool_tgt_count(pool))) {
200 /* iter is not created, so stop() has no way to
Oleg Drokinacb9abc2016-02-24 22:00:32 -0500201 * find pool to dec ref
202 */
Peng Taod7e09d02013-05-02 16:46:55 +0800203 lov_pool_putref(pool);
204 return NULL;
205 }
206
Julia Lawall840c94d2015-04-12 23:34:20 +0200207 iter = kzalloc(sizeof(*iter), GFP_NOFS);
Peng Taod7e09d02013-05-02 16:46:55 +0800208 if (!iter)
209 return ERR_PTR(-ENOMEM);
210 iter->magic = POOL_IT_MAGIC;
211 iter->pool = pool;
212 iter->idx = 0;
213
214 /* we use seq_file private field to memorized iterator so
Oleg Drokinacb9abc2016-02-24 22:00:32 -0500215 * we can free it at stop()
216 */
Peng Taod7e09d02013-05-02 16:46:55 +0800217 /* /!\ do not forget to restore it to pool before freeing it */
218 s->private = iter;
219 if (*pos > 0) {
220 loff_t i;
221 void *ptr;
222
223 i = 0;
224 do {
Oleg Drokindefa2202016-02-24 22:00:39 -0500225 ptr = pool_proc_next(s, &iter, &i);
Oleg Drokin00697c42016-02-16 00:46:45 -0500226 } while ((i < *pos) && ptr);
Peng Taod7e09d02013-05-02 16:46:55 +0800227 return ptr;
228 }
229 return iter;
230}
231
232static void pool_proc_stop(struct seq_file *s, void *v)
233{
234 struct pool_iterator *iter = (struct pool_iterator *)s->private;
235
236 /* in some cases stop() method is called 2 times, without
237 * calling start() method (see seq_read() from fs/seq_file.c)
Oleg Drokinacb9abc2016-02-24 22:00:32 -0500238 * we have to free only if s->private is an iterator
239 */
Peng Taod7e09d02013-05-02 16:46:55 +0800240 if ((iter) && (iter->magic == POOL_IT_MAGIC)) {
241 /* we restore s->private so next call to pool_proc_start()
Oleg Drokinacb9abc2016-02-24 22:00:32 -0500242 * will work
243 */
Peng Taod7e09d02013-05-02 16:46:55 +0800244 s->private = iter->pool;
245 lov_pool_putref(iter->pool);
Julia Lawall840c94d2015-04-12 23:34:20 +0200246 kfree(iter);
Peng Taod7e09d02013-05-02 16:46:55 +0800247 }
Peng Taod7e09d02013-05-02 16:46:55 +0800248}
249
250static int pool_proc_show(struct seq_file *s, void *v)
251{
252 struct pool_iterator *iter = (struct pool_iterator *)v;
253 struct lov_tgt_desc *tgt;
254
James Nunez19b20562016-03-07 18:10:21 -0500255 LASSERTF(iter->magic == POOL_IT_MAGIC, "%08X\n", iter->magic);
Oleg Drokin00697c42016-02-16 00:46:45 -0500256 LASSERT(iter->pool);
Peng Taod7e09d02013-05-02 16:46:55 +0800257 LASSERT(iter->idx <= pool_tgt_count(iter->pool));
258
259 down_read(&pool_tgt_rw_sem(iter->pool));
260 tgt = pool_tgt(iter->pool, iter->idx);
261 up_read(&pool_tgt_rw_sem(iter->pool));
262 if (tgt)
Emoly Liu49880262016-08-20 17:34:27 -0400263 seq_printf(s, "%s\n", obd_uuid2str(&tgt->ltd_uuid));
Peng Taod7e09d02013-05-02 16:46:55 +0800264
265 return 0;
266}
267
Xavier Roche02b31072015-06-05 10:19:20 +0200268static const struct seq_operations pool_proc_ops = {
Peng Taod7e09d02013-05-02 16:46:55 +0800269 .start = pool_proc_start,
270 .next = pool_proc_next,
271 .stop = pool_proc_stop,
272 .show = pool_proc_show,
273};
274
275static int pool_proc_open(struct inode *inode, struct file *file)
276{
277 int rc;
278
279 rc = seq_open(file, &pool_proc_ops);
280 if (!rc) {
281 struct seq_file *s = file->private_data;
Mike Rapoport50ffcb72015-10-13 16:03:40 +0300282
Dmitry Eremin61e87ab2015-05-21 15:32:27 -0400283 s->private = inode->i_private;
Peng Taod7e09d02013-05-02 16:46:55 +0800284 }
285 return rc;
286}
287
288static struct file_operations pool_proc_operations = {
289 .open = pool_proc_open,
290 .read = seq_read,
291 .llseek = seq_lseek,
292 .release = seq_release,
293};
Peng Taod7e09d02013-05-02 16:46:55 +0800294
Peng Taod7e09d02013-05-02 16:46:55 +0800295#define LOV_POOL_INIT_COUNT 2
296int lov_ost_pool_init(struct ost_pool *op, unsigned int count)
297{
Peng Taod7e09d02013-05-02 16:46:55 +0800298 if (count == 0)
299 count = LOV_POOL_INIT_COUNT;
300 op->op_array = NULL;
301 op->op_count = 0;
302 init_rwsem(&op->op_rw_sem);
303 op->op_size = count;
Julia Lawall840c94d2015-04-12 23:34:20 +0200304 op->op_array = kcalloc(op->op_size, sizeof(op->op_array[0]), GFP_NOFS);
Oleg Drokin00697c42016-02-16 00:46:45 -0500305 if (!op->op_array) {
Peng Taod7e09d02013-05-02 16:46:55 +0800306 op->op_size = 0;
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800307 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +0800308 }
Peng Taod7e09d02013-05-02 16:46:55 +0800309 return 0;
310}
311
312/* Caller must hold write op_rwlock */
313int lov_ost_pool_extend(struct ost_pool *op, unsigned int min_count)
314{
315 __u32 *new;
316 int new_size;
317
318 LASSERT(min_count != 0);
319
320 if (op->op_count < op->op_size)
321 return 0;
322
323 new_size = max(min_count, 2 * op->op_size);
Julia Lawall840c94d2015-04-12 23:34:20 +0200324 new = kcalloc(new_size, sizeof(op->op_array[0]), GFP_NOFS);
Oleg Drokin00697c42016-02-16 00:46:45 -0500325 if (!new)
Peng Taod7e09d02013-05-02 16:46:55 +0800326 return -ENOMEM;
327
328 /* copy old array to new one */
329 memcpy(new, op->op_array, op->op_size * sizeof(op->op_array[0]));
Julia Lawall840c94d2015-04-12 23:34:20 +0200330 kfree(op->op_array);
Peng Taod7e09d02013-05-02 16:46:55 +0800331 op->op_array = new;
332 op->op_size = new_size;
333 return 0;
334}
335
336int lov_ost_pool_add(struct ost_pool *op, __u32 idx, unsigned int min_count)
337{
338 int rc = 0, i;
Peng Taod7e09d02013-05-02 16:46:55 +0800339
340 down_write(&op->op_rw_sem);
341
342 rc = lov_ost_pool_extend(op, min_count);
343 if (rc)
Julia Lawall18751662014-09-09 15:44:08 +0200344 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800345
346 /* search ost in pool array */
347 for (i = 0; i < op->op_count; i++) {
Julia Lawall18751662014-09-09 15:44:08 +0200348 if (op->op_array[i] == idx) {
349 rc = -EEXIST;
350 goto out;
351 }
Peng Taod7e09d02013-05-02 16:46:55 +0800352 }
353 /* ost not found we add it */
354 op->op_array[op->op_count] = idx;
355 op->op_count++;
Peng Taod7e09d02013-05-02 16:46:55 +0800356out:
357 up_write(&op->op_rw_sem);
358 return rc;
359}
360
361int lov_ost_pool_remove(struct ost_pool *op, __u32 idx)
362{
363 int i;
Peng Taod7e09d02013-05-02 16:46:55 +0800364
365 down_write(&op->op_rw_sem);
366
367 for (i = 0; i < op->op_count; i++) {
368 if (op->op_array[i] == idx) {
369 memmove(&op->op_array[i], &op->op_array[i + 1],
370 (op->op_count - i - 1) * sizeof(op->op_array[0]));
371 op->op_count--;
372 up_write(&op->op_rw_sem);
Peng Taod7e09d02013-05-02 16:46:55 +0800373 return 0;
374 }
375 }
376
377 up_write(&op->op_rw_sem);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800378 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +0800379}
380
381int lov_ost_pool_free(struct ost_pool *op)
382{
Peng Taod7e09d02013-05-02 16:46:55 +0800383 if (op->op_size == 0)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800384 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800385
386 down_write(&op->op_rw_sem);
387
Julia Lawall840c94d2015-04-12 23:34:20 +0200388 kfree(op->op_array);
Peng Taod7e09d02013-05-02 16:46:55 +0800389 op->op_array = NULL;
390 op->op_count = 0;
391 op->op_size = 0;
392
393 up_write(&op->op_rw_sem);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800394 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800395}
396
Peng Taod7e09d02013-05-02 16:46:55 +0800397int lov_pool_new(struct obd_device *obd, char *poolname)
398{
399 struct lov_obd *lov;
400 struct pool_desc *new_pool;
401 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800402
Emoly Liu49880262016-08-20 17:34:27 -0400403 lov = &obd->u.lov;
Peng Taod7e09d02013-05-02 16:46:55 +0800404
405 if (strlen(poolname) > LOV_MAXPOOLNAME)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800406 return -ENAMETOOLONG;
Peng Taod7e09d02013-05-02 16:46:55 +0800407
Julia Lawall840c94d2015-04-12 23:34:20 +0200408 new_pool = kzalloc(sizeof(*new_pool), GFP_NOFS);
Julia Lawall36a86fe2015-06-20 18:59:04 +0200409 if (!new_pool)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800410 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +0800411
Dmitry Eremin9563fe82015-11-04 13:40:00 -0500412 strlcpy(new_pool->pool_name, poolname, sizeof(new_pool->pool_name));
Peng Taod7e09d02013-05-02 16:46:55 +0800413 new_pool->pool_lobd = obd;
414 /* ref count init to 1 because when created a pool is always used
415 * up to deletion
416 */
417 atomic_set(&new_pool->pool_refcount, 1);
418 rc = lov_ost_pool_init(&new_pool->pool_obds, 0);
419 if (rc)
Julia Lawall18751662014-09-09 15:44:08 +0200420 goto out_err;
Peng Taod7e09d02013-05-02 16:46:55 +0800421
Peng Taod7e09d02013-05-02 16:46:55 +0800422 INIT_HLIST_NODE(&new_pool->pool_hash);
423
Oleg Drokin64f17a12016-02-16 00:46:37 -0500424 /* get ref for debugfs file */
Peng Taod7e09d02013-05-02 16:46:55 +0800425 lov_pool_getref(new_pool);
Dmitry Eremin61e87ab2015-05-21 15:32:27 -0400426 new_pool->pool_debugfs_entry = ldebugfs_add_simple(
427 lov->lov_pool_debugfs_entry,
428 poolname, new_pool,
429 &pool_proc_operations);
430 if (IS_ERR_OR_NULL(new_pool->pool_debugfs_entry)) {
431 CWARN("Cannot add debugfs pool entry "LOV_POOLNAMEF"\n",
432 poolname);
433 new_pool->pool_debugfs_entry = NULL;
Peng Taod7e09d02013-05-02 16:46:55 +0800434 lov_pool_putref(new_pool);
435 }
Dmitry Eremin61e87ab2015-05-21 15:32:27 -0400436 CDEBUG(D_INFO, "pool %p - proc %p\n",
Oleg Drokinf1564f12016-02-26 01:50:05 -0500437 new_pool, new_pool->pool_debugfs_entry);
Peng Taod7e09d02013-05-02 16:46:55 +0800438
439 spin_lock(&obd->obd_dev_lock);
440 list_add_tail(&new_pool->pool_list, &lov->lov_pool_list);
441 lov->lov_pool_count++;
442 spin_unlock(&obd->obd_dev_lock);
443
444 /* add to find only when it fully ready */
445 rc = cfs_hash_add_unique(lov->lov_pools_hash_body, poolname,
446 &new_pool->pool_hash);
Julia Lawall18751662014-09-09 15:44:08 +0200447 if (rc) {
448 rc = -EEXIST;
449 goto out_err;
450 }
Peng Taod7e09d02013-05-02 16:46:55 +0800451
452 CDEBUG(D_CONFIG, LOV_POOLNAMEF" is pool #%d\n",
453 poolname, lov->lov_pool_count);
454
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800455 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800456
457out_err:
458 spin_lock(&obd->obd_dev_lock);
459 list_del_init(&new_pool->pool_list);
460 lov->lov_pool_count--;
461 spin_unlock(&obd->obd_dev_lock);
Dmitry Eremin61e87ab2015-05-21 15:32:27 -0400462 ldebugfs_remove(&new_pool->pool_debugfs_entry);
Peng Taod7e09d02013-05-02 16:46:55 +0800463 lov_ost_pool_free(&new_pool->pool_obds);
Julia Lawall840c94d2015-04-12 23:34:20 +0200464 kfree(new_pool);
John L. Hammondae322e02016-05-04 10:28:54 -0400465
Peng Taod7e09d02013-05-02 16:46:55 +0800466 return rc;
467}
468
469int lov_pool_del(struct obd_device *obd, char *poolname)
470{
471 struct lov_obd *lov;
472 struct pool_desc *pool;
Peng Taod7e09d02013-05-02 16:46:55 +0800473
Emoly Liu49880262016-08-20 17:34:27 -0400474 lov = &obd->u.lov;
Peng Taod7e09d02013-05-02 16:46:55 +0800475
476 /* lookup and kill hash reference */
477 pool = cfs_hash_del_key(lov->lov_pools_hash_body, poolname);
Oleg Drokin00697c42016-02-16 00:46:45 -0500478 if (!pool)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800479 return -ENOENT;
Peng Taod7e09d02013-05-02 16:46:55 +0800480
Dmitry Eremin61e87ab2015-05-21 15:32:27 -0400481 if (!IS_ERR_OR_NULL(pool->pool_debugfs_entry)) {
482 CDEBUG(D_INFO, "proc entry %p\n", pool->pool_debugfs_entry);
483 ldebugfs_remove(&pool->pool_debugfs_entry);
Peng Taod7e09d02013-05-02 16:46:55 +0800484 lov_pool_putref(pool);
485 }
486
487 spin_lock(&obd->obd_dev_lock);
488 list_del_init(&pool->pool_list);
489 lov->lov_pool_count--;
490 spin_unlock(&obd->obd_dev_lock);
491
492 /* release last reference */
493 lov_pool_putref(pool);
494
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800495 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800496}
497
Peng Taod7e09d02013-05-02 16:46:55 +0800498int lov_pool_add(struct obd_device *obd, char *poolname, char *ostname)
499{
500 struct obd_uuid ost_uuid;
501 struct lov_obd *lov;
502 struct pool_desc *pool;
503 unsigned int lov_idx;
504 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800505
Emoly Liu49880262016-08-20 17:34:27 -0400506 lov = &obd->u.lov;
Peng Taod7e09d02013-05-02 16:46:55 +0800507
508 pool = cfs_hash_lookup(lov->lov_pools_hash_body, poolname);
Oleg Drokin00697c42016-02-16 00:46:45 -0500509 if (!pool)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800510 return -ENOENT;
Peng Taod7e09d02013-05-02 16:46:55 +0800511
512 obd_str2uuid(&ost_uuid, ostname);
513
Peng Taod7e09d02013-05-02 16:46:55 +0800514 /* search ost in lov array */
515 obd_getref(obd);
516 for (lov_idx = 0; lov_idx < lov->desc.ld_tgt_count; lov_idx++) {
517 if (!lov->lov_tgts[lov_idx])
518 continue;
519 if (obd_uuid_equals(&ost_uuid,
Emoly Liu49880262016-08-20 17:34:27 -0400520 &lov->lov_tgts[lov_idx]->ltd_uuid))
Peng Taod7e09d02013-05-02 16:46:55 +0800521 break;
522 }
523 /* test if ost found in lov */
Julia Lawall18751662014-09-09 15:44:08 +0200524 if (lov_idx == lov->desc.ld_tgt_count) {
525 rc = -EINVAL;
526 goto out;
527 }
Peng Taod7e09d02013-05-02 16:46:55 +0800528
529 rc = lov_ost_pool_add(&pool->pool_obds, lov_idx, lov->lov_tgt_size);
530 if (rc)
Julia Lawall18751662014-09-09 15:44:08 +0200531 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800532
Peng Taod7e09d02013-05-02 16:46:55 +0800533 CDEBUG(D_CONFIG, "Added %s to "LOV_POOLNAMEF" as member %d\n",
534 ostname, poolname, pool_tgt_count(pool));
535
Peng Taod7e09d02013-05-02 16:46:55 +0800536out:
537 obd_putref(obd);
538 lov_pool_putref(pool);
539 return rc;
540}
541
542int lov_pool_remove(struct obd_device *obd, char *poolname, char *ostname)
543{
544 struct obd_uuid ost_uuid;
545 struct lov_obd *lov;
546 struct pool_desc *pool;
547 unsigned int lov_idx;
548 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800549
Emoly Liu49880262016-08-20 17:34:27 -0400550 lov = &obd->u.lov;
Peng Taod7e09d02013-05-02 16:46:55 +0800551
552 pool = cfs_hash_lookup(lov->lov_pools_hash_body, poolname);
Oleg Drokin00697c42016-02-16 00:46:45 -0500553 if (!pool)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800554 return -ENOENT;
Peng Taod7e09d02013-05-02 16:46:55 +0800555
556 obd_str2uuid(&ost_uuid, ostname);
557
558 obd_getref(obd);
559 /* search ost in lov array, to get index */
560 for (lov_idx = 0; lov_idx < lov->desc.ld_tgt_count; lov_idx++) {
561 if (!lov->lov_tgts[lov_idx])
562 continue;
563
564 if (obd_uuid_equals(&ost_uuid,
Emoly Liu49880262016-08-20 17:34:27 -0400565 &lov->lov_tgts[lov_idx]->ltd_uuid))
Peng Taod7e09d02013-05-02 16:46:55 +0800566 break;
567 }
568
569 /* test if ost found in lov */
Julia Lawall18751662014-09-09 15:44:08 +0200570 if (lov_idx == lov->desc.ld_tgt_count) {
571 rc = -EINVAL;
572 goto out;
573 }
Peng Taod7e09d02013-05-02 16:46:55 +0800574
575 lov_ost_pool_remove(&pool->pool_obds, lov_idx);
576
Peng Taod7e09d02013-05-02 16:46:55 +0800577 CDEBUG(D_CONFIG, "%s removed from "LOV_POOLNAMEF"\n", ostname,
578 poolname);
579
Peng Taod7e09d02013-05-02 16:46:55 +0800580out:
581 obd_putref(obd);
582 lov_pool_putref(pool);
583 return rc;
584}