1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 only,
10 * as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License version 2 for more details (a copy is included
16 * in the LICENSE file that accompanied this code).
18 * You should have received a copy of the GNU General Public License
19 * version 2 along with this program; If not, see
20 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23 * CA 95054 USA or visit www.sun.com if you need additional information or
29 * Copyright 2008 Sun Microsystems, Inc. All rights reserved
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
37 #define DEBUG_SUBSYSTEM S_RPC
40 # include <liblustre.h>
43 #include <obd_support.h>
44 #include <obd_class.h>
45 #include <lustre_lib.h>
46 #include <lustre_ha.h>
47 #include <lustre_net.h>
48 #include <lprocfs_status.h>
50 struct uuid_nid_data {
51 struct list_head un_list;
54 int un_count; /* nid/uuid pair refcount */
57 /* FIXME: This should probably become more elegant than a global linked list */
58 static struct list_head g_uuid_list;
59 static spinlock_t g_uuid_lock;
61 void class_init_uuidlist(void)
63 CFS_INIT_LIST_HEAD(&g_uuid_list);
64 spin_lock_init(&g_uuid_lock);
67 void class_exit_uuidlist(void)
73 int lustre_uuid_to_peer(const char *uuid, lnet_nid_t *peer_nid, int index)
75 struct list_head *tmp;
77 spin_lock (&g_uuid_lock);
79 list_for_each(tmp, &g_uuid_list) {
80 struct uuid_nid_data *data =
81 list_entry(tmp, struct uuid_nid_data, un_list);
83 if (!strcmp(data->un_uuid, uuid) &&
85 *peer_nid = data->un_nid;
87 spin_unlock (&g_uuid_lock);
92 spin_unlock (&g_uuid_lock);
96 /* Add a nid to a niduuid. Multiple nids can be added to a single uuid;
97 LNET will choose the best one. */
98 int class_add_uuid(const char *uuid, __u64 nid)
100 struct uuid_nid_data *data, *entry;
101 int nob = strnlen (uuid, CFS_PAGE_SIZE) + 1;
104 LASSERT(nid != 0); /* valid newconfig NID is never zero */
106 if (nob > CFS_PAGE_SIZE)
109 OBD_ALLOC(data, sizeof(*data));
113 OBD_ALLOC(data->un_uuid, nob);
115 OBD_FREE(data, sizeof(*data));
119 memcpy(data->un_uuid, uuid, nob);
123 spin_lock (&g_uuid_lock);
125 list_for_each_entry(entry, &g_uuid_list, un_list) {
126 if (entry->un_nid == nid &&
127 (strcmp(entry->un_uuid, uuid) == 0)) {
134 list_add(&data->un_list, &g_uuid_list);
135 spin_unlock (&g_uuid_lock);
138 CDEBUG(D_INFO, "found uuid %s %s cnt=%d\n", uuid,
139 libcfs_nid2str(nid), entry->un_count);
140 OBD_FREE(data->un_uuid, nob);
141 OBD_FREE(data, sizeof(*data));
143 CDEBUG(D_INFO, "add uuid %s %s\n", uuid, libcfs_nid2str(nid));
148 /* Delete the nids for one uuid if specified, otherwise delete all */
149 int class_del_uuid(const char *uuid)
151 CFS_LIST_HEAD(deathrow);
152 struct uuid_nid_data *data;
155 spin_lock (&g_uuid_lock);
157 list_splice_init(&g_uuid_list, &deathrow);
160 list_for_each_entry(data, &g_uuid_list, un_list) {
161 if (strcmp(data->un_uuid, uuid))
164 LASSERT(data->un_count >= 0);
165 if (data->un_count == 0)
166 list_move(&data->un_list, &deathrow);
171 spin_unlock (&g_uuid_lock);
175 CERROR("Try to delete a non-existent uuid %s\n", uuid);
179 while (!list_empty(&deathrow)) {
180 data = list_entry(deathrow.next, struct uuid_nid_data, un_list);
181 list_del(&data->un_list);
183 CDEBUG(D_INFO, "del uuid %s %s\n", data->un_uuid,
184 libcfs_nid2str(data->un_nid));
186 OBD_FREE(data->un_uuid, strlen(data->un_uuid) + 1);
187 OBD_FREE(data, sizeof(*data));