blob: 63fb1b26d964b2051c7a5bb44046a3831884887a [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * slot_map.c
5 *
6 *
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/types.h>
27#include <linux/slab.h>
28#include <linux/highmem.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080029
30#define MLOG_MASK_PREFIX ML_SUPER
31#include <cluster/masklog.h>
32
33#include "ocfs2.h"
34
35#include "dlmglue.h"
36#include "extent_map.h"
37#include "heartbeat.h"
38#include "inode.h"
39#include "slot_map.h"
40#include "super.h"
41#include "sysfile.h"
42
43#include "buffer_head_io.h"
44
Joel Beckerfc881fa2008-02-01 12:04:48 -080045
46struct ocfs2_slot {
47 int sl_valid;
48 unsigned int sl_node_num;
49};
50
Joel Beckerd85b20e2008-02-01 12:01:05 -080051struct ocfs2_slot_info {
Joel Becker386a2ef2008-02-01 12:06:54 -080052 int si_extended;
53 int si_slots_per_block;
Joel Beckerd85b20e2008-02-01 12:01:05 -080054 struct inode *si_inode;
Joel Becker1c8d9a62008-02-01 11:59:07 -080055 unsigned int si_blocks;
56 struct buffer_head **si_bh;
Joel Beckerd85b20e2008-02-01 12:01:05 -080057 unsigned int si_num_slots;
Joel Beckerfc881fa2008-02-01 12:04:48 -080058 struct ocfs2_slot *si_slots;
Joel Beckerd85b20e2008-02-01 12:01:05 -080059};
60
61
Joel Beckerfc881fa2008-02-01 12:04:48 -080062static int __ocfs2_node_num_to_slot(struct ocfs2_slot_info *si,
63 unsigned int node_num);
64
65static void ocfs2_invalidate_slot(struct ocfs2_slot_info *si,
66 int slot_num)
67{
68 BUG_ON((slot_num < 0) || (slot_num >= si->si_num_slots));
69 si->si_slots[slot_num].sl_valid = 0;
70}
71
72static void ocfs2_set_slot(struct ocfs2_slot_info *si,
73 int slot_num, unsigned int node_num)
74{
75 BUG_ON((slot_num < 0) || (slot_num >= si->si_num_slots));
76 BUG_ON((node_num == O2NM_INVALID_NODE_NUM) ||
77 (node_num >= O2NM_MAX_NODES));
78
79 si->si_slots[slot_num].sl_valid = 1;
80 si->si_slots[slot_num].sl_node_num = node_num;
81}
Mark Fashehccd979b2005-12-15 14:31:24 -080082
Joel Becker386a2ef2008-02-01 12:06:54 -080083/* This version is for the extended slot map */
84static void ocfs2_update_slot_info_extended(struct ocfs2_slot_info *si)
85{
86 int b, i, slotno;
87 struct ocfs2_slot_map_extended *se;
88
89 slotno = 0;
90 for (b = 0; b < si->si_blocks; b++) {
91 se = (struct ocfs2_slot_map_extended *)si->si_bh[b]->b_data;
92 for (i = 0;
93 (i < si->si_slots_per_block) &&
94 (slotno < si->si_num_slots);
95 i++, slotno++) {
96 if (se->se_slots[i].es_valid)
97 ocfs2_set_slot(si, slotno,
98 le32_to_cpu(se->se_slots[i].es_node_num));
99 else
100 ocfs2_invalidate_slot(si, slotno);
101 }
102 }
103}
104
Joel Beckerd85b20e2008-02-01 12:01:05 -0800105/*
106 * Post the slot information on disk into our slot_info struct.
107 * Must be protected by osb_lock.
108 */
Joel Becker386a2ef2008-02-01 12:06:54 -0800109static void ocfs2_update_slot_info_old(struct ocfs2_slot_info *si)
Mark Fashehccd979b2005-12-15 14:31:24 -0800110{
111 int i;
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800112 struct ocfs2_slot_map *sm;
Mark Fashehccd979b2005-12-15 14:31:24 -0800113
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800114 sm = (struct ocfs2_slot_map *)si->si_bh[0]->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800115
Joel Beckerfc881fa2008-02-01 12:04:48 -0800116 for (i = 0; i < si->si_num_slots; i++) {
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800117 if (le16_to_cpu(sm->sm_slots[i]) == (u16)OCFS2_INVALID_SLOT)
Joel Beckerfc881fa2008-02-01 12:04:48 -0800118 ocfs2_invalidate_slot(si, i);
119 else
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800120 ocfs2_set_slot(si, i, le16_to_cpu(sm->sm_slots[i]));
Joel Beckerfc881fa2008-02-01 12:04:48 -0800121 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800122}
123
Joel Becker386a2ef2008-02-01 12:06:54 -0800124static void ocfs2_update_slot_info(struct ocfs2_slot_info *si)
125{
126 /*
127 * The slot data will have been refreshed when ocfs2_super_lock
128 * was taken.
129 */
130 if (si->si_extended)
131 ocfs2_update_slot_info_extended(si);
132 else
133 ocfs2_update_slot_info_old(si);
134}
135
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800136int ocfs2_refresh_slot_info(struct ocfs2_super *osb)
137{
138 int ret;
139 struct ocfs2_slot_info *si = osb->slot_info;
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800140
141 if (si == NULL)
142 return 0;
143
Joel Becker1c8d9a62008-02-01 11:59:07 -0800144 BUG_ON(si->si_blocks == 0);
145 BUG_ON(si->si_bh == NULL);
146
147 mlog(0, "Refreshing slot map, reading %u block(s)\n",
148 si->si_blocks);
149
150 /*
151 * We pass -1 as blocknr because we expect all of si->si_bh to
152 * be !NULL. Thus, ocfs2_read_blocks() will ignore blocknr. If
153 * this is not true, the read of -1 (UINT64_MAX) will fail.
154 */
155 ret = ocfs2_read_blocks(osb, -1, si->si_blocks, si->si_bh, 0,
156 si->si_inode);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800157 if (ret == 0) {
158 spin_lock(&osb->osb_lock);
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800159 ocfs2_update_slot_info(si);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800160 spin_unlock(&osb->osb_lock);
161 }
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800162
163 return ret;
164}
165
Mark Fashehccd979b2005-12-15 14:31:24 -0800166/* post the our slot info stuff into it's destination bh and write it
167 * out. */
Joel Becker386a2ef2008-02-01 12:06:54 -0800168static void ocfs2_update_disk_slot_extended(struct ocfs2_slot_info *si,
169 int slot_num,
170 struct buffer_head **bh)
Mark Fashehccd979b2005-12-15 14:31:24 -0800171{
Joel Becker386a2ef2008-02-01 12:06:54 -0800172 int blkind = slot_num / si->si_slots_per_block;
173 int slotno = slot_num % si->si_slots_per_block;
174 struct ocfs2_slot_map_extended *se;
175
176 BUG_ON(blkind >= si->si_blocks);
177
178 se = (struct ocfs2_slot_map_extended *)si->si_bh[blkind]->b_data;
179 se->se_slots[slotno].es_valid = si->si_slots[slot_num].sl_valid;
180 if (si->si_slots[slot_num].sl_valid)
181 se->se_slots[slotno].es_node_num =
182 cpu_to_le32(si->si_slots[slot_num].sl_node_num);
183 *bh = si->si_bh[blkind];
184}
185
186static void ocfs2_update_disk_slot_old(struct ocfs2_slot_info *si,
187 int slot_num,
188 struct buffer_head **bh)
189{
190 int i;
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800191 struct ocfs2_slot_map *sm;
Mark Fashehccd979b2005-12-15 14:31:24 -0800192
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800193 sm = (struct ocfs2_slot_map *)si->si_bh[0]->b_data;
Joel Beckerfc881fa2008-02-01 12:04:48 -0800194 for (i = 0; i < si->si_num_slots; i++) {
195 if (si->si_slots[i].sl_valid)
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800196 sm->sm_slots[i] =
Joel Beckerfc881fa2008-02-01 12:04:48 -0800197 cpu_to_le16(si->si_slots[i].sl_node_num);
198 else
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800199 sm->sm_slots[i] = cpu_to_le16(OCFS2_INVALID_SLOT);
Joel Beckerfc881fa2008-02-01 12:04:48 -0800200 }
Joel Becker386a2ef2008-02-01 12:06:54 -0800201 *bh = si->si_bh[0];
202}
203
204static int ocfs2_update_disk_slot(struct ocfs2_super *osb,
205 struct ocfs2_slot_info *si,
206 int slot_num)
207{
208 int status;
209 struct buffer_head *bh;
210
211 spin_lock(&osb->osb_lock);
212 if (si->si_extended)
213 ocfs2_update_disk_slot_extended(si, slot_num, &bh);
214 else
215 ocfs2_update_disk_slot_old(si, slot_num, &bh);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800216 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800217
Joel Becker386a2ef2008-02-01 12:06:54 -0800218 status = ocfs2_write_block(osb, bh, si->si_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800219 if (status < 0)
220 mlog_errno(status);
221
222 return status;
223}
224
Joel Becker1c8d9a62008-02-01 11:59:07 -0800225/*
226 * Calculate how many bytes are needed by the slot map. Returns
227 * an error if the slot map file is too small.
228 */
229static int ocfs2_slot_map_physical_size(struct ocfs2_super *osb,
230 struct inode *inode,
231 unsigned long long *bytes)
232{
233 unsigned long long bytes_needed;
234
Joel Becker386a2ef2008-02-01 12:06:54 -0800235 if (ocfs2_uses_extended_slot_map(osb)) {
236 bytes_needed = osb->max_slots *
237 sizeof(struct ocfs2_extended_slot);
238 } else {
239 bytes_needed = osb->max_slots * sizeof(__le16);
240 }
Joel Becker1c8d9a62008-02-01 11:59:07 -0800241 if (bytes_needed > i_size_read(inode)) {
242 mlog(ML_ERROR,
243 "Slot map file is too small! (size %llu, needed %llu)\n",
244 i_size_read(inode), bytes_needed);
245 return -ENOSPC;
246 }
247
248 *bytes = bytes_needed;
249 return 0;
250}
251
Joel Beckerfc881fa2008-02-01 12:04:48 -0800252/* try to find global node in the slot info. Returns -ENOENT
253 * if nothing is found. */
254static int __ocfs2_node_num_to_slot(struct ocfs2_slot_info *si,
255 unsigned int node_num)
Mark Fashehccd979b2005-12-15 14:31:24 -0800256{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800257 int i, ret = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -0800258
259 for(i = 0; i < si->si_num_slots; i++) {
Joel Beckerfc881fa2008-02-01 12:04:48 -0800260 if (si->si_slots[i].sl_valid &&
261 (node_num == si->si_slots[i].sl_node_num)) {
262 ret = i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800263 break;
264 }
265 }
Joel Beckerfc881fa2008-02-01 12:04:48 -0800266
Mark Fashehccd979b2005-12-15 14:31:24 -0800267 return ret;
268}
269
Joel Beckerfc881fa2008-02-01 12:04:48 -0800270static int __ocfs2_find_empty_slot(struct ocfs2_slot_info *si,
271 int preferred)
Mark Fashehccd979b2005-12-15 14:31:24 -0800272{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800273 int i, ret = -ENOSPC;
Mark Fashehccd979b2005-12-15 14:31:24 -0800274
Joel Beckerfc881fa2008-02-01 12:04:48 -0800275 if ((preferred >= 0) && (preferred < si->si_num_slots)) {
276 if (!si->si_slots[preferred].sl_valid) {
Sunil Mushranbaf46612007-06-18 17:00:24 -0700277 ret = preferred;
278 goto out;
279 }
280 }
281
Mark Fashehccd979b2005-12-15 14:31:24 -0800282 for(i = 0; i < si->si_num_slots; i++) {
Joel Beckerfc881fa2008-02-01 12:04:48 -0800283 if (!si->si_slots[i].sl_valid) {
284 ret = i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800285 break;
286 }
287 }
Sunil Mushranbaf46612007-06-18 17:00:24 -0700288out:
Mark Fashehccd979b2005-12-15 14:31:24 -0800289 return ret;
290}
291
Joel Beckerd85b20e2008-02-01 12:01:05 -0800292int ocfs2_node_num_to_slot(struct ocfs2_super *osb, unsigned int node_num)
Mark Fashehccd979b2005-12-15 14:31:24 -0800293{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800294 int slot;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800295 struct ocfs2_slot_info *si = osb->slot_info;
Mark Fashehccd979b2005-12-15 14:31:24 -0800296
Joel Beckerd85b20e2008-02-01 12:01:05 -0800297 spin_lock(&osb->osb_lock);
298 slot = __ocfs2_node_num_to_slot(si, node_num);
299 spin_unlock(&osb->osb_lock);
300
Joel Beckerd85b20e2008-02-01 12:01:05 -0800301 return slot;
302}
303
304int ocfs2_slot_to_node_num_locked(struct ocfs2_super *osb, int slot_num,
305 unsigned int *node_num)
306{
307 struct ocfs2_slot_info *si = osb->slot_info;
308
309 assert_spin_locked(&osb->osb_lock);
310
311 BUG_ON(slot_num < 0);
312 BUG_ON(slot_num > osb->max_slots);
313
Joel Beckerfc881fa2008-02-01 12:04:48 -0800314 if (!si->si_slots[slot_num].sl_valid)
Joel Beckerd85b20e2008-02-01 12:01:05 -0800315 return -ENOENT;
316
Joel Beckerfc881fa2008-02-01 12:04:48 -0800317 *node_num = si->si_slots[slot_num].sl_node_num;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800318 return 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800319}
320
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800321static void __ocfs2_free_slot_info(struct ocfs2_slot_info *si)
322{
Joel Becker1c8d9a62008-02-01 11:59:07 -0800323 unsigned int i;
324
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800325 if (si == NULL)
326 return;
327
328 if (si->si_inode)
329 iput(si->si_inode);
Joel Becker1c8d9a62008-02-01 11:59:07 -0800330 if (si->si_bh) {
331 for (i = 0; i < si->si_blocks; i++) {
332 if (si->si_bh[i]) {
333 brelse(si->si_bh[i]);
334 si->si_bh[i] = NULL;
335 }
336 }
337 kfree(si->si_bh);
338 }
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800339
340 kfree(si);
341}
342
Joel Beckerfc881fa2008-02-01 12:04:48 -0800343int ocfs2_clear_slot(struct ocfs2_super *osb, int slot_num)
Mark Fashehccd979b2005-12-15 14:31:24 -0800344{
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800345 struct ocfs2_slot_info *si = osb->slot_info;
346
347 if (si == NULL)
348 return 0;
349
Joel Beckerd85b20e2008-02-01 12:01:05 -0800350 spin_lock(&osb->osb_lock);
Joel Beckerfc881fa2008-02-01 12:04:48 -0800351 ocfs2_invalidate_slot(si, slot_num);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800352 spin_unlock(&osb->osb_lock);
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800353
Joel Becker386a2ef2008-02-01 12:06:54 -0800354 return ocfs2_update_disk_slot(osb, osb->slot_info, slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800355}
356
Joel Becker1c8d9a62008-02-01 11:59:07 -0800357static int ocfs2_map_slot_buffers(struct ocfs2_super *osb,
358 struct ocfs2_slot_info *si)
359{
360 int status = 0;
361 u64 blkno;
362 unsigned long long blocks, bytes;
363 unsigned int i;
364 struct buffer_head *bh;
365
366 status = ocfs2_slot_map_physical_size(osb, si->si_inode, &bytes);
367 if (status)
368 goto bail;
369
370 blocks = ocfs2_blocks_for_bytes(si->si_inode->i_sb, bytes);
371 BUG_ON(blocks > UINT_MAX);
372 si->si_blocks = blocks;
373 if (!si->si_blocks)
374 goto bail;
375
Joel Becker386a2ef2008-02-01 12:06:54 -0800376 if (si->si_extended)
377 si->si_slots_per_block =
378 (osb->sb->s_blocksize /
379 sizeof(struct ocfs2_extended_slot));
380 else
381 si->si_slots_per_block = osb->sb->s_blocksize / sizeof(__le16);
382
383 /* The size checks above should ensure this */
384 BUG_ON((osb->max_slots / si->si_slots_per_block) > blocks);
385
Joel Becker1c8d9a62008-02-01 11:59:07 -0800386 mlog(0, "Slot map needs %u buffers for %llu bytes\n",
387 si->si_blocks, bytes);
388
389 si->si_bh = kzalloc(sizeof(struct buffer_head *) * si->si_blocks,
390 GFP_KERNEL);
391 if (!si->si_bh) {
392 status = -ENOMEM;
393 mlog_errno(status);
394 goto bail;
395 }
396
397 for (i = 0; i < si->si_blocks; i++) {
398 status = ocfs2_extent_map_get_blocks(si->si_inode, i,
399 &blkno, NULL, NULL);
400 if (status < 0) {
401 mlog_errno(status);
402 goto bail;
403 }
404
405 mlog(0, "Reading slot map block %u at %llu\n", i,
406 (unsigned long long)blkno);
407
408 bh = NULL; /* Acquire a fresh bh */
409 status = ocfs2_read_block(osb, blkno, &bh, 0, si->si_inode);
410 if (status < 0) {
411 mlog_errno(status);
412 goto bail;
413 }
414
415 si->si_bh[i] = bh;
416 }
417
418bail:
419 return status;
420}
421
Mark Fashehccd979b2005-12-15 14:31:24 -0800422int ocfs2_init_slot_info(struct ocfs2_super *osb)
423{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800424 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800425 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800426 struct ocfs2_slot_info *si;
427
Joel Beckerfc881fa2008-02-01 12:04:48 -0800428 si = kzalloc(sizeof(struct ocfs2_slot_info) +
429 (sizeof(struct ocfs2_slot) * osb->max_slots),
430 GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -0800431 if (!si) {
432 status = -ENOMEM;
433 mlog_errno(status);
434 goto bail;
435 }
436
Joel Becker386a2ef2008-02-01 12:06:54 -0800437 si->si_extended = ocfs2_uses_extended_slot_map(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800438 si->si_num_slots = osb->max_slots;
Joel Beckerfc881fa2008-02-01 12:04:48 -0800439 si->si_slots = (struct ocfs2_slot *)((char *)si +
440 sizeof(struct ocfs2_slot_info));
Mark Fashehccd979b2005-12-15 14:31:24 -0800441
442 inode = ocfs2_get_system_file_inode(osb, SLOT_MAP_SYSTEM_INODE,
443 OCFS2_INVALID_SLOT);
444 if (!inode) {
445 status = -EINVAL;
446 mlog_errno(status);
447 goto bail;
448 }
449
Mark Fashehccd979b2005-12-15 14:31:24 -0800450 si->si_inode = inode;
Joel Becker1c8d9a62008-02-01 11:59:07 -0800451 status = ocfs2_map_slot_buffers(osb, si);
452 if (status < 0) {
453 mlog_errno(status);
454 goto bail;
455 }
456
Joel Beckerd85b20e2008-02-01 12:01:05 -0800457 osb->slot_info = (struct ocfs2_slot_info *)si;
Mark Fashehccd979b2005-12-15 14:31:24 -0800458bail:
459 if (status < 0 && si)
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800460 __ocfs2_free_slot_info(si);
Mark Fashehccd979b2005-12-15 14:31:24 -0800461
462 return status;
463}
464
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800465void ocfs2_free_slot_info(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800466{
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800467 struct ocfs2_slot_info *si = osb->slot_info;
468
469 osb->slot_info = NULL;
470 __ocfs2_free_slot_info(si);
Mark Fashehccd979b2005-12-15 14:31:24 -0800471}
472
473int ocfs2_find_slot(struct ocfs2_super *osb)
474{
475 int status;
Joel Beckerfc881fa2008-02-01 12:04:48 -0800476 int slot;
Mark Fashehccd979b2005-12-15 14:31:24 -0800477 struct ocfs2_slot_info *si;
478
479 mlog_entry_void();
480
481 si = osb->slot_info;
482
Joel Beckerd85b20e2008-02-01 12:01:05 -0800483 spin_lock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800484 ocfs2_update_slot_info(si);
485
Mark Fashehccd979b2005-12-15 14:31:24 -0800486 /* search for ourselves first and take the slot if it already
487 * exists. Perhaps we need to mark this in a variable for our
488 * own journal recovery? Possibly not, though we certainly
489 * need to warn to the user */
490 slot = __ocfs2_node_num_to_slot(si, osb->node_num);
Joel Beckerfc881fa2008-02-01 12:04:48 -0800491 if (slot < 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800492 /* if no slot yet, then just take 1st available
493 * one. */
Sunil Mushranbaf46612007-06-18 17:00:24 -0700494 slot = __ocfs2_find_empty_slot(si, osb->preferred_slot);
Joel Beckerfc881fa2008-02-01 12:04:48 -0800495 if (slot < 0) {
Joel Beckerd85b20e2008-02-01 12:01:05 -0800496 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800497 mlog(ML_ERROR, "no free slots available!\n");
498 status = -EINVAL;
499 goto bail;
500 }
501 } else
502 mlog(ML_NOTICE, "slot %d is already allocated to this node!\n",
503 slot);
504
Joel Beckerfc881fa2008-02-01 12:04:48 -0800505 ocfs2_set_slot(si, slot, osb->node_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800506 osb->slot_num = slot;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800507 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800508
Mark Fashehe7607ab2006-04-27 17:53:22 -0700509 mlog(0, "taking node slot %d\n", osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800510
Joel Becker386a2ef2008-02-01 12:06:54 -0800511 status = ocfs2_update_disk_slot(osb, si, osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800512 if (status < 0)
513 mlog_errno(status);
514
515bail:
516 mlog_exit(status);
517 return status;
518}
519
520void ocfs2_put_slot(struct ocfs2_super *osb)
521{
Joel Becker386a2ef2008-02-01 12:06:54 -0800522 int status, slot_num;
Mark Fashehccd979b2005-12-15 14:31:24 -0800523 struct ocfs2_slot_info *si = osb->slot_info;
524
525 if (!si)
526 return;
527
Joel Beckerd85b20e2008-02-01 12:01:05 -0800528 spin_lock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800529 ocfs2_update_slot_info(si);
530
Joel Becker386a2ef2008-02-01 12:06:54 -0800531 slot_num = osb->slot_num;
Joel Beckerfc881fa2008-02-01 12:04:48 -0800532 ocfs2_invalidate_slot(si, osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800533 osb->slot_num = OCFS2_INVALID_SLOT;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800534 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800535
Joel Becker386a2ef2008-02-01 12:06:54 -0800536 status = ocfs2_update_disk_slot(osb, si, slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800537 if (status < 0) {
538 mlog_errno(status);
539 goto bail;
540 }
541
542bail:
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800543 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800544}
545