blob: fc9e96a03a6b532458a7e3601124ab4c2a4ef16a [file] [log] [blame]
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * Copyright (C) 2004, 2005 Oracle. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 021110-1307, USA.
20 */
21
22#include <linux/kernel.h>
23#include <linux/sched.h>
24#include <linux/jiffies.h>
25#include <linux/module.h>
26#include <linux/fs.h>
27#include <linux/bio.h>
28#include <linux/blkdev.h>
29#include <linux/delay.h>
30#include <linux/file.h>
31#include <linux/kthread.h>
32#include <linux/configfs.h>
33#include <linux/random.h>
34#include <linux/crc32.h>
35#include <linux/time.h>
Sunil Mushran87d3d3f2008-12-17 14:17:42 -080036#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Mark Fasheha7f6a5f2005-12-15 14:31:23 -080038
39#include "heartbeat.h"
40#include "tcp.h"
41#include "nodemanager.h"
42#include "quorum.h"
43
44#include "masklog.h"
45
46
47/*
48 * The first heartbeat pass had one global thread that would serialize all hb
49 * callback calls. This global serializing sem should only be removed once
50 * we've made sure that all callees can deal with being called concurrently
51 * from multiple hb region threads.
52 */
53static DECLARE_RWSEM(o2hb_callback_sem);
54
55/*
56 * multiple hb threads are watching multiple regions. A node is live
57 * whenever any of the threads sees activity from the node in its region.
58 */
Ingo Molnar34af9462006-06-27 02:53:55 -070059static DEFINE_SPINLOCK(o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -080060static struct list_head o2hb_live_slots[O2NM_MAX_NODES];
61static unsigned long o2hb_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
62static LIST_HEAD(o2hb_node_events);
63static DECLARE_WAIT_QUEUE_HEAD(o2hb_steady_queue);
64
Sunil Mushran536f0742010-10-07 17:03:07 -070065/*
66 * In global heartbeat, we maintain a series of region bitmaps.
67 * - o2hb_region_bitmap allows us to limit the region number to max region.
Sunil Mushrane7d656b2010-10-06 17:55:18 -070068 * - o2hb_live_region_bitmap tracks live regions (seen steady iterations).
Sunil Mushran43182d22010-10-06 17:55:16 -070069 * - o2hb_quorum_region_bitmap tracks live regions that have seen all nodes
70 * heartbeat on it.
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -070071 * - o2hb_failed_region_bitmap tracks the regions that have seen io timeouts.
Sunil Mushran536f0742010-10-07 17:03:07 -070072 */
73static unsigned long o2hb_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushrane7d656b2010-10-06 17:55:18 -070074static unsigned long o2hb_live_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushran43182d22010-10-06 17:55:16 -070075static unsigned long o2hb_quorum_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -070076static unsigned long o2hb_failed_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushran536f0742010-10-07 17:03:07 -070077
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070078#define O2HB_DB_TYPE_LIVENODES 0
Sunil Mushrana6de0132010-10-06 17:55:13 -070079#define O2HB_DB_TYPE_LIVEREGIONS 1
80#define O2HB_DB_TYPE_QUORUMREGIONS 2
81#define O2HB_DB_TYPE_FAILEDREGIONS 3
Sunil Mushran1f285302010-10-06 17:55:12 -070082#define O2HB_DB_TYPE_REGION_LIVENODES 4
83#define O2HB_DB_TYPE_REGION_NUMBER 5
Sunil Mushran43695d02010-10-06 17:55:09 -070084#define O2HB_DB_TYPE_REGION_ELAPSED_TIME 6
Sunil Mushrancb0586b2010-12-14 14:14:30 -080085#define O2HB_DB_TYPE_REGION_PINNED 7
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070086struct o2hb_debug_buf {
87 int db_type;
88 int db_size;
89 int db_len;
90 void *db_data;
91};
92
93static struct o2hb_debug_buf *o2hb_db_livenodes;
Sunil Mushrana6de0132010-10-06 17:55:13 -070094static struct o2hb_debug_buf *o2hb_db_liveregions;
95static struct o2hb_debug_buf *o2hb_db_quorumregions;
96static struct o2hb_debug_buf *o2hb_db_failedregions;
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070097
Sunil Mushran87d3d3f2008-12-17 14:17:42 -080098#define O2HB_DEBUG_DIR "o2hb"
99#define O2HB_DEBUG_LIVENODES "livenodes"
Sunil Mushrana6de0132010-10-06 17:55:13 -0700100#define O2HB_DEBUG_LIVEREGIONS "live_regions"
101#define O2HB_DEBUG_QUORUMREGIONS "quorum_regions"
102#define O2HB_DEBUG_FAILEDREGIONS "failed_regions"
Sunil Mushran1f285302010-10-06 17:55:12 -0700103#define O2HB_DEBUG_REGION_NUMBER "num"
Sunil Mushran43695d02010-10-06 17:55:09 -0700104#define O2HB_DEBUG_REGION_ELAPSED_TIME "elapsed_time_in_ms"
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800105#define O2HB_DEBUG_REGION_PINNED "pinned"
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -0700106
Sunil Mushran87d3d3f2008-12-17 14:17:42 -0800107static struct dentry *o2hb_debug_dir;
108static struct dentry *o2hb_debug_livenodes;
Sunil Mushrana6de0132010-10-06 17:55:13 -0700109static struct dentry *o2hb_debug_liveregions;
110static struct dentry *o2hb_debug_quorumregions;
111static struct dentry *o2hb_debug_failedregions;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -0800112
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800113static LIST_HEAD(o2hb_all_regions);
114
115static struct o2hb_callback {
116 struct list_head list;
117} o2hb_callbacks[O2HB_NUM_CB];
118
119static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type);
120
121#define O2HB_DEFAULT_BLOCK_BITS 9
122
Sunil Mushran54b51872010-10-07 15:26:08 -0700123enum o2hb_heartbeat_modes {
124 O2HB_HEARTBEAT_LOCAL = 0,
125 O2HB_HEARTBEAT_GLOBAL,
126 O2HB_HEARTBEAT_NUM_MODES,
127};
128
129char *o2hb_heartbeat_mode_desc[O2HB_HEARTBEAT_NUM_MODES] = {
130 "local", /* O2HB_HEARTBEAT_LOCAL */
131 "global", /* O2HB_HEARTBEAT_GLOBAL */
132};
133
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800134unsigned int o2hb_dead_threshold = O2HB_DEFAULT_DEAD_THRESHOLD;
Sunil Mushran54b51872010-10-07 15:26:08 -0700135unsigned int o2hb_heartbeat_mode = O2HB_HEARTBEAT_LOCAL;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800136
Sunil Mushran58a31582010-12-14 14:14:29 -0800137/*
138 * o2hb_dependent_users tracks the number of registered callbacks that depend
139 * on heartbeat. o2net and o2dlm are two entities that register this callback.
140 * However only o2dlm depends on the heartbeat. It does not want the heartbeat
141 * to stop while a dlm domain is still active.
142 */
143unsigned int o2hb_dependent_users;
144
145/*
146 * In global heartbeat mode, all regions are pinned if there are one or more
147 * dependent users and the quorum region count is <= O2HB_PIN_CUT_OFF. All
148 * regions are unpinned if the region count exceeds the cut off or the number
149 * of dependent users falls to zero.
150 */
151#define O2HB_PIN_CUT_OFF 3
152
153/*
154 * In local heartbeat mode, we assume the dlm domain name to be the same as
155 * region uuid. This is true for domains created for the file system but not
156 * necessarily true for userdlm domains. This is a known limitation.
157 *
158 * In global heartbeat mode, we pin/unpin all o2hb regions. This solution
159 * works for both file system and userdlm domains.
160 */
161static int o2hb_region_pin(const char *region_uuid);
162static void o2hb_region_unpin(const char *region_uuid);
163
Sunil Mushran2bd63212010-01-25 16:57:38 -0800164/* Only sets a new threshold if there are no active regions.
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800165 *
166 * No locking or otherwise interesting code is required for reading
167 * o2hb_dead_threshold as it can't change once regions are active and
168 * it's not interesting to anyone until then anyway. */
169static void o2hb_dead_threshold_set(unsigned int threshold)
170{
171 if (threshold > O2HB_MIN_DEAD_THRESHOLD) {
172 spin_lock(&o2hb_live_lock);
173 if (list_empty(&o2hb_all_regions))
174 o2hb_dead_threshold = threshold;
175 spin_unlock(&o2hb_live_lock);
176 }
177}
178
Sunil Mushran54b51872010-10-07 15:26:08 -0700179static int o2hb_global_hearbeat_mode_set(unsigned int hb_mode)
180{
181 int ret = -1;
182
183 if (hb_mode < O2HB_HEARTBEAT_NUM_MODES) {
184 spin_lock(&o2hb_live_lock);
185 if (list_empty(&o2hb_all_regions)) {
186 o2hb_heartbeat_mode = hb_mode;
187 ret = 0;
188 }
189 spin_unlock(&o2hb_live_lock);
190 }
191
192 return ret;
193}
194
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800195struct o2hb_node_event {
196 struct list_head hn_item;
197 enum o2hb_callback_type hn_event_type;
198 struct o2nm_node *hn_node;
199 int hn_node_num;
200};
201
202struct o2hb_disk_slot {
203 struct o2hb_disk_heartbeat_block *ds_raw_block;
204 u8 ds_node_num;
205 u64 ds_last_time;
206 u64 ds_last_generation;
207 u16 ds_equal_samples;
208 u16 ds_changed_samples;
209 struct list_head ds_live_item;
210};
211
212/* each thread owns a region.. when we're asked to tear down the region
213 * we ask the thread to stop, who cleans up the region */
214struct o2hb_region {
215 struct config_item hr_item;
216
217 struct list_head hr_all_item;
Sunil Mushran58a31582010-12-14 14:14:29 -0800218 unsigned hr_unclean_stop:1,
219 hr_item_pinned:1,
220 hr_item_dropped:1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800221
222 /* protected by the hr_callback_sem */
223 struct task_struct *hr_task;
224
225 unsigned int hr_blocks;
226 unsigned long long hr_start_block;
227
228 unsigned int hr_block_bits;
229 unsigned int hr_block_bytes;
230
231 unsigned int hr_slots_per_page;
232 unsigned int hr_num_pages;
233
234 struct page **hr_slot_data;
235 struct block_device *hr_bdev;
236 struct o2hb_disk_slot *hr_slots;
237
Sunil Mushran823a6372010-10-06 17:55:21 -0700238 /* live node map of this region */
239 unsigned long hr_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran536f0742010-10-07 17:03:07 -0700240 unsigned int hr_region_num;
Sunil Mushran823a6372010-10-06 17:55:21 -0700241
Sunil Mushran1f285302010-10-06 17:55:12 -0700242 struct dentry *hr_debug_dir;
243 struct dentry *hr_debug_livenodes;
244 struct dentry *hr_debug_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700245 struct dentry *hr_debug_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800246 struct dentry *hr_debug_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700247 struct o2hb_debug_buf *hr_db_livenodes;
248 struct o2hb_debug_buf *hr_db_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700249 struct o2hb_debug_buf *hr_db_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800250 struct o2hb_debug_buf *hr_db_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700251
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800252 /* let the person setting up hb wait for it to return until it
253 * has reached a 'steady' state. This will be fixed when we have
254 * a more complete api that doesn't lead to this sort of fragility. */
255 atomic_t hr_steady_iterations;
256
257 char hr_dev_name[BDEVNAME_SIZE];
258
259 unsigned int hr_timeout_ms;
260
261 /* randomized as the region goes up and down so that a node
262 * recognizes a node going up and down in one iteration */
263 u64 hr_generation;
264
David Howellsc4028952006-11-22 14:57:56 +0000265 struct delayed_work hr_write_timeout_work;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800266 unsigned long hr_last_timeout_start;
267
268 /* Used during o2hb_check_slot to hold a copy of the block
269 * being checked because we temporarily have to zero out the
270 * crc field. */
271 struct o2hb_disk_heartbeat_block *hr_tmp_block;
272};
273
274struct o2hb_bio_wait_ctxt {
275 atomic_t wc_num_reqs;
276 struct completion wc_io_complete;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800277 int wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800278};
279
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700280static int o2hb_pop_count(void *map, int count)
281{
282 int i = -1, pop = 0;
283
284 while ((i = find_next_bit(map, count, i + 1)) < count)
285 pop++;
286 return pop;
287}
288
David Howellsc4028952006-11-22 14:57:56 +0000289static void o2hb_write_timeout(struct work_struct *work)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800290{
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700291 int failed, quorum;
292 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +0000293 struct o2hb_region *reg =
294 container_of(work, struct o2hb_region,
295 hr_write_timeout_work.work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800296
297 mlog(ML_ERROR, "Heartbeat write timeout to device %s after %u "
298 "milliseconds\n", reg->hr_dev_name,
Sunil Mushran2bd63212010-01-25 16:57:38 -0800299 jiffies_to_msecs(jiffies - reg->hr_last_timeout_start));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700300
301 if (o2hb_global_heartbeat_active()) {
302 spin_lock_irqsave(&o2hb_live_lock, flags);
303 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
304 set_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
305 failed = o2hb_pop_count(&o2hb_failed_region_bitmap,
306 O2NM_MAX_REGIONS);
307 quorum = o2hb_pop_count(&o2hb_quorum_region_bitmap,
308 O2NM_MAX_REGIONS);
309 spin_unlock_irqrestore(&o2hb_live_lock, flags);
310
311 mlog(ML_HEARTBEAT, "Number of regions %d, failed regions %d\n",
312 quorum, failed);
313
314 /*
315 * Fence if the number of failed regions >= half the number
316 * of quorum regions
317 */
318 if ((failed << 1) < quorum)
319 return;
320 }
321
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800322 o2quo_disk_timeout();
323}
324
325static void o2hb_arm_write_timeout(struct o2hb_region *reg)
326{
Tao Mab31d3082009-12-22 10:32:15 +0800327 mlog(ML_HEARTBEAT, "Queue write timeout for %u ms\n",
328 O2HB_MAX_WRITE_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800329
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700330 if (o2hb_global_heartbeat_active()) {
331 spin_lock(&o2hb_live_lock);
332 clear_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
333 spin_unlock(&o2hb_live_lock);
334 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800335 cancel_delayed_work(&reg->hr_write_timeout_work);
336 reg->hr_last_timeout_start = jiffies;
337 schedule_delayed_work(&reg->hr_write_timeout_work,
338 msecs_to_jiffies(O2HB_MAX_WRITE_TIMEOUT_MS));
339}
340
341static void o2hb_disarm_write_timeout(struct o2hb_region *reg)
342{
Tejun Heo9b00a812010-12-24 15:59:06 +0100343 cancel_delayed_work_sync(&reg->hr_write_timeout_work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800344}
345
Philipp Reisnerb5592922007-01-11 10:58:10 +0100346static inline void o2hb_bio_wait_init(struct o2hb_bio_wait_ctxt *wc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800347{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100348 atomic_set(&wc->wc_num_reqs, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800349 init_completion(&wc->wc_io_complete);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800350 wc->wc_error = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800351}
352
353/* Used in error paths too */
354static inline void o2hb_bio_wait_dec(struct o2hb_bio_wait_ctxt *wc,
355 unsigned int num)
356{
357 /* sadly atomic_sub_and_test() isn't available on all platforms. The
358 * good news is that the fast path only completes one at a time */
359 while(num--) {
360 if (atomic_dec_and_test(&wc->wc_num_reqs)) {
361 BUG_ON(num > 0);
362 complete(&wc->wc_io_complete);
363 }
364 }
365}
366
367static void o2hb_wait_on_io(struct o2hb_region *reg,
368 struct o2hb_bio_wait_ctxt *wc)
369{
370 struct address_space *mapping = reg->hr_bdev->bd_inode->i_mapping;
371
372 blk_run_address_space(mapping);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100373 o2hb_bio_wait_dec(wc, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800374
375 wait_for_completion(&wc->wc_io_complete);
376}
377
Al Viro782e3b32007-10-12 07:17:47 +0100378static void o2hb_bio_end_io(struct bio *bio,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800379 int error)
380{
381 struct o2hb_bio_wait_ctxt *wc = bio->bi_private;
382
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800383 if (error) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800384 mlog(ML_ERROR, "IO Error %d\n", error);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800385 wc->wc_error = error;
386 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800387
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800388 o2hb_bio_wait_dec(wc, 1);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100389 bio_put(bio);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800390}
391
392/* Setup a Bio to cover I/O against num_slots slots starting at
393 * start_slot. */
394static struct bio *o2hb_setup_one_bio(struct o2hb_region *reg,
395 struct o2hb_bio_wait_ctxt *wc,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100396 unsigned int *current_slot,
397 unsigned int max_slots)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800398{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100399 int len, current_page;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800400 unsigned int vec_len, vec_start;
401 unsigned int bits = reg->hr_block_bits;
402 unsigned int spp = reg->hr_slots_per_page;
Philipp Reisnerb5592922007-01-11 10:58:10 +0100403 unsigned int cs = *current_slot;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800404 struct bio *bio;
405 struct page *page;
406
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800407 /* Testing has shown this allocation to take long enough under
408 * GFP_KERNEL that the local node can get fenced. It would be
409 * nicest if we could pre-allocate these bios and avoid this
410 * all together. */
Philipp Reisnerb5592922007-01-11 10:58:10 +0100411 bio = bio_alloc(GFP_ATOMIC, 16);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800412 if (!bio) {
413 mlog(ML_ERROR, "Could not alloc slots BIO!\n");
414 bio = ERR_PTR(-ENOMEM);
415 goto bail;
416 }
417
418 /* Must put everything in 512 byte sectors for the bio... */
Philipp Reisnerb5592922007-01-11 10:58:10 +0100419 bio->bi_sector = (reg->hr_start_block + cs) << (bits - 9);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800420 bio->bi_bdev = reg->hr_bdev;
421 bio->bi_private = wc;
422 bio->bi_end_io = o2hb_bio_end_io;
423
Philipp Reisnerb5592922007-01-11 10:58:10 +0100424 vec_start = (cs << bits) % PAGE_CACHE_SIZE;
425 while(cs < max_slots) {
426 current_page = cs / spp;
427 page = reg->hr_slot_data[current_page];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800428
Jan Karabc7e97c2007-10-10 16:25:42 +0200429 vec_len = min(PAGE_CACHE_SIZE - vec_start,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100430 (max_slots-cs) * (PAGE_CACHE_SIZE/spp) );
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800431
432 mlog(ML_HB_BIO, "page %d, vec_len = %u, vec_start = %u\n",
Philipp Reisnerb5592922007-01-11 10:58:10 +0100433 current_page, vec_len, vec_start);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800434
435 len = bio_add_page(bio, page, vec_len, vec_start);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100436 if (len != vec_len) break;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800437
Philipp Reisnerb5592922007-01-11 10:58:10 +0100438 cs += vec_len / (PAGE_CACHE_SIZE/spp);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800439 vec_start = 0;
440 }
441
442bail:
Philipp Reisnerb5592922007-01-11 10:58:10 +0100443 *current_slot = cs;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800444 return bio;
445}
446
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800447static int o2hb_read_slots(struct o2hb_region *reg,
448 unsigned int max_slots)
449{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100450 unsigned int current_slot=0;
451 int status;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800452 struct o2hb_bio_wait_ctxt wc;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800453 struct bio *bio;
454
Philipp Reisnerb5592922007-01-11 10:58:10 +0100455 o2hb_bio_wait_init(&wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800456
Philipp Reisnerb5592922007-01-11 10:58:10 +0100457 while(current_slot < max_slots) {
458 bio = o2hb_setup_one_bio(reg, &wc, &current_slot, max_slots);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800459 if (IS_ERR(bio)) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800460 status = PTR_ERR(bio);
461 mlog_errno(status);
462 goto bail_and_wait;
463 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800464
Philipp Reisnerb5592922007-01-11 10:58:10 +0100465 atomic_inc(&wc.wc_num_reqs);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800466 submit_bio(READ, bio);
467 }
468
469 status = 0;
470
471bail_and_wait:
472 o2hb_wait_on_io(reg, &wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800473 if (wc.wc_error && !status)
474 status = wc.wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800475
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800476 return status;
477}
478
479static int o2hb_issue_node_write(struct o2hb_region *reg,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800480 struct o2hb_bio_wait_ctxt *write_wc)
481{
482 int status;
483 unsigned int slot;
484 struct bio *bio;
485
Philipp Reisnerb5592922007-01-11 10:58:10 +0100486 o2hb_bio_wait_init(write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800487
488 slot = o2nm_this_node();
489
Philipp Reisnerb5592922007-01-11 10:58:10 +0100490 bio = o2hb_setup_one_bio(reg, write_wc, &slot, slot+1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800491 if (IS_ERR(bio)) {
492 status = PTR_ERR(bio);
493 mlog_errno(status);
494 goto bail;
495 }
496
Philipp Reisnerb5592922007-01-11 10:58:10 +0100497 atomic_inc(&write_wc->wc_num_reqs);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800498 submit_bio(WRITE, bio);
499
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800500 status = 0;
501bail:
502 return status;
503}
504
505static u32 o2hb_compute_block_crc_le(struct o2hb_region *reg,
506 struct o2hb_disk_heartbeat_block *hb_block)
507{
508 __le32 old_cksum;
509 u32 ret;
510
511 /* We want to compute the block crc with a 0 value in the
512 * hb_cksum field. Save it off here and replace after the
513 * crc. */
514 old_cksum = hb_block->hb_cksum;
515 hb_block->hb_cksum = 0;
516
517 ret = crc32_le(0, (unsigned char *) hb_block, reg->hr_block_bytes);
518
519 hb_block->hb_cksum = old_cksum;
520
521 return ret;
522}
523
524static void o2hb_dump_slot(struct o2hb_disk_heartbeat_block *hb_block)
525{
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800526 mlog(ML_ERROR, "Dump slot information: seq = 0x%llx, node = %u, "
527 "cksum = 0x%x, generation 0x%llx\n",
528 (long long)le64_to_cpu(hb_block->hb_seq),
529 hb_block->hb_node, le32_to_cpu(hb_block->hb_cksum),
530 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800531}
532
533static int o2hb_verify_crc(struct o2hb_region *reg,
534 struct o2hb_disk_heartbeat_block *hb_block)
535{
536 u32 read, computed;
537
538 read = le32_to_cpu(hb_block->hb_cksum);
539 computed = o2hb_compute_block_crc_le(reg, hb_block);
540
541 return read == computed;
542}
543
544/* We want to make sure that nobody is heartbeating on top of us --
545 * this will help detect an invalid configuration. */
546static int o2hb_check_last_timestamp(struct o2hb_region *reg)
547{
548 int node_num, ret;
549 struct o2hb_disk_slot *slot;
550 struct o2hb_disk_heartbeat_block *hb_block;
551
552 node_num = o2nm_this_node();
553
554 ret = 1;
555 slot = &reg->hr_slots[node_num];
556 /* Don't check on our 1st timestamp */
557 if (slot->ds_last_time) {
558 hb_block = slot->ds_raw_block;
559
560 if (le64_to_cpu(hb_block->hb_seq) != slot->ds_last_time)
561 ret = 0;
562 }
563
564 return ret;
565}
566
567static inline void o2hb_prepare_block(struct o2hb_region *reg,
568 u64 generation)
569{
570 int node_num;
571 u64 cputime;
572 struct o2hb_disk_slot *slot;
573 struct o2hb_disk_heartbeat_block *hb_block;
574
575 node_num = o2nm_this_node();
576 slot = &reg->hr_slots[node_num];
577
578 hb_block = (struct o2hb_disk_heartbeat_block *)slot->ds_raw_block;
579 memset(hb_block, 0, reg->hr_block_bytes);
580 /* TODO: time stuff */
581 cputime = CURRENT_TIME.tv_sec;
582 if (!cputime)
583 cputime = 1;
584
585 hb_block->hb_seq = cpu_to_le64(cputime);
586 hb_block->hb_node = node_num;
587 hb_block->hb_generation = cpu_to_le64(generation);
Mark Fasheh0db638f2006-05-09 15:09:35 -0700588 hb_block->hb_dead_ms = cpu_to_le32(o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800589
590 /* This step must always happen last! */
591 hb_block->hb_cksum = cpu_to_le32(o2hb_compute_block_crc_le(reg,
592 hb_block));
593
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800594 mlog(ML_HB_BIO, "our node generation = 0x%llx, cksum = 0x%x\n",
Mark Fasheh5fdf1e62007-04-27 16:50:03 -0700595 (long long)generation,
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800596 le32_to_cpu(hb_block->hb_cksum));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800597}
598
599static void o2hb_fire_callbacks(struct o2hb_callback *hbcall,
600 struct o2nm_node *node,
601 int idx)
602{
603 struct list_head *iter;
604 struct o2hb_callback_func *f;
605
606 list_for_each(iter, &hbcall->list) {
607 f = list_entry(iter, struct o2hb_callback_func, hc_item);
608 mlog(ML_HEARTBEAT, "calling funcs %p\n", f);
609 (f->hc_func)(node, idx, f->hc_data);
610 }
611}
612
613/* Will run the list in order until we process the passed event */
614static void o2hb_run_event_list(struct o2hb_node_event *queued_event)
615{
616 int empty;
617 struct o2hb_callback *hbcall;
618 struct o2hb_node_event *event;
619
620 spin_lock(&o2hb_live_lock);
621 empty = list_empty(&queued_event->hn_item);
622 spin_unlock(&o2hb_live_lock);
623 if (empty)
624 return;
625
626 /* Holding callback sem assures we don't alter the callback
627 * lists when doing this, and serializes ourselves with other
628 * processes wanting callbacks. */
629 down_write(&o2hb_callback_sem);
630
631 spin_lock(&o2hb_live_lock);
632 while (!list_empty(&o2hb_node_events)
633 && !list_empty(&queued_event->hn_item)) {
634 event = list_entry(o2hb_node_events.next,
635 struct o2hb_node_event,
636 hn_item);
637 list_del_init(&event->hn_item);
638 spin_unlock(&o2hb_live_lock);
639
640 mlog(ML_HEARTBEAT, "Node %s event for %d\n",
641 event->hn_event_type == O2HB_NODE_UP_CB ? "UP" : "DOWN",
642 event->hn_node_num);
643
644 hbcall = hbcall_from_type(event->hn_event_type);
645
646 /* We should *never* have gotten on to the list with a
647 * bad type... This isn't something that we should try
648 * to recover from. */
649 BUG_ON(IS_ERR(hbcall));
650
651 o2hb_fire_callbacks(hbcall, event->hn_node, event->hn_node_num);
652
653 spin_lock(&o2hb_live_lock);
654 }
655 spin_unlock(&o2hb_live_lock);
656
657 up_write(&o2hb_callback_sem);
658}
659
660static void o2hb_queue_node_event(struct o2hb_node_event *event,
661 enum o2hb_callback_type type,
662 struct o2nm_node *node,
663 int node_num)
664{
665 assert_spin_locked(&o2hb_live_lock);
666
Sunil Mushran0e105d32010-10-07 17:00:16 -0700667 BUG_ON((!node) && (type != O2HB_NODE_DOWN_CB));
668
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800669 event->hn_event_type = type;
670 event->hn_node = node;
671 event->hn_node_num = node_num;
672
673 mlog(ML_HEARTBEAT, "Queue node %s event for node %d\n",
674 type == O2HB_NODE_UP_CB ? "UP" : "DOWN", node_num);
675
676 list_add_tail(&event->hn_item, &o2hb_node_events);
677}
678
679static void o2hb_shutdown_slot(struct o2hb_disk_slot *slot)
680{
681 struct o2hb_node_event event =
682 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
683 struct o2nm_node *node;
684
685 node = o2nm_get_node_by_num(slot->ds_node_num);
686 if (!node)
687 return;
688
689 spin_lock(&o2hb_live_lock);
690 if (!list_empty(&slot->ds_live_item)) {
691 mlog(ML_HEARTBEAT, "Shutdown, node %d leaves region\n",
692 slot->ds_node_num);
693
694 list_del_init(&slot->ds_live_item);
695
696 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
697 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
698
699 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB, node,
700 slot->ds_node_num);
701 }
702 }
703 spin_unlock(&o2hb_live_lock);
704
705 o2hb_run_event_list(&event);
706
707 o2nm_node_put(node);
708}
709
Sunil Mushran43182d22010-10-06 17:55:16 -0700710static void o2hb_set_quorum_device(struct o2hb_region *reg,
711 struct o2hb_disk_slot *slot)
712{
713 assert_spin_locked(&o2hb_live_lock);
714
715 if (!o2hb_global_heartbeat_active())
716 return;
717
718 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
719 return;
720
721 /*
722 * A region can be added to the quorum only when it sees all
723 * live nodes heartbeat on it. In other words, the region has been
724 * added to all nodes.
725 */
726 if (memcmp(reg->hr_live_node_bitmap, o2hb_live_node_bitmap,
727 sizeof(o2hb_live_node_bitmap)))
728 return;
729
730 if (slot->ds_changed_samples < O2HB_LIVE_THRESHOLD)
731 return;
732
733 printk(KERN_NOTICE "o2hb: Region %s is now a quorum device\n",
734 config_item_name(&reg->hr_item));
735
736 set_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
Sunil Mushran58a31582010-12-14 14:14:29 -0800737
738 /*
739 * If global heartbeat active, unpin all regions if the
740 * region count > CUT_OFF
741 */
742 if (o2hb_pop_count(&o2hb_quorum_region_bitmap,
743 O2NM_MAX_REGIONS) > O2HB_PIN_CUT_OFF)
744 o2hb_region_unpin(NULL);
Sunil Mushran43182d22010-10-06 17:55:16 -0700745}
746
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800747static int o2hb_check_slot(struct o2hb_region *reg,
748 struct o2hb_disk_slot *slot)
749{
750 int changed = 0, gen_changed = 0;
751 struct o2hb_node_event event =
752 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
753 struct o2nm_node *node;
754 struct o2hb_disk_heartbeat_block *hb_block = reg->hr_tmp_block;
755 u64 cputime;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700756 unsigned int dead_ms = o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS;
757 unsigned int slot_dead_ms;
Sunil Mushran0e105d32010-10-07 17:00:16 -0700758 int tmp;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800759
760 memcpy(hb_block, slot->ds_raw_block, reg->hr_block_bytes);
761
Sunil Mushran0e105d32010-10-07 17:00:16 -0700762 /*
763 * If a node is no longer configured but is still in the livemap, we
764 * may need to clear that bit from the livemap.
765 */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800766 node = o2nm_get_node_by_num(slot->ds_node_num);
Sunil Mushran0e105d32010-10-07 17:00:16 -0700767 if (!node) {
768 spin_lock(&o2hb_live_lock);
769 tmp = test_bit(slot->ds_node_num, o2hb_live_node_bitmap);
770 spin_unlock(&o2hb_live_lock);
771 if (!tmp)
772 return 0;
773 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800774
775 if (!o2hb_verify_crc(reg, hb_block)) {
776 /* all paths from here will drop o2hb_live_lock for
777 * us. */
778 spin_lock(&o2hb_live_lock);
779
780 /* Don't print an error on the console in this case -
781 * a freshly formatted heartbeat area will not have a
782 * crc set on it. */
783 if (list_empty(&slot->ds_live_item))
784 goto out;
785
786 /* The node is live but pushed out a bad crc. We
787 * consider it a transient miss but don't populate any
788 * other values as they may be junk. */
789 mlog(ML_ERROR, "Node %d has written a bad crc to %s\n",
790 slot->ds_node_num, reg->hr_dev_name);
791 o2hb_dump_slot(hb_block);
792
793 slot->ds_equal_samples++;
794 goto fire_callbacks;
795 }
796
797 /* we don't care if these wrap.. the state transitions below
798 * clear at the right places */
799 cputime = le64_to_cpu(hb_block->hb_seq);
800 if (slot->ds_last_time != cputime)
801 slot->ds_changed_samples++;
802 else
803 slot->ds_equal_samples++;
804 slot->ds_last_time = cputime;
805
806 /* The node changed heartbeat generations. We assume this to
807 * mean it dropped off but came back before we timed out. We
808 * want to consider it down for the time being but don't want
809 * to lose any changed_samples state we might build up to
810 * considering it live again. */
811 if (slot->ds_last_generation != le64_to_cpu(hb_block->hb_generation)) {
812 gen_changed = 1;
813 slot->ds_equal_samples = 0;
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800814 mlog(ML_HEARTBEAT, "Node %d changed generation (0x%llx "
815 "to 0x%llx)\n", slot->ds_node_num,
816 (long long)slot->ds_last_generation,
817 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800818 }
819
820 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
821
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800822 mlog(ML_HEARTBEAT, "Slot %d gen 0x%llx cksum 0x%x "
823 "seq %llu last %llu changed %u equal %u\n",
824 slot->ds_node_num, (long long)slot->ds_last_generation,
825 le32_to_cpu(hb_block->hb_cksum),
Sunil Mushran2bd63212010-01-25 16:57:38 -0800826 (unsigned long long)le64_to_cpu(hb_block->hb_seq),
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800827 (unsigned long long)slot->ds_last_time, slot->ds_changed_samples,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800828 slot->ds_equal_samples);
829
830 spin_lock(&o2hb_live_lock);
831
832fire_callbacks:
833 /* dead nodes only come to life after some number of
834 * changes at any time during their dead time */
835 if (list_empty(&slot->ds_live_item) &&
836 slot->ds_changed_samples >= O2HB_LIVE_THRESHOLD) {
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800837 mlog(ML_HEARTBEAT, "Node %d (id 0x%llx) joined my region\n",
838 slot->ds_node_num, (long long)slot->ds_last_generation);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800839
Sunil Mushran823a6372010-10-06 17:55:21 -0700840 set_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
841
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800842 /* first on the list generates a callback */
843 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700844 mlog(ML_HEARTBEAT, "o2hb: Add node %d to live nodes "
845 "bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800846 set_bit(slot->ds_node_num, o2hb_live_node_bitmap);
847
848 o2hb_queue_node_event(&event, O2HB_NODE_UP_CB, node,
849 slot->ds_node_num);
850
851 changed = 1;
852 }
853
854 list_add_tail(&slot->ds_live_item,
855 &o2hb_live_slots[slot->ds_node_num]);
856
857 slot->ds_equal_samples = 0;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700858
859 /* We want to be sure that all nodes agree on the
860 * number of milliseconds before a node will be
861 * considered dead. The self-fencing timeout is
862 * computed from this value, and a discrepancy might
863 * result in heartbeat calling a node dead when it
864 * hasn't self-fenced yet. */
865 slot_dead_ms = le32_to_cpu(hb_block->hb_dead_ms);
866 if (slot_dead_ms && slot_dead_ms != dead_ms) {
867 /* TODO: Perhaps we can fail the region here. */
868 mlog(ML_ERROR, "Node %d on device %s has a dead count "
869 "of %u ms, but our count is %u ms.\n"
870 "Please double check your configuration values "
871 "for 'O2CB_HEARTBEAT_THRESHOLD'\n",
872 slot->ds_node_num, reg->hr_dev_name, slot_dead_ms,
873 dead_ms);
874 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800875 goto out;
876 }
877
878 /* if the list is dead, we're done.. */
879 if (list_empty(&slot->ds_live_item))
880 goto out;
881
882 /* live nodes only go dead after enough consequtive missed
883 * samples.. reset the missed counter whenever we see
884 * activity */
885 if (slot->ds_equal_samples >= o2hb_dead_threshold || gen_changed) {
886 mlog(ML_HEARTBEAT, "Node %d left my region\n",
887 slot->ds_node_num);
888
Sunil Mushran823a6372010-10-06 17:55:21 -0700889 clear_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
890
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800891 /* last off the live_slot generates a callback */
892 list_del_init(&slot->ds_live_item);
893 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700894 mlog(ML_HEARTBEAT, "o2hb: Remove node %d from live "
895 "nodes bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800896 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
897
Sunil Mushran0e105d32010-10-07 17:00:16 -0700898 /* node can be null */
899 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB,
900 node, slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800901
902 changed = 1;
903 }
904
905 /* We don't clear this because the node is still
906 * actually writing new blocks. */
907 if (!gen_changed)
908 slot->ds_changed_samples = 0;
909 goto out;
910 }
911 if (slot->ds_changed_samples) {
912 slot->ds_changed_samples = 0;
913 slot->ds_equal_samples = 0;
914 }
915out:
Sunil Mushran43182d22010-10-06 17:55:16 -0700916 o2hb_set_quorum_device(reg, slot);
917
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800918 spin_unlock(&o2hb_live_lock);
919
920 o2hb_run_event_list(&event);
921
Sunil Mushran0e105d32010-10-07 17:00:16 -0700922 if (node)
923 o2nm_node_put(node);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800924 return changed;
925}
926
927/* This could be faster if we just implmented a find_last_bit, but I
928 * don't think the circumstances warrant it. */
929static int o2hb_highest_node(unsigned long *nodes,
930 int numbits)
931{
932 int highest, node;
933
934 highest = numbits;
935 node = -1;
936 while ((node = find_next_bit(nodes, numbits, node + 1)) != -1) {
937 if (node >= numbits)
938 break;
939
940 highest = node;
941 }
942
943 return highest;
944}
945
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800946static int o2hb_do_disk_heartbeat(struct o2hb_region *reg)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800947{
948 int i, ret, highest_node, change = 0;
949 unsigned long configured_nodes[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran0e105d32010-10-07 17:00:16 -0700950 unsigned long live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800951 struct o2hb_bio_wait_ctxt write_wc;
952
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800953 ret = o2nm_configured_node_map(configured_nodes,
954 sizeof(configured_nodes));
955 if (ret) {
956 mlog_errno(ret);
957 return ret;
958 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800959
Sunil Mushran0e105d32010-10-07 17:00:16 -0700960 /*
961 * If a node is not configured but is in the livemap, we still need
962 * to read the slot so as to be able to remove it from the livemap.
963 */
964 o2hb_fill_node_map(live_node_bitmap, sizeof(live_node_bitmap));
965 i = -1;
966 while ((i = find_next_bit(live_node_bitmap,
967 O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
968 set_bit(i, configured_nodes);
969 }
970
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800971 highest_node = o2hb_highest_node(configured_nodes, O2NM_MAX_NODES);
972 if (highest_node >= O2NM_MAX_NODES) {
973 mlog(ML_NOTICE, "ocfs2_heartbeat: no configured nodes found!\n");
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800974 return -EINVAL;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800975 }
976
977 /* No sense in reading the slots of nodes that don't exist
978 * yet. Of course, if the node definitions have holes in them
979 * then we're reading an empty slot anyway... Consider this
980 * best-effort. */
981 ret = o2hb_read_slots(reg, highest_node + 1);
982 if (ret < 0) {
983 mlog_errno(ret);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800984 return ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800985 }
986
987 /* With an up to date view of the slots, we can check that no
988 * other node has been improperly configured to heartbeat in
989 * our slot. */
990 if (!o2hb_check_last_timestamp(reg))
991 mlog(ML_ERROR, "Device \"%s\": another node is heartbeating "
992 "in our slot!\n", reg->hr_dev_name);
993
994 /* fill in the proper info for our next heartbeat */
995 o2hb_prepare_block(reg, reg->hr_generation);
996
997 /* And fire off the write. Note that we don't wait on this I/O
998 * until later. */
Philipp Reisnerb5592922007-01-11 10:58:10 +0100999 ret = o2hb_issue_node_write(reg, &write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001000 if (ret < 0) {
1001 mlog_errno(ret);
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001002 return ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001003 }
1004
1005 i = -1;
1006 while((i = find_next_bit(configured_nodes, O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
1007
1008 change |= o2hb_check_slot(reg, &reg->hr_slots[i]);
1009 }
1010
1011 /*
1012 * We have to be sure we've advertised ourselves on disk
1013 * before we can go to steady state. This ensures that
1014 * people we find in our steady state have seen us.
1015 */
1016 o2hb_wait_on_io(reg, &write_wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001017 if (write_wc.wc_error) {
1018 /* Do not re-arm the write timeout on I/O error - we
1019 * can't be sure that the new block ever made it to
1020 * disk */
1021 mlog(ML_ERROR, "Write error %d on device \"%s\"\n",
1022 write_wc.wc_error, reg->hr_dev_name);
1023 return write_wc.wc_error;
1024 }
1025
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001026 o2hb_arm_write_timeout(reg);
1027
1028 /* let the person who launched us know when things are steady */
1029 if (!change && (atomic_read(&reg->hr_steady_iterations) != 0)) {
1030 if (atomic_dec_and_test(&reg->hr_steady_iterations))
1031 wake_up(&o2hb_steady_queue);
1032 }
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001033
1034 return 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001035}
1036
1037/* Subtract b from a, storing the result in a. a *must* have a larger
1038 * value than b. */
1039static void o2hb_tv_subtract(struct timeval *a,
1040 struct timeval *b)
1041{
1042 /* just return 0 when a is after b */
1043 if (a->tv_sec < b->tv_sec ||
1044 (a->tv_sec == b->tv_sec && a->tv_usec < b->tv_usec)) {
1045 a->tv_sec = 0;
1046 a->tv_usec = 0;
1047 return;
1048 }
1049
1050 a->tv_sec -= b->tv_sec;
1051 a->tv_usec -= b->tv_usec;
1052 while ( a->tv_usec < 0 ) {
1053 a->tv_sec--;
1054 a->tv_usec += 1000000;
1055 }
1056}
1057
1058static unsigned int o2hb_elapsed_msecs(struct timeval *start,
1059 struct timeval *end)
1060{
1061 struct timeval res = *end;
1062
1063 o2hb_tv_subtract(&res, start);
1064
1065 return res.tv_sec * 1000 + res.tv_usec / 1000;
1066}
1067
1068/*
1069 * we ride the region ref that the region dir holds. before the region
1070 * dir is removed and drops it ref it will wait to tear down this
1071 * thread.
1072 */
1073static int o2hb_thread(void *data)
1074{
1075 int i, ret;
1076 struct o2hb_region *reg = data;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001077 struct o2hb_bio_wait_ctxt write_wc;
1078 struct timeval before_hb, after_hb;
1079 unsigned int elapsed_msec;
1080
1081 mlog(ML_HEARTBEAT|ML_KTHREAD, "hb thread running\n");
1082
1083 set_user_nice(current, -20);
1084
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001085 /* Pin node */
1086 o2nm_depend_this_node();
1087
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001088 while (!kthread_should_stop() && !reg->hr_unclean_stop) {
1089 /* We track the time spent inside
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001090 * o2hb_do_disk_heartbeat so that we avoid more than
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001091 * hr_timeout_ms between disk writes. On busy systems
1092 * this should result in a heartbeat which is less
1093 * likely to time itself out. */
1094 do_gettimeofday(&before_hb);
1095
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001096 i = 0;
1097 do {
1098 ret = o2hb_do_disk_heartbeat(reg);
1099 } while (ret && ++i < 2);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001100
1101 do_gettimeofday(&after_hb);
1102 elapsed_msec = o2hb_elapsed_msecs(&before_hb, &after_hb);
1103
Tao Mab31d3082009-12-22 10:32:15 +08001104 mlog(ML_HEARTBEAT,
1105 "start = %lu.%lu, end = %lu.%lu, msec = %u\n",
Mark Fasheh215c7f92006-02-01 16:42:10 -08001106 before_hb.tv_sec, (unsigned long) before_hb.tv_usec,
1107 after_hb.tv_sec, (unsigned long) after_hb.tv_usec,
1108 elapsed_msec);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001109
1110 if (elapsed_msec < reg->hr_timeout_ms) {
1111 /* the kthread api has blocked signals for us so no
1112 * need to record the return value. */
1113 msleep_interruptible(reg->hr_timeout_ms - elapsed_msec);
1114 }
1115 }
1116
1117 o2hb_disarm_write_timeout(reg);
1118
1119 /* unclean stop is only used in very bad situation */
1120 for(i = 0; !reg->hr_unclean_stop && i < reg->hr_blocks; i++)
1121 o2hb_shutdown_slot(&reg->hr_slots[i]);
1122
1123 /* Explicit down notification - avoid forcing the other nodes
1124 * to timeout on this region when we could just as easily
1125 * write a clear generation - thus indicating to them that
1126 * this node has left this region.
1127 *
1128 * XXX: Should we skip this on unclean_stop? */
1129 o2hb_prepare_block(reg, 0);
Philipp Reisnerb5592922007-01-11 10:58:10 +01001130 ret = o2hb_issue_node_write(reg, &write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001131 if (ret == 0) {
1132 o2hb_wait_on_io(reg, &write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001133 } else {
1134 mlog_errno(ret);
1135 }
1136
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001137 /* Unpin node */
1138 o2nm_undepend_this_node();
1139
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001140 mlog(ML_HEARTBEAT|ML_KTHREAD, "hb thread exiting\n");
1141
1142 return 0;
1143}
1144
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001145#ifdef CONFIG_DEBUG_FS
1146static int o2hb_debug_open(struct inode *inode, struct file *file)
1147{
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001148 struct o2hb_debug_buf *db = inode->i_private;
Sunil Mushran1f285302010-10-06 17:55:12 -07001149 struct o2hb_region *reg;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001150 unsigned long map[BITS_TO_LONGS(O2NM_MAX_NODES)];
1151 char *buf = NULL;
1152 int i = -1;
1153 int out = 0;
1154
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001155 /* max_nodes should be the largest bitmap we pass here */
1156 BUG_ON(sizeof(map) < db->db_size);
1157
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001158 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1159 if (!buf)
1160 goto bail;
1161
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001162 switch (db->db_type) {
1163 case O2HB_DB_TYPE_LIVENODES:
Sunil Mushrana6de0132010-10-06 17:55:13 -07001164 case O2HB_DB_TYPE_LIVEREGIONS:
1165 case O2HB_DB_TYPE_QUORUMREGIONS:
1166 case O2HB_DB_TYPE_FAILEDREGIONS:
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001167 spin_lock(&o2hb_live_lock);
1168 memcpy(map, db->db_data, db->db_size);
1169 spin_unlock(&o2hb_live_lock);
1170 break;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001171
Sunil Mushran1f285302010-10-06 17:55:12 -07001172 case O2HB_DB_TYPE_REGION_LIVENODES:
1173 spin_lock(&o2hb_live_lock);
1174 reg = (struct o2hb_region *)db->db_data;
1175 memcpy(map, reg->hr_live_node_bitmap, db->db_size);
1176 spin_unlock(&o2hb_live_lock);
1177 break;
1178
1179 case O2HB_DB_TYPE_REGION_NUMBER:
1180 reg = (struct o2hb_region *)db->db_data;
1181 out += snprintf(buf + out, PAGE_SIZE - out, "%d\n",
1182 reg->hr_region_num);
1183 goto done;
1184
Sunil Mushran43695d02010-10-06 17:55:09 -07001185 case O2HB_DB_TYPE_REGION_ELAPSED_TIME:
1186 reg = (struct o2hb_region *)db->db_data;
1187 out += snprintf(buf + out, PAGE_SIZE - out, "%u\n",
1188 jiffies_to_msecs(jiffies -
1189 reg->hr_last_timeout_start));
1190 goto done;
1191
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001192 case O2HB_DB_TYPE_REGION_PINNED:
1193 reg = (struct o2hb_region *)db->db_data;
1194 out += snprintf(buf + out, PAGE_SIZE - out, "%u\n",
1195 !!reg->hr_item_pinned);
1196 goto done;
1197
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001198 default:
1199 goto done;
1200 }
1201
1202 while ((i = find_next_bit(map, db->db_len, i + 1)) < db->db_len)
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001203 out += snprintf(buf + out, PAGE_SIZE - out, "%d ", i);
1204 out += snprintf(buf + out, PAGE_SIZE - out, "\n");
1205
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001206done:
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001207 i_size_write(inode, out);
1208
1209 file->private_data = buf;
1210
1211 return 0;
1212bail:
1213 return -ENOMEM;
1214}
1215
1216static int o2hb_debug_release(struct inode *inode, struct file *file)
1217{
1218 kfree(file->private_data);
1219 return 0;
1220}
1221
1222static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1223 size_t nbytes, loff_t *ppos)
1224{
1225 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
1226 i_size_read(file->f_mapping->host));
1227}
1228#else
1229static int o2hb_debug_open(struct inode *inode, struct file *file)
1230{
1231 return 0;
1232}
1233static int o2hb_debug_release(struct inode *inode, struct file *file)
1234{
1235 return 0;
1236}
1237static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1238 size_t nbytes, loff_t *ppos)
1239{
1240 return 0;
1241}
1242#endif /* CONFIG_DEBUG_FS */
1243
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001244static const struct file_operations o2hb_debug_fops = {
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001245 .open = o2hb_debug_open,
1246 .release = o2hb_debug_release,
1247 .read = o2hb_debug_read,
1248 .llseek = generic_file_llseek,
1249};
1250
1251void o2hb_exit(void)
1252{
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001253 kfree(o2hb_db_livenodes);
Sunil Mushrana6de0132010-10-06 17:55:13 -07001254 kfree(o2hb_db_liveregions);
1255 kfree(o2hb_db_quorumregions);
1256 kfree(o2hb_db_failedregions);
1257 debugfs_remove(o2hb_debug_failedregions);
1258 debugfs_remove(o2hb_debug_quorumregions);
1259 debugfs_remove(o2hb_debug_liveregions);
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001260 debugfs_remove(o2hb_debug_livenodes);
1261 debugfs_remove(o2hb_debug_dir);
1262}
1263
1264static struct dentry *o2hb_debug_create(const char *name, struct dentry *dir,
1265 struct o2hb_debug_buf **db, int db_len,
1266 int type, int size, int len, void *data)
1267{
1268 *db = kmalloc(db_len, GFP_KERNEL);
1269 if (!*db)
1270 return NULL;
1271
1272 (*db)->db_type = type;
1273 (*db)->db_size = size;
1274 (*db)->db_len = len;
1275 (*db)->db_data = data;
1276
1277 return debugfs_create_file(name, S_IFREG|S_IRUSR, dir, *db,
1278 &o2hb_debug_fops);
1279}
1280
1281static int o2hb_debug_init(void)
1282{
1283 int ret = -ENOMEM;
1284
1285 o2hb_debug_dir = debugfs_create_dir(O2HB_DEBUG_DIR, NULL);
1286 if (!o2hb_debug_dir) {
1287 mlog_errno(ret);
1288 goto bail;
1289 }
1290
1291 o2hb_debug_livenodes = o2hb_debug_create(O2HB_DEBUG_LIVENODES,
1292 o2hb_debug_dir,
1293 &o2hb_db_livenodes,
1294 sizeof(*o2hb_db_livenodes),
1295 O2HB_DB_TYPE_LIVENODES,
1296 sizeof(o2hb_live_node_bitmap),
1297 O2NM_MAX_NODES,
1298 o2hb_live_node_bitmap);
1299 if (!o2hb_debug_livenodes) {
1300 mlog_errno(ret);
1301 goto bail;
1302 }
Sunil Mushrana6de0132010-10-06 17:55:13 -07001303
1304 o2hb_debug_liveregions = o2hb_debug_create(O2HB_DEBUG_LIVEREGIONS,
1305 o2hb_debug_dir,
1306 &o2hb_db_liveregions,
1307 sizeof(*o2hb_db_liveregions),
1308 O2HB_DB_TYPE_LIVEREGIONS,
1309 sizeof(o2hb_live_region_bitmap),
1310 O2NM_MAX_REGIONS,
1311 o2hb_live_region_bitmap);
1312 if (!o2hb_debug_liveregions) {
1313 mlog_errno(ret);
1314 goto bail;
1315 }
1316
1317 o2hb_debug_quorumregions =
1318 o2hb_debug_create(O2HB_DEBUG_QUORUMREGIONS,
1319 o2hb_debug_dir,
1320 &o2hb_db_quorumregions,
1321 sizeof(*o2hb_db_quorumregions),
1322 O2HB_DB_TYPE_QUORUMREGIONS,
1323 sizeof(o2hb_quorum_region_bitmap),
1324 O2NM_MAX_REGIONS,
1325 o2hb_quorum_region_bitmap);
1326 if (!o2hb_debug_quorumregions) {
1327 mlog_errno(ret);
1328 goto bail;
1329 }
1330
1331 o2hb_debug_failedregions =
1332 o2hb_debug_create(O2HB_DEBUG_FAILEDREGIONS,
1333 o2hb_debug_dir,
1334 &o2hb_db_failedregions,
1335 sizeof(*o2hb_db_failedregions),
1336 O2HB_DB_TYPE_FAILEDREGIONS,
1337 sizeof(o2hb_failed_region_bitmap),
1338 O2NM_MAX_REGIONS,
1339 o2hb_failed_region_bitmap);
1340 if (!o2hb_debug_failedregions) {
1341 mlog_errno(ret);
1342 goto bail;
1343 }
1344
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001345 ret = 0;
1346bail:
1347 if (ret)
1348 o2hb_exit();
1349
1350 return ret;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001351}
1352
1353int o2hb_init(void)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001354{
1355 int i;
1356
1357 for (i = 0; i < ARRAY_SIZE(o2hb_callbacks); i++)
1358 INIT_LIST_HEAD(&o2hb_callbacks[i].list);
1359
1360 for (i = 0; i < ARRAY_SIZE(o2hb_live_slots); i++)
1361 INIT_LIST_HEAD(&o2hb_live_slots[i]);
1362
1363 INIT_LIST_HEAD(&o2hb_node_events);
1364
1365 memset(o2hb_live_node_bitmap, 0, sizeof(o2hb_live_node_bitmap));
Sunil Mushran536f0742010-10-07 17:03:07 -07001366 memset(o2hb_region_bitmap, 0, sizeof(o2hb_region_bitmap));
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001367 memset(o2hb_live_region_bitmap, 0, sizeof(o2hb_live_region_bitmap));
Sunil Mushran43182d22010-10-06 17:55:16 -07001368 memset(o2hb_quorum_region_bitmap, 0, sizeof(o2hb_quorum_region_bitmap));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -07001369 memset(o2hb_failed_region_bitmap, 0, sizeof(o2hb_failed_region_bitmap));
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001370
Sunil Mushran58a31582010-12-14 14:14:29 -08001371 o2hb_dependent_users = 0;
1372
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001373 return o2hb_debug_init();
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001374}
1375
1376/* if we're already in a callback then we're already serialized by the sem */
1377static void o2hb_fill_node_map_from_callback(unsigned long *map,
1378 unsigned bytes)
1379{
1380 BUG_ON(bytes < (BITS_TO_LONGS(O2NM_MAX_NODES) * sizeof(unsigned long)));
1381
1382 memcpy(map, &o2hb_live_node_bitmap, bytes);
1383}
1384
1385/*
1386 * get a map of all nodes that are heartbeating in any regions
1387 */
1388void o2hb_fill_node_map(unsigned long *map, unsigned bytes)
1389{
1390 /* callers want to serialize this map and callbacks so that they
1391 * can trust that they don't miss nodes coming to the party */
1392 down_read(&o2hb_callback_sem);
1393 spin_lock(&o2hb_live_lock);
1394 o2hb_fill_node_map_from_callback(map, bytes);
1395 spin_unlock(&o2hb_live_lock);
1396 up_read(&o2hb_callback_sem);
1397}
1398EXPORT_SYMBOL_GPL(o2hb_fill_node_map);
1399
1400/*
1401 * heartbeat configfs bits. The heartbeat set is a default set under
1402 * the cluster set in nodemanager.c.
1403 */
1404
1405static struct o2hb_region *to_o2hb_region(struct config_item *item)
1406{
1407 return item ? container_of(item, struct o2hb_region, hr_item) : NULL;
1408}
1409
1410/* drop_item only drops its ref after killing the thread, nothing should
1411 * be using the region anymore. this has to clean up any state that
1412 * attributes might have built up. */
1413static void o2hb_region_release(struct config_item *item)
1414{
1415 int i;
1416 struct page *page;
1417 struct o2hb_region *reg = to_o2hb_region(item);
1418
1419 if (reg->hr_tmp_block)
1420 kfree(reg->hr_tmp_block);
1421
1422 if (reg->hr_slot_data) {
1423 for (i = 0; i < reg->hr_num_pages; i++) {
1424 page = reg->hr_slot_data[i];
1425 if (page)
1426 __free_page(page);
1427 }
1428 kfree(reg->hr_slot_data);
1429 }
1430
1431 if (reg->hr_bdev)
Al Viro9a1c3542008-02-22 20:40:24 -05001432 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001433
1434 if (reg->hr_slots)
1435 kfree(reg->hr_slots);
1436
Sunil Mushran1f285302010-10-06 17:55:12 -07001437 kfree(reg->hr_db_regnum);
1438 kfree(reg->hr_db_livenodes);
1439 debugfs_remove(reg->hr_debug_livenodes);
1440 debugfs_remove(reg->hr_debug_regnum);
Sunil Mushrand4396ea2010-10-15 11:57:21 -07001441 debugfs_remove(reg->hr_debug_elapsed_time);
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001442 debugfs_remove(reg->hr_debug_pinned);
Sunil Mushran1f285302010-10-06 17:55:12 -07001443 debugfs_remove(reg->hr_debug_dir);
1444
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001445 spin_lock(&o2hb_live_lock);
1446 list_del(&reg->hr_all_item);
1447 spin_unlock(&o2hb_live_lock);
1448
1449 kfree(reg);
1450}
1451
1452static int o2hb_read_block_input(struct o2hb_region *reg,
1453 const char *page,
1454 size_t count,
1455 unsigned long *ret_bytes,
1456 unsigned int *ret_bits)
1457{
1458 unsigned long bytes;
1459 char *p = (char *)page;
1460
1461 bytes = simple_strtoul(p, &p, 0);
1462 if (!p || (*p && (*p != '\n')))
1463 return -EINVAL;
1464
1465 /* Heartbeat and fs min / max block sizes are the same. */
1466 if (bytes > 4096 || bytes < 512)
1467 return -ERANGE;
1468 if (hweight16(bytes) != 1)
1469 return -EINVAL;
1470
1471 if (ret_bytes)
1472 *ret_bytes = bytes;
1473 if (ret_bits)
1474 *ret_bits = ffs(bytes) - 1;
1475
1476 return 0;
1477}
1478
1479static ssize_t o2hb_region_block_bytes_read(struct o2hb_region *reg,
1480 char *page)
1481{
1482 return sprintf(page, "%u\n", reg->hr_block_bytes);
1483}
1484
1485static ssize_t o2hb_region_block_bytes_write(struct o2hb_region *reg,
1486 const char *page,
1487 size_t count)
1488{
1489 int status;
1490 unsigned long block_bytes;
1491 unsigned int block_bits;
1492
1493 if (reg->hr_bdev)
1494 return -EINVAL;
1495
1496 status = o2hb_read_block_input(reg, page, count,
1497 &block_bytes, &block_bits);
1498 if (status)
1499 return status;
1500
1501 reg->hr_block_bytes = (unsigned int)block_bytes;
1502 reg->hr_block_bits = block_bits;
1503
1504 return count;
1505}
1506
1507static ssize_t o2hb_region_start_block_read(struct o2hb_region *reg,
1508 char *page)
1509{
1510 return sprintf(page, "%llu\n", reg->hr_start_block);
1511}
1512
1513static ssize_t o2hb_region_start_block_write(struct o2hb_region *reg,
1514 const char *page,
1515 size_t count)
1516{
1517 unsigned long long tmp;
1518 char *p = (char *)page;
1519
1520 if (reg->hr_bdev)
1521 return -EINVAL;
1522
1523 tmp = simple_strtoull(p, &p, 0);
1524 if (!p || (*p && (*p != '\n')))
1525 return -EINVAL;
1526
1527 reg->hr_start_block = tmp;
1528
1529 return count;
1530}
1531
1532static ssize_t o2hb_region_blocks_read(struct o2hb_region *reg,
1533 char *page)
1534{
1535 return sprintf(page, "%d\n", reg->hr_blocks);
1536}
1537
1538static ssize_t o2hb_region_blocks_write(struct o2hb_region *reg,
1539 const char *page,
1540 size_t count)
1541{
1542 unsigned long tmp;
1543 char *p = (char *)page;
1544
1545 if (reg->hr_bdev)
1546 return -EINVAL;
1547
1548 tmp = simple_strtoul(p, &p, 0);
1549 if (!p || (*p && (*p != '\n')))
1550 return -EINVAL;
1551
1552 if (tmp > O2NM_MAX_NODES || tmp == 0)
1553 return -ERANGE;
1554
1555 reg->hr_blocks = (unsigned int)tmp;
1556
1557 return count;
1558}
1559
1560static ssize_t o2hb_region_dev_read(struct o2hb_region *reg,
1561 char *page)
1562{
1563 unsigned int ret = 0;
1564
1565 if (reg->hr_bdev)
1566 ret = sprintf(page, "%s\n", reg->hr_dev_name);
1567
1568 return ret;
1569}
1570
1571static void o2hb_init_region_params(struct o2hb_region *reg)
1572{
1573 reg->hr_slots_per_page = PAGE_CACHE_SIZE >> reg->hr_block_bits;
1574 reg->hr_timeout_ms = O2HB_REGION_TIMEOUT_MS;
1575
1576 mlog(ML_HEARTBEAT, "hr_start_block = %llu, hr_blocks = %u\n",
1577 reg->hr_start_block, reg->hr_blocks);
1578 mlog(ML_HEARTBEAT, "hr_block_bytes = %u, hr_block_bits = %u\n",
1579 reg->hr_block_bytes, reg->hr_block_bits);
1580 mlog(ML_HEARTBEAT, "hr_timeout_ms = %u\n", reg->hr_timeout_ms);
1581 mlog(ML_HEARTBEAT, "dead threshold = %u\n", o2hb_dead_threshold);
1582}
1583
1584static int o2hb_map_slot_data(struct o2hb_region *reg)
1585{
1586 int i, j;
1587 unsigned int last_slot;
1588 unsigned int spp = reg->hr_slots_per_page;
1589 struct page *page;
1590 char *raw;
1591 struct o2hb_disk_slot *slot;
1592
1593 reg->hr_tmp_block = kmalloc(reg->hr_block_bytes, GFP_KERNEL);
1594 if (reg->hr_tmp_block == NULL) {
1595 mlog_errno(-ENOMEM);
1596 return -ENOMEM;
1597 }
1598
1599 reg->hr_slots = kcalloc(reg->hr_blocks,
1600 sizeof(struct o2hb_disk_slot), GFP_KERNEL);
1601 if (reg->hr_slots == NULL) {
1602 mlog_errno(-ENOMEM);
1603 return -ENOMEM;
1604 }
1605
1606 for(i = 0; i < reg->hr_blocks; i++) {
1607 slot = &reg->hr_slots[i];
1608 slot->ds_node_num = i;
1609 INIT_LIST_HEAD(&slot->ds_live_item);
1610 slot->ds_raw_block = NULL;
1611 }
1612
1613 reg->hr_num_pages = (reg->hr_blocks + spp - 1) / spp;
1614 mlog(ML_HEARTBEAT, "Going to require %u pages to cover %u blocks "
1615 "at %u blocks per page\n",
1616 reg->hr_num_pages, reg->hr_blocks, spp);
1617
1618 reg->hr_slot_data = kcalloc(reg->hr_num_pages, sizeof(struct page *),
1619 GFP_KERNEL);
1620 if (!reg->hr_slot_data) {
1621 mlog_errno(-ENOMEM);
1622 return -ENOMEM;
1623 }
1624
1625 for(i = 0; i < reg->hr_num_pages; i++) {
1626 page = alloc_page(GFP_KERNEL);
1627 if (!page) {
1628 mlog_errno(-ENOMEM);
1629 return -ENOMEM;
1630 }
1631
1632 reg->hr_slot_data[i] = page;
1633
1634 last_slot = i * spp;
1635 raw = page_address(page);
1636 for (j = 0;
1637 (j < spp) && ((j + last_slot) < reg->hr_blocks);
1638 j++) {
1639 BUG_ON((j + last_slot) >= reg->hr_blocks);
1640
1641 slot = &reg->hr_slots[j + last_slot];
1642 slot->ds_raw_block =
1643 (struct o2hb_disk_heartbeat_block *) raw;
1644
1645 raw += reg->hr_block_bytes;
1646 }
1647 }
1648
1649 return 0;
1650}
1651
1652/* Read in all the slots available and populate the tracking
1653 * structures so that we can start with a baseline idea of what's
1654 * there. */
1655static int o2hb_populate_slot_data(struct o2hb_region *reg)
1656{
1657 int ret, i;
1658 struct o2hb_disk_slot *slot;
1659 struct o2hb_disk_heartbeat_block *hb_block;
1660
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001661 ret = o2hb_read_slots(reg, reg->hr_blocks);
1662 if (ret) {
1663 mlog_errno(ret);
1664 goto out;
1665 }
1666
1667 /* We only want to get an idea of the values initially in each
1668 * slot, so we do no verification - o2hb_check_slot will
1669 * actually determine if each configured slot is valid and
1670 * whether any values have changed. */
1671 for(i = 0; i < reg->hr_blocks; i++) {
1672 slot = &reg->hr_slots[i];
1673 hb_block = (struct o2hb_disk_heartbeat_block *) slot->ds_raw_block;
1674
1675 /* Only fill the values that o2hb_check_slot uses to
1676 * determine changing slots */
1677 slot->ds_last_time = le64_to_cpu(hb_block->hb_seq);
1678 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
1679 }
1680
1681out:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001682 return ret;
1683}
1684
1685/* this is acting as commit; we set up all of hr_bdev and hr_task or nothing */
1686static ssize_t o2hb_region_dev_write(struct o2hb_region *reg,
1687 const char *page,
1688 size_t count)
1689{
Joel Beckere6c352d2007-02-03 03:04:20 -08001690 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001691 long fd;
1692 int sectsize;
1693 char *p = (char *)page;
1694 struct file *filp = NULL;
1695 struct inode *inode = NULL;
1696 ssize_t ret = -EINVAL;
1697
1698 if (reg->hr_bdev)
1699 goto out;
1700
1701 /* We can't heartbeat without having had our node number
1702 * configured yet. */
1703 if (o2nm_this_node() == O2NM_MAX_NODES)
1704 goto out;
1705
1706 fd = simple_strtol(p, &p, 0);
1707 if (!p || (*p && (*p != '\n')))
1708 goto out;
1709
1710 if (fd < 0 || fd >= INT_MAX)
1711 goto out;
1712
1713 filp = fget(fd);
1714 if (filp == NULL)
1715 goto out;
1716
1717 if (reg->hr_blocks == 0 || reg->hr_start_block == 0 ||
1718 reg->hr_block_bytes == 0)
1719 goto out;
1720
1721 inode = igrab(filp->f_mapping->host);
1722 if (inode == NULL)
1723 goto out;
1724
1725 if (!S_ISBLK(inode->i_mode))
1726 goto out;
1727
1728 reg->hr_bdev = I_BDEV(filp->f_mapping->host);
Tejun Heoe525fd82010-11-13 11:55:17 +01001729 ret = blkdev_get(reg->hr_bdev, FMODE_WRITE | FMODE_READ, NULL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001730 if (ret) {
1731 reg->hr_bdev = NULL;
1732 goto out;
1733 }
1734 inode = NULL;
1735
1736 bdevname(reg->hr_bdev, reg->hr_dev_name);
1737
Martin K. Petersene1defc42009-05-22 17:17:49 -04001738 sectsize = bdev_logical_block_size(reg->hr_bdev);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001739 if (sectsize != reg->hr_block_bytes) {
1740 mlog(ML_ERROR,
1741 "blocksize %u incorrect for device, expected %d",
1742 reg->hr_block_bytes, sectsize);
1743 ret = -EINVAL;
1744 goto out;
1745 }
1746
1747 o2hb_init_region_params(reg);
1748
1749 /* Generation of zero is invalid */
1750 do {
1751 get_random_bytes(&reg->hr_generation,
1752 sizeof(reg->hr_generation));
1753 } while (reg->hr_generation == 0);
1754
1755 ret = o2hb_map_slot_data(reg);
1756 if (ret) {
1757 mlog_errno(ret);
1758 goto out;
1759 }
1760
1761 ret = o2hb_populate_slot_data(reg);
1762 if (ret) {
1763 mlog_errno(ret);
1764 goto out;
1765 }
1766
David Howellsc4028952006-11-22 14:57:56 +00001767 INIT_DELAYED_WORK(&reg->hr_write_timeout_work, o2hb_write_timeout);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001768
1769 /*
1770 * A node is considered live after it has beat LIVE_THRESHOLD
1771 * times. We're not steady until we've given them a chance
1772 * _after_ our first read.
1773 */
1774 atomic_set(&reg->hr_steady_iterations, O2HB_LIVE_THRESHOLD + 1);
1775
Joel Beckere6c352d2007-02-03 03:04:20 -08001776 hb_task = kthread_run(o2hb_thread, reg, "o2hb-%s",
1777 reg->hr_item.ci_name);
1778 if (IS_ERR(hb_task)) {
1779 ret = PTR_ERR(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001780 mlog_errno(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001781 goto out;
1782 }
1783
Joel Beckere6c352d2007-02-03 03:04:20 -08001784 spin_lock(&o2hb_live_lock);
1785 reg->hr_task = hb_task;
1786 spin_unlock(&o2hb_live_lock);
1787
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001788 ret = wait_event_interruptible(o2hb_steady_queue,
1789 atomic_read(&reg->hr_steady_iterations) == 0);
1790 if (ret) {
Joel Beckere6df3a62007-02-06 15:45:39 -08001791 /* We got interrupted (hello ptrace!). Clean up */
Joel Beckere6c352d2007-02-03 03:04:20 -08001792 spin_lock(&o2hb_live_lock);
1793 hb_task = reg->hr_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001794 reg->hr_task = NULL;
Joel Beckere6c352d2007-02-03 03:04:20 -08001795 spin_unlock(&o2hb_live_lock);
1796
1797 if (hb_task)
1798 kthread_stop(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001799 goto out;
1800 }
1801
Joel Beckere6df3a62007-02-06 15:45:39 -08001802 /* Ok, we were woken. Make sure it wasn't by drop_item() */
1803 spin_lock(&o2hb_live_lock);
1804 hb_task = reg->hr_task;
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001805 if (o2hb_global_heartbeat_active())
1806 set_bit(reg->hr_region_num, o2hb_live_region_bitmap);
Joel Beckere6df3a62007-02-06 15:45:39 -08001807 spin_unlock(&o2hb_live_lock);
1808
1809 if (hb_task)
1810 ret = count;
1811 else
1812 ret = -EIO;
1813
Sunil Mushran18c50cb2010-10-06 18:26:59 -07001814 if (hb_task && o2hb_global_heartbeat_active())
1815 printk(KERN_NOTICE "o2hb: Heartbeat started on region %s\n",
1816 config_item_name(&reg->hr_item));
1817
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001818out:
1819 if (filp)
1820 fput(filp);
1821 if (inode)
1822 iput(inode);
1823 if (ret < 0) {
1824 if (reg->hr_bdev) {
Al Viro9a1c3542008-02-22 20:40:24 -05001825 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001826 reg->hr_bdev = NULL;
1827 }
1828 }
1829 return ret;
1830}
1831
Zhen Wei92efc152006-12-08 00:48:17 -07001832static ssize_t o2hb_region_pid_read(struct o2hb_region *reg,
1833 char *page)
1834{
Joel Beckere6c352d2007-02-03 03:04:20 -08001835 pid_t pid = 0;
1836
1837 spin_lock(&o2hb_live_lock);
1838 if (reg->hr_task)
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001839 pid = task_pid_nr(reg->hr_task);
Joel Beckere6c352d2007-02-03 03:04:20 -08001840 spin_unlock(&o2hb_live_lock);
1841
1842 if (!pid)
Zhen Wei92efc152006-12-08 00:48:17 -07001843 return 0;
1844
Joel Beckere6c352d2007-02-03 03:04:20 -08001845 return sprintf(page, "%u\n", pid);
Zhen Wei92efc152006-12-08 00:48:17 -07001846}
1847
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001848struct o2hb_region_attribute {
1849 struct configfs_attribute attr;
1850 ssize_t (*show)(struct o2hb_region *, char *);
1851 ssize_t (*store)(struct o2hb_region *, const char *, size_t);
1852};
1853
1854static struct o2hb_region_attribute o2hb_region_attr_block_bytes = {
1855 .attr = { .ca_owner = THIS_MODULE,
1856 .ca_name = "block_bytes",
1857 .ca_mode = S_IRUGO | S_IWUSR },
1858 .show = o2hb_region_block_bytes_read,
1859 .store = o2hb_region_block_bytes_write,
1860};
1861
1862static struct o2hb_region_attribute o2hb_region_attr_start_block = {
1863 .attr = { .ca_owner = THIS_MODULE,
1864 .ca_name = "start_block",
1865 .ca_mode = S_IRUGO | S_IWUSR },
1866 .show = o2hb_region_start_block_read,
1867 .store = o2hb_region_start_block_write,
1868};
1869
1870static struct o2hb_region_attribute o2hb_region_attr_blocks = {
1871 .attr = { .ca_owner = THIS_MODULE,
1872 .ca_name = "blocks",
1873 .ca_mode = S_IRUGO | S_IWUSR },
1874 .show = o2hb_region_blocks_read,
1875 .store = o2hb_region_blocks_write,
1876};
1877
1878static struct o2hb_region_attribute o2hb_region_attr_dev = {
1879 .attr = { .ca_owner = THIS_MODULE,
1880 .ca_name = "dev",
1881 .ca_mode = S_IRUGO | S_IWUSR },
1882 .show = o2hb_region_dev_read,
1883 .store = o2hb_region_dev_write,
1884};
1885
Zhen Wei92efc152006-12-08 00:48:17 -07001886static struct o2hb_region_attribute o2hb_region_attr_pid = {
1887 .attr = { .ca_owner = THIS_MODULE,
1888 .ca_name = "pid",
1889 .ca_mode = S_IRUGO | S_IRUSR },
1890 .show = o2hb_region_pid_read,
1891};
1892
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001893static struct configfs_attribute *o2hb_region_attrs[] = {
1894 &o2hb_region_attr_block_bytes.attr,
1895 &o2hb_region_attr_start_block.attr,
1896 &o2hb_region_attr_blocks.attr,
1897 &o2hb_region_attr_dev.attr,
Zhen Wei92efc152006-12-08 00:48:17 -07001898 &o2hb_region_attr_pid.attr,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001899 NULL,
1900};
1901
1902static ssize_t o2hb_region_show(struct config_item *item,
1903 struct configfs_attribute *attr,
1904 char *page)
1905{
1906 struct o2hb_region *reg = to_o2hb_region(item);
1907 struct o2hb_region_attribute *o2hb_region_attr =
1908 container_of(attr, struct o2hb_region_attribute, attr);
1909 ssize_t ret = 0;
1910
1911 if (o2hb_region_attr->show)
1912 ret = o2hb_region_attr->show(reg, page);
1913 return ret;
1914}
1915
1916static ssize_t o2hb_region_store(struct config_item *item,
1917 struct configfs_attribute *attr,
1918 const char *page, size_t count)
1919{
1920 struct o2hb_region *reg = to_o2hb_region(item);
1921 struct o2hb_region_attribute *o2hb_region_attr =
1922 container_of(attr, struct o2hb_region_attribute, attr);
1923 ssize_t ret = -EINVAL;
1924
1925 if (o2hb_region_attr->store)
1926 ret = o2hb_region_attr->store(reg, page, count);
1927 return ret;
1928}
1929
1930static struct configfs_item_operations o2hb_region_item_ops = {
1931 .release = o2hb_region_release,
1932 .show_attribute = o2hb_region_show,
1933 .store_attribute = o2hb_region_store,
1934};
1935
1936static struct config_item_type o2hb_region_type = {
1937 .ct_item_ops = &o2hb_region_item_ops,
1938 .ct_attrs = o2hb_region_attrs,
1939 .ct_owner = THIS_MODULE,
1940};
1941
1942/* heartbeat set */
1943
1944struct o2hb_heartbeat_group {
1945 struct config_group hs_group;
1946 /* some stuff? */
1947};
1948
1949static struct o2hb_heartbeat_group *to_o2hb_heartbeat_group(struct config_group *group)
1950{
1951 return group ?
1952 container_of(group, struct o2hb_heartbeat_group, hs_group)
1953 : NULL;
1954}
1955
Sunil Mushran1f285302010-10-06 17:55:12 -07001956static int o2hb_debug_region_init(struct o2hb_region *reg, struct dentry *dir)
1957{
1958 int ret = -ENOMEM;
1959
1960 reg->hr_debug_dir =
1961 debugfs_create_dir(config_item_name(&reg->hr_item), dir);
1962 if (!reg->hr_debug_dir) {
1963 mlog_errno(ret);
1964 goto bail;
1965 }
1966
1967 reg->hr_debug_livenodes =
1968 o2hb_debug_create(O2HB_DEBUG_LIVENODES,
1969 reg->hr_debug_dir,
1970 &(reg->hr_db_livenodes),
1971 sizeof(*(reg->hr_db_livenodes)),
1972 O2HB_DB_TYPE_REGION_LIVENODES,
1973 sizeof(reg->hr_live_node_bitmap),
1974 O2NM_MAX_NODES, reg);
1975 if (!reg->hr_debug_livenodes) {
1976 mlog_errno(ret);
1977 goto bail;
1978 }
1979
1980 reg->hr_debug_regnum =
1981 o2hb_debug_create(O2HB_DEBUG_REGION_NUMBER,
1982 reg->hr_debug_dir,
1983 &(reg->hr_db_regnum),
1984 sizeof(*(reg->hr_db_regnum)),
1985 O2HB_DB_TYPE_REGION_NUMBER,
1986 0, O2NM_MAX_NODES, reg);
1987 if (!reg->hr_debug_regnum) {
1988 mlog_errno(ret);
1989 goto bail;
1990 }
1991
Sunil Mushran43695d02010-10-06 17:55:09 -07001992 reg->hr_debug_elapsed_time =
1993 o2hb_debug_create(O2HB_DEBUG_REGION_ELAPSED_TIME,
1994 reg->hr_debug_dir,
1995 &(reg->hr_db_elapsed_time),
1996 sizeof(*(reg->hr_db_elapsed_time)),
1997 O2HB_DB_TYPE_REGION_ELAPSED_TIME,
1998 0, 0, reg);
1999 if (!reg->hr_debug_elapsed_time) {
2000 mlog_errno(ret);
2001 goto bail;
2002 }
2003
Sunil Mushrancb0586b2010-12-14 14:14:30 -08002004 reg->hr_debug_pinned =
2005 o2hb_debug_create(O2HB_DEBUG_REGION_PINNED,
2006 reg->hr_debug_dir,
2007 &(reg->hr_db_pinned),
2008 sizeof(*(reg->hr_db_pinned)),
2009 O2HB_DB_TYPE_REGION_PINNED,
2010 0, 0, reg);
2011 if (!reg->hr_debug_pinned) {
2012 mlog_errno(ret);
2013 goto bail;
2014 }
2015
Sunil Mushran1f285302010-10-06 17:55:12 -07002016 ret = 0;
2017bail:
2018 return ret;
2019}
2020
Joel Beckerf89ab862008-07-17 14:53:48 -07002021static struct config_item *o2hb_heartbeat_group_make_item(struct config_group *group,
2022 const char *name)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002023{
2024 struct o2hb_region *reg = NULL;
Sunil Mushran1f285302010-10-06 17:55:12 -07002025 int ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002026
Robert P. J. Daycd861282006-12-13 00:34:52 -08002027 reg = kzalloc(sizeof(struct o2hb_region), GFP_KERNEL);
Joel Beckerf89ab862008-07-17 14:53:48 -07002028 if (reg == NULL)
Joel Beckera6795e92008-07-17 15:21:29 -07002029 return ERR_PTR(-ENOMEM);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002030
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002031 if (strlen(name) > O2HB_MAX_REGION_NAME_LEN) {
2032 ret = -ENAMETOOLONG;
2033 goto free;
2034 }
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002035
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002036 spin_lock(&o2hb_live_lock);
Sunil Mushran536f0742010-10-07 17:03:07 -07002037 reg->hr_region_num = 0;
2038 if (o2hb_global_heartbeat_active()) {
2039 reg->hr_region_num = find_first_zero_bit(o2hb_region_bitmap,
2040 O2NM_MAX_REGIONS);
2041 if (reg->hr_region_num >= O2NM_MAX_REGIONS) {
2042 spin_unlock(&o2hb_live_lock);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002043 ret = -EFBIG;
2044 goto free;
Sunil Mushran536f0742010-10-07 17:03:07 -07002045 }
2046 set_bit(reg->hr_region_num, o2hb_region_bitmap);
2047 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002048 list_add_tail(&reg->hr_all_item, &o2hb_all_regions);
2049 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002050
Sunil Mushran536f0742010-10-07 17:03:07 -07002051 config_item_init_type_name(&reg->hr_item, name, &o2hb_region_type);
2052
Sunil Mushran1f285302010-10-06 17:55:12 -07002053 ret = o2hb_debug_region_init(reg, o2hb_debug_dir);
2054 if (ret) {
2055 config_item_put(&reg->hr_item);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002056 goto free;
Sunil Mushran1f285302010-10-06 17:55:12 -07002057 }
2058
Joel Beckera6795e92008-07-17 15:21:29 -07002059 return &reg->hr_item;
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002060free:
2061 kfree(reg);
2062 return ERR_PTR(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002063}
2064
2065static void o2hb_heartbeat_group_drop_item(struct config_group *group,
2066 struct config_item *item)
2067{
Joel Beckere6c352d2007-02-03 03:04:20 -08002068 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002069 struct o2hb_region *reg = to_o2hb_region(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002070 int quorum_region = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002071
2072 /* stop the thread when the user removes the region dir */
Joel Beckere6c352d2007-02-03 03:04:20 -08002073 spin_lock(&o2hb_live_lock);
Sunil Mushrane7d656b2010-10-06 17:55:18 -07002074 if (o2hb_global_heartbeat_active()) {
Sunil Mushran536f0742010-10-07 17:03:07 -07002075 clear_bit(reg->hr_region_num, o2hb_region_bitmap);
Sunil Mushrane7d656b2010-10-06 17:55:18 -07002076 clear_bit(reg->hr_region_num, o2hb_live_region_bitmap);
Sunil Mushran58a31582010-12-14 14:14:29 -08002077 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
2078 quorum_region = 1;
Sunil Mushranffee2232010-12-14 14:14:28 -08002079 clear_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
Sunil Mushrane7d656b2010-10-06 17:55:18 -07002080 }
Joel Beckere6c352d2007-02-03 03:04:20 -08002081 hb_task = reg->hr_task;
2082 reg->hr_task = NULL;
Sunil Mushran58a31582010-12-14 14:14:29 -08002083 reg->hr_item_dropped = 1;
Joel Beckere6c352d2007-02-03 03:04:20 -08002084 spin_unlock(&o2hb_live_lock);
2085
2086 if (hb_task)
2087 kthread_stop(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002088
Joel Beckere6df3a62007-02-06 15:45:39 -08002089 /*
2090 * If we're racing a dev_write(), we need to wake them. They will
2091 * check reg->hr_task
2092 */
2093 if (atomic_read(&reg->hr_steady_iterations) != 0) {
2094 atomic_set(&reg->hr_steady_iterations, 0);
2095 wake_up(&o2hb_steady_queue);
2096 }
2097
Sunil Mushran18c50cb2010-10-06 18:26:59 -07002098 if (o2hb_global_heartbeat_active())
2099 printk(KERN_NOTICE "o2hb: Heartbeat stopped on region %s\n",
2100 config_item_name(&reg->hr_item));
Sunil Mushran58a31582010-12-14 14:14:29 -08002101
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002102 config_item_put(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002103
2104 if (!o2hb_global_heartbeat_active() || !quorum_region)
2105 return;
2106
2107 /*
2108 * If global heartbeat active and there are dependent users,
2109 * pin all regions if quorum region count <= CUT_OFF
2110 */
2111 spin_lock(&o2hb_live_lock);
2112
2113 if (!o2hb_dependent_users)
2114 goto unlock;
2115
2116 if (o2hb_pop_count(&o2hb_quorum_region_bitmap,
2117 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2118 o2hb_region_pin(NULL);
2119
2120unlock:
2121 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002122}
2123
2124struct o2hb_heartbeat_group_attribute {
2125 struct configfs_attribute attr;
2126 ssize_t (*show)(struct o2hb_heartbeat_group *, char *);
2127 ssize_t (*store)(struct o2hb_heartbeat_group *, const char *, size_t);
2128};
2129
2130static ssize_t o2hb_heartbeat_group_show(struct config_item *item,
2131 struct configfs_attribute *attr,
2132 char *page)
2133{
2134 struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
2135 struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
2136 container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
2137 ssize_t ret = 0;
2138
2139 if (o2hb_heartbeat_group_attr->show)
2140 ret = o2hb_heartbeat_group_attr->show(reg, page);
2141 return ret;
2142}
2143
2144static ssize_t o2hb_heartbeat_group_store(struct config_item *item,
2145 struct configfs_attribute *attr,
2146 const char *page, size_t count)
2147{
2148 struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
2149 struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
2150 container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
2151 ssize_t ret = -EINVAL;
2152
2153 if (o2hb_heartbeat_group_attr->store)
2154 ret = o2hb_heartbeat_group_attr->store(reg, page, count);
2155 return ret;
2156}
2157
2158static ssize_t o2hb_heartbeat_group_threshold_show(struct o2hb_heartbeat_group *group,
2159 char *page)
2160{
2161 return sprintf(page, "%u\n", o2hb_dead_threshold);
2162}
2163
2164static ssize_t o2hb_heartbeat_group_threshold_store(struct o2hb_heartbeat_group *group,
2165 const char *page,
2166 size_t count)
2167{
2168 unsigned long tmp;
2169 char *p = (char *)page;
2170
2171 tmp = simple_strtoul(p, &p, 10);
2172 if (!p || (*p && (*p != '\n')))
2173 return -EINVAL;
2174
2175 /* this will validate ranges for us. */
2176 o2hb_dead_threshold_set((unsigned int) tmp);
2177
2178 return count;
2179}
2180
Sunil Mushran54b51872010-10-07 15:26:08 -07002181static
2182ssize_t o2hb_heartbeat_group_mode_show(struct o2hb_heartbeat_group *group,
2183 char *page)
2184{
2185 return sprintf(page, "%s\n",
2186 o2hb_heartbeat_mode_desc[o2hb_heartbeat_mode]);
2187}
2188
2189static
2190ssize_t o2hb_heartbeat_group_mode_store(struct o2hb_heartbeat_group *group,
2191 const char *page, size_t count)
2192{
2193 unsigned int i;
2194 int ret;
2195 size_t len;
2196
2197 len = (page[count - 1] == '\n') ? count - 1 : count;
2198 if (!len)
2199 return -EINVAL;
2200
2201 for (i = 0; i < O2HB_HEARTBEAT_NUM_MODES; ++i) {
2202 if (strnicmp(page, o2hb_heartbeat_mode_desc[i], len))
2203 continue;
2204
2205 ret = o2hb_global_hearbeat_mode_set(i);
2206 if (!ret)
Sunil Mushran18c50cb2010-10-06 18:26:59 -07002207 printk(KERN_NOTICE "o2hb: Heartbeat mode set to %s\n",
Sunil Mushran54b51872010-10-07 15:26:08 -07002208 o2hb_heartbeat_mode_desc[i]);
2209 return count;
2210 }
2211
2212 return -EINVAL;
2213
2214}
2215
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002216static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_threshold = {
2217 .attr = { .ca_owner = THIS_MODULE,
2218 .ca_name = "dead_threshold",
2219 .ca_mode = S_IRUGO | S_IWUSR },
2220 .show = o2hb_heartbeat_group_threshold_show,
2221 .store = o2hb_heartbeat_group_threshold_store,
2222};
2223
Sunil Mushran54b51872010-10-07 15:26:08 -07002224static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_mode = {
2225 .attr = { .ca_owner = THIS_MODULE,
2226 .ca_name = "mode",
2227 .ca_mode = S_IRUGO | S_IWUSR },
2228 .show = o2hb_heartbeat_group_mode_show,
2229 .store = o2hb_heartbeat_group_mode_store,
2230};
2231
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002232static struct configfs_attribute *o2hb_heartbeat_group_attrs[] = {
2233 &o2hb_heartbeat_group_attr_threshold.attr,
Sunil Mushran54b51872010-10-07 15:26:08 -07002234 &o2hb_heartbeat_group_attr_mode.attr,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002235 NULL,
2236};
2237
2238static struct configfs_item_operations o2hb_hearbeat_group_item_ops = {
2239 .show_attribute = o2hb_heartbeat_group_show,
2240 .store_attribute = o2hb_heartbeat_group_store,
2241};
2242
2243static struct configfs_group_operations o2hb_heartbeat_group_group_ops = {
2244 .make_item = o2hb_heartbeat_group_make_item,
2245 .drop_item = o2hb_heartbeat_group_drop_item,
2246};
2247
2248static struct config_item_type o2hb_heartbeat_group_type = {
2249 .ct_group_ops = &o2hb_heartbeat_group_group_ops,
2250 .ct_item_ops = &o2hb_hearbeat_group_item_ops,
2251 .ct_attrs = o2hb_heartbeat_group_attrs,
2252 .ct_owner = THIS_MODULE,
2253};
2254
2255/* this is just here to avoid touching group in heartbeat.h which the
2256 * entire damn world #includes */
2257struct config_group *o2hb_alloc_hb_set(void)
2258{
2259 struct o2hb_heartbeat_group *hs = NULL;
2260 struct config_group *ret = NULL;
2261
Robert P. J. Daycd861282006-12-13 00:34:52 -08002262 hs = kzalloc(sizeof(struct o2hb_heartbeat_group), GFP_KERNEL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002263 if (hs == NULL)
2264 goto out;
2265
2266 config_group_init_type_name(&hs->hs_group, "heartbeat",
2267 &o2hb_heartbeat_group_type);
2268
2269 ret = &hs->hs_group;
2270out:
2271 if (ret == NULL)
2272 kfree(hs);
2273 return ret;
2274}
2275
2276void o2hb_free_hb_set(struct config_group *group)
2277{
2278 struct o2hb_heartbeat_group *hs = to_o2hb_heartbeat_group(group);
2279 kfree(hs);
2280}
2281
2282/* hb callback registration and issueing */
2283
2284static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type)
2285{
2286 if (type == O2HB_NUM_CB)
2287 return ERR_PTR(-EINVAL);
2288
2289 return &o2hb_callbacks[type];
2290}
2291
2292void o2hb_setup_callback(struct o2hb_callback_func *hc,
2293 enum o2hb_callback_type type,
2294 o2hb_cb_func *func,
2295 void *data,
2296 int priority)
2297{
2298 INIT_LIST_HEAD(&hc->hc_item);
2299 hc->hc_func = func;
2300 hc->hc_data = data;
2301 hc->hc_priority = priority;
2302 hc->hc_type = type;
2303 hc->hc_magic = O2HB_CB_MAGIC;
2304}
2305EXPORT_SYMBOL_GPL(o2hb_setup_callback);
2306
Sunil Mushran58a31582010-12-14 14:14:29 -08002307/*
2308 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2309 * In global heartbeat mode, region_uuid passed is NULL.
2310 *
2311 * In local, we only pin the matching region. In global we pin all the active
2312 * regions.
2313 */
2314static int o2hb_region_pin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002315{
Sunil Mushran58a31582010-12-14 14:14:29 -08002316 int ret = 0, found = 0;
2317 struct o2hb_region *reg;
2318 char *uuid;
Joel Becker14829422007-06-14 21:40:49 -07002319
2320 assert_spin_locked(&o2hb_live_lock);
2321
Sunil Mushran58a31582010-12-14 14:14:29 -08002322 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
2323 uuid = config_item_name(&reg->hr_item);
2324
2325 /* local heartbeat */
2326 if (region_uuid) {
2327 if (strcmp(region_uuid, uuid))
2328 continue;
2329 found = 1;
Joel Becker14829422007-06-14 21:40:49 -07002330 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002331
2332 if (reg->hr_item_pinned || reg->hr_item_dropped)
2333 goto skip_pin;
2334
2335 /* Ignore ENOENT only for local hb (userdlm domain) */
2336 ret = o2nm_depend_item(&reg->hr_item);
2337 if (!ret) {
2338 mlog(ML_CLUSTER, "Pin region %s\n", uuid);
2339 reg->hr_item_pinned = 1;
2340 } else {
2341 if (ret == -ENOENT && found)
2342 ret = 0;
2343 else {
2344 mlog(ML_ERROR, "Pin region %s fails with %d\n",
2345 uuid, ret);
2346 break;
2347 }
2348 }
2349skip_pin:
2350 if (found)
2351 break;
Joel Becker14829422007-06-14 21:40:49 -07002352 }
2353
Joel Becker14829422007-06-14 21:40:49 -07002354 return ret;
2355}
2356
Sunil Mushran58a31582010-12-14 14:14:29 -08002357/*
2358 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2359 * In global heartbeat mode, region_uuid passed is NULL.
2360 *
2361 * In local, we only unpin the matching region. In global we unpin all the
2362 * active regions.
2363 */
2364static void o2hb_region_unpin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002365{
2366 struct o2hb_region *reg;
Sunil Mushran58a31582010-12-14 14:14:29 -08002367 char *uuid;
2368 int found = 0;
2369
2370 assert_spin_locked(&o2hb_live_lock);
2371
2372 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
2373 uuid = config_item_name(&reg->hr_item);
2374 if (region_uuid) {
2375 if (strcmp(region_uuid, uuid))
2376 continue;
2377 found = 1;
2378 }
2379
2380 if (reg->hr_item_pinned) {
2381 mlog(ML_CLUSTER, "Unpin region %s\n", uuid);
2382 o2nm_undepend_item(&reg->hr_item);
2383 reg->hr_item_pinned = 0;
2384 }
2385 if (found)
2386 break;
2387 }
2388}
2389
2390static int o2hb_region_inc_user(const char *region_uuid)
2391{
2392 int ret = 0;
Joel Becker14829422007-06-14 21:40:49 -07002393
2394 spin_lock(&o2hb_live_lock);
2395
Sunil Mushran58a31582010-12-14 14:14:29 -08002396 /* local heartbeat */
2397 if (!o2hb_global_heartbeat_active()) {
2398 ret = o2hb_region_pin(region_uuid);
2399 goto unlock;
Joel Becker16c6a4f2007-06-19 11:34:03 -07002400 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002401
2402 /*
2403 * if global heartbeat active and this is the first dependent user,
2404 * pin all regions if quorum region count <= CUT_OFF
2405 */
2406 o2hb_dependent_users++;
2407 if (o2hb_dependent_users > 1)
2408 goto unlock;
2409
2410 if (o2hb_pop_count(&o2hb_quorum_region_bitmap,
2411 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2412 ret = o2hb_region_pin(NULL);
2413
2414unlock:
2415 spin_unlock(&o2hb_live_lock);
2416 return ret;
2417}
2418
2419void o2hb_region_dec_user(const char *region_uuid)
2420{
2421 spin_lock(&o2hb_live_lock);
2422
2423 /* local heartbeat */
2424 if (!o2hb_global_heartbeat_active()) {
2425 o2hb_region_unpin(region_uuid);
2426 goto unlock;
2427 }
2428
2429 /*
2430 * if global heartbeat active and there are no dependent users,
2431 * unpin all quorum regions
2432 */
2433 o2hb_dependent_users--;
2434 if (!o2hb_dependent_users)
2435 o2hb_region_unpin(NULL);
2436
2437unlock:
2438 spin_unlock(&o2hb_live_lock);
Joel Becker14829422007-06-14 21:40:49 -07002439}
2440
2441int o2hb_register_callback(const char *region_uuid,
2442 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002443{
2444 struct o2hb_callback_func *tmp;
2445 struct list_head *iter;
2446 struct o2hb_callback *hbcall;
2447 int ret;
2448
2449 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2450 BUG_ON(!list_empty(&hc->hc_item));
2451
2452 hbcall = hbcall_from_type(hc->hc_type);
2453 if (IS_ERR(hbcall)) {
2454 ret = PTR_ERR(hbcall);
2455 goto out;
2456 }
2457
Joel Becker14829422007-06-14 21:40:49 -07002458 if (region_uuid) {
Sunil Mushran58a31582010-12-14 14:14:29 -08002459 ret = o2hb_region_inc_user(region_uuid);
2460 if (ret) {
2461 mlog_errno(ret);
Joel Becker14829422007-06-14 21:40:49 -07002462 goto out;
Sunil Mushran58a31582010-12-14 14:14:29 -08002463 }
Joel Becker14829422007-06-14 21:40:49 -07002464 }
2465
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002466 down_write(&o2hb_callback_sem);
2467
2468 list_for_each(iter, &hbcall->list) {
2469 tmp = list_entry(iter, struct o2hb_callback_func, hc_item);
2470 if (hc->hc_priority < tmp->hc_priority) {
2471 list_add_tail(&hc->hc_item, iter);
2472 break;
2473 }
2474 }
2475 if (list_empty(&hc->hc_item))
2476 list_add_tail(&hc->hc_item, &hbcall->list);
2477
2478 up_write(&o2hb_callback_sem);
2479 ret = 0;
2480out:
Sunil Mushran58a31582010-12-14 14:14:29 -08002481 mlog(ML_CLUSTER, "returning %d on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002482 ret, __builtin_return_address(0), hc);
2483 return ret;
2484}
2485EXPORT_SYMBOL_GPL(o2hb_register_callback);
2486
Joel Becker14829422007-06-14 21:40:49 -07002487void o2hb_unregister_callback(const char *region_uuid,
2488 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002489{
2490 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2491
Sunil Mushran58a31582010-12-14 14:14:29 -08002492 mlog(ML_CLUSTER, "on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002493 __builtin_return_address(0), hc);
2494
Joel Becker14829422007-06-14 21:40:49 -07002495 /* XXX Can this happen _with_ a region reference? */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002496 if (list_empty(&hc->hc_item))
Joel Beckerc24f72c2007-02-03 03:14:30 -08002497 return;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002498
Joel Becker14829422007-06-14 21:40:49 -07002499 if (region_uuid)
Sunil Mushran58a31582010-12-14 14:14:29 -08002500 o2hb_region_dec_user(region_uuid);
Joel Becker14829422007-06-14 21:40:49 -07002501
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002502 down_write(&o2hb_callback_sem);
2503
2504 list_del_init(&hc->hc_item);
2505
2506 up_write(&o2hb_callback_sem);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002507}
2508EXPORT_SYMBOL_GPL(o2hb_unregister_callback);
2509
2510int o2hb_check_node_heartbeating(u8 node_num)
2511{
2512 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2513
2514 o2hb_fill_node_map(testing_map, sizeof(testing_map));
2515 if (!test_bit(node_num, testing_map)) {
2516 mlog(ML_HEARTBEAT,
2517 "node (%u) does not have heartbeating enabled.\n",
2518 node_num);
2519 return 0;
2520 }
2521
2522 return 1;
2523}
2524EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating);
2525
2526int o2hb_check_node_heartbeating_from_callback(u8 node_num)
2527{
2528 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2529
2530 o2hb_fill_node_map_from_callback(testing_map, sizeof(testing_map));
2531 if (!test_bit(node_num, testing_map)) {
2532 mlog(ML_HEARTBEAT,
2533 "node (%u) does not have heartbeating enabled.\n",
2534 node_num);
2535 return 0;
2536 }
2537
2538 return 1;
2539}
2540EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_from_callback);
2541
2542/* Makes sure our local node is configured with a node number, and is
2543 * heartbeating. */
2544int o2hb_check_local_node_heartbeating(void)
2545{
2546 u8 node_num;
2547
2548 /* if this node was set then we have networking */
2549 node_num = o2nm_this_node();
2550 if (node_num == O2NM_MAX_NODES) {
2551 mlog(ML_HEARTBEAT, "this node has not been configured.\n");
2552 return 0;
2553 }
2554
2555 return o2hb_check_node_heartbeating(node_num);
2556}
2557EXPORT_SYMBOL_GPL(o2hb_check_local_node_heartbeating);
2558
2559/*
2560 * this is just a hack until we get the plumbing which flips file systems
2561 * read only and drops the hb ref instead of killing the node dead.
2562 */
2563void o2hb_stop_all_regions(void)
2564{
2565 struct o2hb_region *reg;
2566
2567 mlog(ML_ERROR, "stopping heartbeat on all active regions.\n");
2568
2569 spin_lock(&o2hb_live_lock);
2570
2571 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item)
2572 reg->hr_unclean_stop = 1;
2573
2574 spin_unlock(&o2hb_live_lock);
2575}
2576EXPORT_SYMBOL_GPL(o2hb_stop_all_regions);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002577
2578int o2hb_get_all_regions(char *region_uuids, u8 max_regions)
2579{
2580 struct o2hb_region *reg;
2581 int numregs = 0;
2582 char *p;
2583
2584 spin_lock(&o2hb_live_lock);
2585
2586 p = region_uuids;
2587 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
2588 mlog(0, "Region: %s\n", config_item_name(&reg->hr_item));
2589 if (numregs < max_regions) {
2590 memcpy(p, config_item_name(&reg->hr_item),
2591 O2HB_MAX_REGION_NAME_LEN);
2592 p += O2HB_MAX_REGION_NAME_LEN;
2593 }
2594 numregs++;
2595 }
2596
2597 spin_unlock(&o2hb_live_lock);
2598
2599 return numregs;
2600}
2601EXPORT_SYMBOL_GPL(o2hb_get_all_regions);
2602
2603int o2hb_global_heartbeat_active(void)
2604{
Sunil Mushran4d94aa12010-10-09 10:27:04 -07002605 return (o2hb_heartbeat_mode == O2HB_HEARTBEAT_GLOBAL);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002606}
2607EXPORT_SYMBOL(o2hb_global_heartbeat_active);