mmc: sdhci: Check mrq->cmd in sdhci_tasklet_finish
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / ocfs2 / heartbeat.c
blobc6e7213db8688744bdd21d05d5f6296a5e7dcc91
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * heartbeat.c
6 * Register ourselves with the heartbaet service, keep our node maps
7 * up to date, and fire off recovery when needed.
9 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
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.
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.
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.
27 #include <linux/fs.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/highmem.h>
32 #define MLOG_MASK_PREFIX ML_SUPER
33 #include <cluster/masklog.h>
35 #include "ocfs2.h"
37 #include "alloc.h"
38 #include "heartbeat.h"
39 #include "inode.h"
40 #include "journal.h"
42 #include "buffer_head_io.h"
44 static inline void __ocfs2_node_map_set_bit(struct ocfs2_node_map *map,
45 int bit);
46 static inline void __ocfs2_node_map_clear_bit(struct ocfs2_node_map *map,
47 int bit);
49 /* special case -1 for now
50 * TODO: should *really* make sure the calling func never passes -1!! */
51 static void ocfs2_node_map_init(struct ocfs2_node_map *map)
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));
58 void ocfs2_init_node_maps(struct ocfs2_super *osb)
60 spin_lock_init(&osb->node_map_lock);
61 ocfs2_node_map_init(&osb->osb_recovering_orphan_dirs);
64 void ocfs2_do_node_down(int node_num, void *data)
66 struct ocfs2_super *osb = data;
68 BUG_ON(osb->node_num == node_num);
70 mlog(0, "ocfs2: node down event for %d\n", node_num);
72 if (!osb->cconn) {
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.
79 return;
82 ocfs2_recovery_thread(osb, node_num);
85 static inline void __ocfs2_node_map_set_bit(struct ocfs2_node_map *map,
86 int bit)
88 set_bit(bit, map->map);
91 void ocfs2_node_map_set_bit(struct ocfs2_super *osb,
92 struct ocfs2_node_map *map,
93 int bit)
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);
103 static inline void __ocfs2_node_map_clear_bit(struct ocfs2_node_map *map,
104 int bit)
106 clear_bit(bit, map->map);
109 void ocfs2_node_map_clear_bit(struct ocfs2_super *osb,
110 struct ocfs2_node_map *map,
111 int bit)
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);
121 int ocfs2_node_map_test_bit(struct ocfs2_super *osb,
122 struct ocfs2_node_map *map,
123 int bit)
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();
130 spin_lock(&osb->node_map_lock);
131 ret = test_bit(bit, map->map);
132 spin_unlock(&osb->node_map_lock);
133 return ret;