ocfs2: use smaller counters in ocfs2_remove_xattr_clusters_from_cache
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / ocfs2 / heartbeat.c
CommitLineData
ccd979bd
MF
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * heartbeat.c
5 *
6 * Register ourselves with the heartbaet service, keep our node maps
7 * up to date, and fire off recovery when needed.
8 *
9 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public
22 * License along with this program; if not, write to the
23 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 * Boston, MA 021110-1307, USA.
25 */
26
27#include <linux/fs.h>
28#include <linux/types.h>
29#include <linux/slab.h>
30#include <linux/highmem.h>
ccd979bd 31
ccd979bd
MF
32#define MLOG_MASK_PREFIX ML_SUPER
33#include <cluster/masklog.h>
34
35#include "ocfs2.h"
36
37#include "alloc.h"
38#include "heartbeat.h"
39#include "inode.h"
40#include "journal.h"
ccd979bd
MF
41
42#include "buffer_head_io.h"
43
ccd979bd
MF
44static inline void __ocfs2_node_map_set_bit(struct ocfs2_node_map *map,
45 int bit);
46static inline void __ocfs2_node_map_clear_bit(struct ocfs2_node_map *map,
47 int bit);
00600056
AB
48
49/* special case -1 for now
50 * TODO: should *really* make sure the calling func never passes -1!! */
51static void ocfs2_node_map_init(struct ocfs2_node_map *map)
52{
53 map->num_nodes = OCFS2_NODE_MAP_MAX_NODES;
54 memset(map->map, 0, BITS_TO_LONGS(OCFS2_NODE_MAP_MAX_NODES) *
55 sizeof(unsigned long));
56}
ccd979bd
MF
57
58void ocfs2_init_node_maps(struct ocfs2_super *osb)
59{
60 spin_lock_init(&osb->node_map_lock);
b4df6ed8 61 ocfs2_node_map_init(&osb->osb_recovering_orphan_dirs);
ccd979bd
MF
62}
63
4670c46d 64void ocfs2_do_node_down(int node_num, void *data)
ccd979bd 65{
4670c46d
JB
66 struct ocfs2_super *osb = data;
67
ccd979bd
MF
68 BUG_ON(osb->node_num == node_num);
69
70 mlog(0, "ocfs2: node down event for %d\n", node_num);
71
4670c46d 72 if (!osb->cconn) {
ccd979bd 73 /*
4670c46d
JB
74 * No cluster connection means we're not even ready to
75 * participate yet. We check the slots after the cluster
76 * comes up, so we will notice the node death then. We
77 * can safely ignore it here.
ccd979bd
MF
78 */
79 return;
80 }
81
ccd979bd 82 ocfs2_recovery_thread(osb, node_num);
ccd979bd
MF
83}
84
ccd979bd
MF
85static inline void __ocfs2_node_map_set_bit(struct ocfs2_node_map *map,
86 int bit)
87{
88 set_bit(bit, map->map);
89}
90
91void ocfs2_node_map_set_bit(struct ocfs2_super *osb,
92 struct ocfs2_node_map *map,
93 int bit)
94{
95 if (bit==-1)
96 return;
97 BUG_ON(bit >= map->num_nodes);
98 spin_lock(&osb->node_map_lock);
99 __ocfs2_node_map_set_bit(map, bit);
100 spin_unlock(&osb->node_map_lock);
101}
102
103static inline void __ocfs2_node_map_clear_bit(struct ocfs2_node_map *map,
104 int bit)
105{
106 clear_bit(bit, map->map);
107}
108
109void ocfs2_node_map_clear_bit(struct ocfs2_super *osb,
110 struct ocfs2_node_map *map,
111 int bit)
112{
113 if (bit==-1)
114 return;
115 BUG_ON(bit >= map->num_nodes);
116 spin_lock(&osb->node_map_lock);
117 __ocfs2_node_map_clear_bit(map, bit);
118 spin_unlock(&osb->node_map_lock);
119}
120
121int ocfs2_node_map_test_bit(struct ocfs2_super *osb,
122 struct ocfs2_node_map *map,
123 int bit)
124{
125 int ret;
126 if (bit >= map->num_nodes) {
127 mlog(ML_ERROR, "bit=%d map->num_nodes=%d\n", bit, map->num_nodes);
128 BUG();
129 }
130 spin_lock(&osb->node_map_lock);
131 ret = test_bit(bit, map->map);
132 spin_unlock(&osb->node_map_lock);
133 return ret;
134}
135