blob: 4da0e4b1e79bf0b89d99568ddbd4b5acf28a0f09 [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Mark Fashehccd979b2005-12-15 14:31:24 -08002/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * slot_map.c
6 *
Mark Fashehccd979b2005-12-15 14:31:24 -08007 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
Mark Fashehccd979b2005-12-15 14:31:24 -08008 */
9
10#include <linux/types.h>
11#include <linux/slab.h>
12#include <linux/highmem.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080013
Mark Fashehccd979b2005-12-15 14:31:24 -080014#include <cluster/masklog.h>
15
16#include "ocfs2.h"
17
18#include "dlmglue.h"
19#include "extent_map.h"
20#include "heartbeat.h"
21#include "inode.h"
22#include "slot_map.h"
23#include "super.h"
24#include "sysfile.h"
Tao Maa8731082011-02-22 22:29:08 +080025#include "ocfs2_trace.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080026
27#include "buffer_head_io.h"
28
Joel Beckerfc881fa2008-02-01 12:04:48 -080029
30struct ocfs2_slot {
31 int sl_valid;
32 unsigned int sl_node_num;
33};
34
Joel Beckerd85b20e2008-02-01 12:01:05 -080035struct ocfs2_slot_info {
Joel Becker386a2ef2008-02-01 12:06:54 -080036 int si_extended;
37 int si_slots_per_block;
Joel Beckerd85b20e2008-02-01 12:01:05 -080038 struct inode *si_inode;
Joel Becker1c8d9a62008-02-01 11:59:07 -080039 unsigned int si_blocks;
40 struct buffer_head **si_bh;
Joel Beckerd85b20e2008-02-01 12:01:05 -080041 unsigned int si_num_slots;
Gustavo A. R. Silvaf402cf02019-03-05 15:41:48 -080042 struct ocfs2_slot si_slots[];
Joel Beckerd85b20e2008-02-01 12:01:05 -080043};
44
45
Joel Beckerfc881fa2008-02-01 12:04:48 -080046static int __ocfs2_node_num_to_slot(struct ocfs2_slot_info *si,
47 unsigned int node_num);
48
49static void ocfs2_invalidate_slot(struct ocfs2_slot_info *si,
50 int slot_num)
51{
52 BUG_ON((slot_num < 0) || (slot_num >= si->si_num_slots));
53 si->si_slots[slot_num].sl_valid = 0;
54}
55
56static void ocfs2_set_slot(struct ocfs2_slot_info *si,
57 int slot_num, unsigned int node_num)
58{
59 BUG_ON((slot_num < 0) || (slot_num >= si->si_num_slots));
Joel Beckerfc881fa2008-02-01 12:04:48 -080060
61 si->si_slots[slot_num].sl_valid = 1;
62 si->si_slots[slot_num].sl_node_num = node_num;
63}
Mark Fashehccd979b2005-12-15 14:31:24 -080064
Joel Becker386a2ef2008-02-01 12:06:54 -080065/* This version is for the extended slot map */
66static void ocfs2_update_slot_info_extended(struct ocfs2_slot_info *si)
67{
68 int b, i, slotno;
69 struct ocfs2_slot_map_extended *se;
70
71 slotno = 0;
72 for (b = 0; b < si->si_blocks; b++) {
73 se = (struct ocfs2_slot_map_extended *)si->si_bh[b]->b_data;
74 for (i = 0;
75 (i < si->si_slots_per_block) &&
76 (slotno < si->si_num_slots);
77 i++, slotno++) {
78 if (se->se_slots[i].es_valid)
79 ocfs2_set_slot(si, slotno,
80 le32_to_cpu(se->se_slots[i].es_node_num));
81 else
82 ocfs2_invalidate_slot(si, slotno);
83 }
84 }
85}
86
Joel Beckerd85b20e2008-02-01 12:01:05 -080087/*
88 * Post the slot information on disk into our slot_info struct.
89 * Must be protected by osb_lock.
90 */
Joel Becker386a2ef2008-02-01 12:06:54 -080091static void ocfs2_update_slot_info_old(struct ocfs2_slot_info *si)
Mark Fashehccd979b2005-12-15 14:31:24 -080092{
93 int i;
Joel Beckerfb86b1f2008-02-01 11:59:05 -080094 struct ocfs2_slot_map *sm;
Mark Fashehccd979b2005-12-15 14:31:24 -080095
Joel Beckerfb86b1f2008-02-01 11:59:05 -080096 sm = (struct ocfs2_slot_map *)si->si_bh[0]->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -080097
Joel Beckerfc881fa2008-02-01 12:04:48 -080098 for (i = 0; i < si->si_num_slots; i++) {
Joel Beckerfb86b1f2008-02-01 11:59:05 -080099 if (le16_to_cpu(sm->sm_slots[i]) == (u16)OCFS2_INVALID_SLOT)
Joel Beckerfc881fa2008-02-01 12:04:48 -0800100 ocfs2_invalidate_slot(si, i);
101 else
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800102 ocfs2_set_slot(si, i, le16_to_cpu(sm->sm_slots[i]));
Joel Beckerfc881fa2008-02-01 12:04:48 -0800103 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800104}
105
Joel Becker386a2ef2008-02-01 12:06:54 -0800106static void ocfs2_update_slot_info(struct ocfs2_slot_info *si)
107{
108 /*
109 * The slot data will have been refreshed when ocfs2_super_lock
110 * was taken.
111 */
112 if (si->si_extended)
113 ocfs2_update_slot_info_extended(si);
114 else
115 ocfs2_update_slot_info_old(si);
116}
117
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800118int ocfs2_refresh_slot_info(struct ocfs2_super *osb)
119{
120 int ret;
121 struct ocfs2_slot_info *si = osb->slot_info;
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800122
123 if (si == NULL)
124 return 0;
125
Joel Becker1c8d9a62008-02-01 11:59:07 -0800126 BUG_ON(si->si_blocks == 0);
127 BUG_ON(si->si_bh == NULL);
128
Tao Maa8731082011-02-22 22:29:08 +0800129 trace_ocfs2_refresh_slot_info(si->si_blocks);
Joel Becker1c8d9a62008-02-01 11:59:07 -0800130
131 /*
132 * We pass -1 as blocknr because we expect all of si->si_bh to
133 * be !NULL. Thus, ocfs2_read_blocks() will ignore blocknr. If
134 * this is not true, the read of -1 (UINT64_MAX) will fail.
135 */
Joel Becker8cb471e2009-02-10 20:00:41 -0800136 ret = ocfs2_read_blocks(INODE_CACHE(si->si_inode), -1, si->si_blocks,
137 si->si_bh, OCFS2_BH_IGNORE_CACHE, NULL);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800138 if (ret == 0) {
139 spin_lock(&osb->osb_lock);
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800140 ocfs2_update_slot_info(si);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800141 spin_unlock(&osb->osb_lock);
142 }
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800143
144 return ret;
145}
146
Mark Fashehccd979b2005-12-15 14:31:24 -0800147/* post the our slot info stuff into it's destination bh and write it
148 * out. */
Joel Becker386a2ef2008-02-01 12:06:54 -0800149static void ocfs2_update_disk_slot_extended(struct ocfs2_slot_info *si,
150 int slot_num,
151 struct buffer_head **bh)
Mark Fashehccd979b2005-12-15 14:31:24 -0800152{
Joel Becker386a2ef2008-02-01 12:06:54 -0800153 int blkind = slot_num / si->si_slots_per_block;
154 int slotno = slot_num % si->si_slots_per_block;
155 struct ocfs2_slot_map_extended *se;
156
157 BUG_ON(blkind >= si->si_blocks);
158
159 se = (struct ocfs2_slot_map_extended *)si->si_bh[blkind]->b_data;
160 se->se_slots[slotno].es_valid = si->si_slots[slot_num].sl_valid;
161 if (si->si_slots[slot_num].sl_valid)
162 se->se_slots[slotno].es_node_num =
163 cpu_to_le32(si->si_slots[slot_num].sl_node_num);
164 *bh = si->si_bh[blkind];
165}
166
167static void ocfs2_update_disk_slot_old(struct ocfs2_slot_info *si,
168 int slot_num,
169 struct buffer_head **bh)
170{
171 int i;
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800172 struct ocfs2_slot_map *sm;
Mark Fashehccd979b2005-12-15 14:31:24 -0800173
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800174 sm = (struct ocfs2_slot_map *)si->si_bh[0]->b_data;
Joel Beckerfc881fa2008-02-01 12:04:48 -0800175 for (i = 0; i < si->si_num_slots; i++) {
176 if (si->si_slots[i].sl_valid)
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800177 sm->sm_slots[i] =
Joel Beckerfc881fa2008-02-01 12:04:48 -0800178 cpu_to_le16(si->si_slots[i].sl_node_num);
179 else
Joel Beckerfb86b1f2008-02-01 11:59:05 -0800180 sm->sm_slots[i] = cpu_to_le16(OCFS2_INVALID_SLOT);
Joel Beckerfc881fa2008-02-01 12:04:48 -0800181 }
Joel Becker386a2ef2008-02-01 12:06:54 -0800182 *bh = si->si_bh[0];
183}
184
185static int ocfs2_update_disk_slot(struct ocfs2_super *osb,
186 struct ocfs2_slot_info *si,
187 int slot_num)
188{
189 int status;
190 struct buffer_head *bh;
191
192 spin_lock(&osb->osb_lock);
193 if (si->si_extended)
194 ocfs2_update_disk_slot_extended(si, slot_num, &bh);
195 else
196 ocfs2_update_disk_slot_old(si, slot_num, &bh);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800197 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800198
Joel Becker8cb471e2009-02-10 20:00:41 -0800199 status = ocfs2_write_block(osb, bh, INODE_CACHE(si->si_inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800200 if (status < 0)
201 mlog_errno(status);
202
203 return status;
204}
205
Joel Becker1c8d9a62008-02-01 11:59:07 -0800206/*
207 * Calculate how many bytes are needed by the slot map. Returns
208 * an error if the slot map file is too small.
209 */
210static int ocfs2_slot_map_physical_size(struct ocfs2_super *osb,
211 struct inode *inode,
212 unsigned long long *bytes)
213{
214 unsigned long long bytes_needed;
215
Joel Becker386a2ef2008-02-01 12:06:54 -0800216 if (ocfs2_uses_extended_slot_map(osb)) {
217 bytes_needed = osb->max_slots *
218 sizeof(struct ocfs2_extended_slot);
219 } else {
220 bytes_needed = osb->max_slots * sizeof(__le16);
221 }
Joel Becker1c8d9a62008-02-01 11:59:07 -0800222 if (bytes_needed > i_size_read(inode)) {
223 mlog(ML_ERROR,
224 "Slot map file is too small! (size %llu, needed %llu)\n",
225 i_size_read(inode), bytes_needed);
226 return -ENOSPC;
227 }
228
229 *bytes = bytes_needed;
230 return 0;
231}
232
Joel Beckerfc881fa2008-02-01 12:04:48 -0800233/* try to find global node in the slot info. Returns -ENOENT
234 * if nothing is found. */
235static int __ocfs2_node_num_to_slot(struct ocfs2_slot_info *si,
236 unsigned int node_num)
Mark Fashehccd979b2005-12-15 14:31:24 -0800237{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800238 int i, ret = -ENOENT;
Mark Fashehccd979b2005-12-15 14:31:24 -0800239
240 for(i = 0; i < si->si_num_slots; i++) {
Joel Beckerfc881fa2008-02-01 12:04:48 -0800241 if (si->si_slots[i].sl_valid &&
242 (node_num == si->si_slots[i].sl_node_num)) {
243 ret = i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800244 break;
245 }
246 }
Joel Beckerfc881fa2008-02-01 12:04:48 -0800247
Mark Fashehccd979b2005-12-15 14:31:24 -0800248 return ret;
249}
250
Joel Beckerfc881fa2008-02-01 12:04:48 -0800251static int __ocfs2_find_empty_slot(struct ocfs2_slot_info *si,
252 int preferred)
Mark Fashehccd979b2005-12-15 14:31:24 -0800253{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800254 int i, ret = -ENOSPC;
Mark Fashehccd979b2005-12-15 14:31:24 -0800255
Joel Beckerfc881fa2008-02-01 12:04:48 -0800256 if ((preferred >= 0) && (preferred < si->si_num_slots)) {
Gang He912f6552020-06-01 21:45:29 -0700257 if (!si->si_slots[preferred].sl_valid ||
258 !si->si_slots[preferred].sl_node_num) {
Sunil Mushranbaf46612007-06-18 17:00:24 -0700259 ret = preferred;
260 goto out;
261 }
262 }
263
Mark Fashehccd979b2005-12-15 14:31:24 -0800264 for(i = 0; i < si->si_num_slots; i++) {
Gang He912f6552020-06-01 21:45:29 -0700265 if (!si->si_slots[i].sl_valid ||
266 !si->si_slots[i].sl_node_num) {
Joel Beckerfc881fa2008-02-01 12:04:48 -0800267 ret = i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800268 break;
269 }
270 }
Sunil Mushranbaf46612007-06-18 17:00:24 -0700271out:
Mark Fashehccd979b2005-12-15 14:31:24 -0800272 return ret;
273}
274
Joel Beckerd85b20e2008-02-01 12:01:05 -0800275int ocfs2_node_num_to_slot(struct ocfs2_super *osb, unsigned int node_num)
Mark Fashehccd979b2005-12-15 14:31:24 -0800276{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800277 int slot;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800278 struct ocfs2_slot_info *si = osb->slot_info;
Mark Fashehccd979b2005-12-15 14:31:24 -0800279
Joel Beckerd85b20e2008-02-01 12:01:05 -0800280 spin_lock(&osb->osb_lock);
281 slot = __ocfs2_node_num_to_slot(si, node_num);
282 spin_unlock(&osb->osb_lock);
283
Joel Beckerd85b20e2008-02-01 12:01:05 -0800284 return slot;
285}
286
287int ocfs2_slot_to_node_num_locked(struct ocfs2_super *osb, int slot_num,
288 unsigned int *node_num)
289{
290 struct ocfs2_slot_info *si = osb->slot_info;
291
292 assert_spin_locked(&osb->osb_lock);
293
294 BUG_ON(slot_num < 0);
Dan Carpenter519a2862014-12-10 15:41:37 -0800295 BUG_ON(slot_num >= osb->max_slots);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800296
Joel Beckerfc881fa2008-02-01 12:04:48 -0800297 if (!si->si_slots[slot_num].sl_valid)
Joel Beckerd85b20e2008-02-01 12:01:05 -0800298 return -ENOENT;
299
Joel Beckerfc881fa2008-02-01 12:04:48 -0800300 *node_num = si->si_slots[slot_num].sl_node_num;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800301 return 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800302}
303
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800304static void __ocfs2_free_slot_info(struct ocfs2_slot_info *si)
305{
Joel Becker1c8d9a62008-02-01 11:59:07 -0800306 unsigned int i;
307
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800308 if (si == NULL)
309 return;
310
Joseph Qi72865d92016-01-14 15:17:27 -0800311 iput(si->si_inode);
Joel Becker1c8d9a62008-02-01 11:59:07 -0800312 if (si->si_bh) {
313 for (i = 0; i < si->si_blocks; i++) {
314 if (si->si_bh[i]) {
315 brelse(si->si_bh[i]);
316 si->si_bh[i] = NULL;
317 }
318 }
319 kfree(si->si_bh);
320 }
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800321
322 kfree(si);
323}
324
Joel Beckerfc881fa2008-02-01 12:04:48 -0800325int ocfs2_clear_slot(struct ocfs2_super *osb, int slot_num)
Mark Fashehccd979b2005-12-15 14:31:24 -0800326{
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800327 struct ocfs2_slot_info *si = osb->slot_info;
328
329 if (si == NULL)
330 return 0;
331
Joel Beckerd85b20e2008-02-01 12:01:05 -0800332 spin_lock(&osb->osb_lock);
Joel Beckerfc881fa2008-02-01 12:04:48 -0800333 ocfs2_invalidate_slot(si, slot_num);
Joel Beckerd85b20e2008-02-01 12:01:05 -0800334 spin_unlock(&osb->osb_lock);
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800335
Joel Becker386a2ef2008-02-01 12:06:54 -0800336 return ocfs2_update_disk_slot(osb, osb->slot_info, slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800337}
338
Joel Becker1c8d9a62008-02-01 11:59:07 -0800339static int ocfs2_map_slot_buffers(struct ocfs2_super *osb,
340 struct ocfs2_slot_info *si)
341{
342 int status = 0;
343 u64 blkno;
Poyo VLf30d44f32010-10-11 13:45:52 -0700344 unsigned long long blocks, bytes = 0;
Joel Becker1c8d9a62008-02-01 11:59:07 -0800345 unsigned int i;
346 struct buffer_head *bh;
347
348 status = ocfs2_slot_map_physical_size(osb, si->si_inode, &bytes);
349 if (status)
350 goto bail;
351
352 blocks = ocfs2_blocks_for_bytes(si->si_inode->i_sb, bytes);
353 BUG_ON(blocks > UINT_MAX);
354 si->si_blocks = blocks;
355 if (!si->si_blocks)
356 goto bail;
357
Joel Becker386a2ef2008-02-01 12:06:54 -0800358 if (si->si_extended)
359 si->si_slots_per_block =
360 (osb->sb->s_blocksize /
361 sizeof(struct ocfs2_extended_slot));
362 else
363 si->si_slots_per_block = osb->sb->s_blocksize / sizeof(__le16);
364
365 /* The size checks above should ensure this */
366 BUG_ON((osb->max_slots / si->si_slots_per_block) > blocks);
367
Tao Maa8731082011-02-22 22:29:08 +0800368 trace_ocfs2_map_slot_buffers(bytes, si->si_blocks);
Joel Becker1c8d9a62008-02-01 11:59:07 -0800369
Fabian Frederick1b7f8ba2014-08-06 16:04:01 -0700370 si->si_bh = kcalloc(si->si_blocks, sizeof(struct buffer_head *),
Joel Becker1c8d9a62008-02-01 11:59:07 -0800371 GFP_KERNEL);
372 if (!si->si_bh) {
373 status = -ENOMEM;
374 mlog_errno(status);
375 goto bail;
376 }
377
378 for (i = 0; i < si->si_blocks; i++) {
379 status = ocfs2_extent_map_get_blocks(si->si_inode, i,
380 &blkno, NULL, NULL);
381 if (status < 0) {
382 mlog_errno(status);
383 goto bail;
384 }
385
Tao Maa8731082011-02-22 22:29:08 +0800386 trace_ocfs2_map_slot_buffers_block((unsigned long long)blkno, i);
Joel Becker1c8d9a62008-02-01 11:59:07 -0800387
388 bh = NULL; /* Acquire a fresh bh */
Joel Becker8cb471e2009-02-10 20:00:41 -0800389 status = ocfs2_read_blocks(INODE_CACHE(si->si_inode), blkno,
390 1, &bh, OCFS2_BH_IGNORE_CACHE, NULL);
Joel Becker1c8d9a62008-02-01 11:59:07 -0800391 if (status < 0) {
392 mlog_errno(status);
393 goto bail;
394 }
395
396 si->si_bh[i] = bh;
397 }
398
399bail:
400 return status;
401}
402
Mark Fashehccd979b2005-12-15 14:31:24 -0800403int ocfs2_init_slot_info(struct ocfs2_super *osb)
404{
Joel Beckerfc881fa2008-02-01 12:04:48 -0800405 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800406 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800407 struct ocfs2_slot_info *si;
408
Gustavo A. R. Silvaf402cf02019-03-05 15:41:48 -0800409 si = kzalloc(struct_size(si, si_slots, osb->max_slots), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -0800410 if (!si) {
411 status = -ENOMEM;
412 mlog_errno(status);
Markus Elfringbb34ed22015-04-14 15:42:56 -0700413 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800414 }
415
Joel Becker386a2ef2008-02-01 12:06:54 -0800416 si->si_extended = ocfs2_uses_extended_slot_map(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800417 si->si_num_slots = osb->max_slots;
Mark Fashehccd979b2005-12-15 14:31:24 -0800418
419 inode = ocfs2_get_system_file_inode(osb, SLOT_MAP_SYSTEM_INODE,
420 OCFS2_INVALID_SLOT);
421 if (!inode) {
422 status = -EINVAL;
423 mlog_errno(status);
424 goto bail;
425 }
426
Mark Fashehccd979b2005-12-15 14:31:24 -0800427 si->si_inode = inode;
Joel Becker1c8d9a62008-02-01 11:59:07 -0800428 status = ocfs2_map_slot_buffers(osb, si);
429 if (status < 0) {
430 mlog_errno(status);
431 goto bail;
432 }
433
Joel Beckerd85b20e2008-02-01 12:01:05 -0800434 osb->slot_info = (struct ocfs2_slot_info *)si;
Mark Fashehccd979b2005-12-15 14:31:24 -0800435bail:
Markus Elfringfd90d4df2015-04-14 15:42:42 -0700436 if (status < 0)
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800437 __ocfs2_free_slot_info(si);
Mark Fashehccd979b2005-12-15 14:31:24 -0800438
439 return status;
440}
441
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800442void ocfs2_free_slot_info(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800443{
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800444 struct ocfs2_slot_info *si = osb->slot_info;
445
446 osb->slot_info = NULL;
447 __ocfs2_free_slot_info(si);
Mark Fashehccd979b2005-12-15 14:31:24 -0800448}
449
450int ocfs2_find_slot(struct ocfs2_super *osb)
451{
452 int status;
Joel Beckerfc881fa2008-02-01 12:04:48 -0800453 int slot;
Mark Fashehccd979b2005-12-15 14:31:24 -0800454 struct ocfs2_slot_info *si;
455
Mark Fashehccd979b2005-12-15 14:31:24 -0800456 si = osb->slot_info;
457
Joel Beckerd85b20e2008-02-01 12:01:05 -0800458 spin_lock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800459 ocfs2_update_slot_info(si);
460
Gang He912f6552020-06-01 21:45:29 -0700461 if (ocfs2_mount_local(osb))
462 /* use slot 0 directly in local mode */
463 slot = 0;
464 else {
465 /* search for ourselves first and take the slot if it already
466 * exists. Perhaps we need to mark this in a variable for our
467 * own journal recovery? Possibly not, though we certainly
468 * need to warn to the user */
469 slot = __ocfs2_node_num_to_slot(si, osb->node_num);
Joel Beckerfc881fa2008-02-01 12:04:48 -0800470 if (slot < 0) {
Gang He912f6552020-06-01 21:45:29 -0700471 /* if no slot yet, then just take 1st available
472 * one. */
473 slot = __ocfs2_find_empty_slot(si, osb->preferred_slot);
474 if (slot < 0) {
475 spin_unlock(&osb->osb_lock);
476 mlog(ML_ERROR, "no free slots available!\n");
477 status = -EINVAL;
478 goto bail;
479 }
480 } else
481 printk(KERN_INFO "ocfs2: Slot %d on device (%s) was "
482 "already allocated to this node!\n",
483 slot, osb->dev_str);
484 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800485
Joel Beckerfc881fa2008-02-01 12:04:48 -0800486 ocfs2_set_slot(si, slot, osb->node_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800487 osb->slot_num = slot;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800488 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800489
Tao Maa8731082011-02-22 22:29:08 +0800490 trace_ocfs2_find_slot(osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800491
Joel Becker386a2ef2008-02-01 12:06:54 -0800492 status = ocfs2_update_disk_slot(osb, si, osb->slot_num);
jiangyiwen12470172016-01-14 15:17:33 -0800493 if (status < 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800494 mlog_errno(status);
jiangyiwen12470172016-01-14 15:17:33 -0800495 /*
496 * if write block failed, invalidate slot to avoid overwrite
497 * slot during dismount in case another node rightly has mounted
498 */
499 spin_lock(&osb->osb_lock);
500 ocfs2_invalidate_slot(si, osb->slot_num);
501 osb->slot_num = OCFS2_INVALID_SLOT;
502 spin_unlock(&osb->osb_lock);
503 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800504
505bail:
Mark Fashehccd979b2005-12-15 14:31:24 -0800506 return status;
507}
508
509void ocfs2_put_slot(struct ocfs2_super *osb)
510{
Joel Becker386a2ef2008-02-01 12:06:54 -0800511 int status, slot_num;
Mark Fashehccd979b2005-12-15 14:31:24 -0800512 struct ocfs2_slot_info *si = osb->slot_info;
513
514 if (!si)
515 return;
516
Joel Beckerd85b20e2008-02-01 12:01:05 -0800517 spin_lock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800518 ocfs2_update_slot_info(si);
519
Joel Becker386a2ef2008-02-01 12:06:54 -0800520 slot_num = osb->slot_num;
Joel Beckerfc881fa2008-02-01 12:04:48 -0800521 ocfs2_invalidate_slot(si, osb->slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800522 osb->slot_num = OCFS2_INVALID_SLOT;
Joel Beckerd85b20e2008-02-01 12:01:05 -0800523 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800524
Joel Becker386a2ef2008-02-01 12:06:54 -0800525 status = ocfs2_update_disk_slot(osb, si, slot_num);
Guozhonghua8f9b1802016-05-19 17:09:53 -0700526 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -0800527 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800528
Mark Fasheh8e8a4602008-02-01 11:59:09 -0800529 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800530}