Blame view

fs/ocfs2/heartbeat.c 3.42 KB
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  /* -*- mode: c; c-basic-offset: 8; -*-
   * vim: noexpandtab sw=8 ts=8 sts=0:
   *
   * heartbeat.c
   *
   * Register ourselves with the heartbaet service, keep our node maps
   * up to date, and fire off recovery when needed.
   *
   * Copyright (C) 2002, 2004 Oracle.  All rights reserved.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public
   * License as published by the Free Software Foundation; either
   * version 2 of the License, or (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public
   * License along with this program; if not, write to the
   * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   * Boston, MA 021110-1307, USA.
   */
  
  #include <linux/fs.h>
  #include <linux/types.h>
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
29
  #include <linux/highmem.h>
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
30

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
31
32
33
34
35
36
37
38
  #include <cluster/masklog.h>
  
  #include "ocfs2.h"
  
  #include "alloc.h"
  #include "heartbeat.h"
  #include "inode.h"
  #include "journal.h"
b5770f98b   Tao Ma   ocfs2: Remove mlo...
39
  #include "ocfs2_trace.h"
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
40
41
  
  #include "buffer_head_io.h"
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
42
43
44
45
  static inline void __ocfs2_node_map_set_bit(struct ocfs2_node_map *map,
  					    int bit);
  static inline void __ocfs2_node_map_clear_bit(struct ocfs2_node_map *map,
  					      int bit);
006000566   Adrian Bunk   [2.6 patch] fs/oc...
46
47
48
49
50
51
52
53
54
  
  /* special case -1 for now
   * TODO: should *really* make sure the calling func never passes -1!!  */
  static void ocfs2_node_map_init(struct ocfs2_node_map *map)
  {
  	map->num_nodes = OCFS2_NODE_MAP_MAX_NODES;
  	memset(map->map, 0, BITS_TO_LONGS(OCFS2_NODE_MAP_MAX_NODES) *
  	       sizeof(unsigned long));
  }
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
55
56
57
58
  
  void ocfs2_init_node_maps(struct ocfs2_super *osb)
  {
  	spin_lock_init(&osb->node_map_lock);
b4df6ed8d   Mark Fasheh   [PATCH] ocfs2: fi...
59
  	ocfs2_node_map_init(&osb->osb_recovering_orphan_dirs);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
60
  }
4670c46de   Joel Becker   ocfs2: Introduce ...
61
  void ocfs2_do_node_down(int node_num, void *data)
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
62
  {
4670c46de   Joel Becker   ocfs2: Introduce ...
63
  	struct ocfs2_super *osb = data;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
64
  	BUG_ON(osb->node_num == node_num);
b5770f98b   Tao Ma   ocfs2: Remove mlo...
65
  	trace_ocfs2_do_node_down(node_num);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
66

4670c46de   Joel Becker   ocfs2: Introduce ...
67
  	if (!osb->cconn) {
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
68
  		/*
4670c46de   Joel Becker   ocfs2: Introduce ...
69
70
71
72
  		 * No cluster connection means we're not even ready to
  		 * participate yet.  We check the slots after the cluster
  		 * comes up, so we will notice the node death then.  We
  		 * can safely ignore it here.
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
73
74
75
  		 */
  		return;
  	}
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
76
  	ocfs2_recovery_thread(osb, node_num);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
77
  }
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  static inline void __ocfs2_node_map_set_bit(struct ocfs2_node_map *map,
  					    int bit)
  {
  	set_bit(bit, map->map);
  }
  
  void ocfs2_node_map_set_bit(struct ocfs2_super *osb,
  			    struct ocfs2_node_map *map,
  			    int bit)
  {
  	if (bit==-1)
  		return;
  	BUG_ON(bit >= map->num_nodes);
  	spin_lock(&osb->node_map_lock);
  	__ocfs2_node_map_set_bit(map, bit);
  	spin_unlock(&osb->node_map_lock);
  }
  
  static inline void __ocfs2_node_map_clear_bit(struct ocfs2_node_map *map,
  					      int bit)
  {
  	clear_bit(bit, map->map);
  }
  
  void ocfs2_node_map_clear_bit(struct ocfs2_super *osb,
  			      struct ocfs2_node_map *map,
  			      int bit)
  {
  	if (bit==-1)
  		return;
  	BUG_ON(bit >= map->num_nodes);
  	spin_lock(&osb->node_map_lock);
  	__ocfs2_node_map_clear_bit(map, bit);
  	spin_unlock(&osb->node_map_lock);
  }
  
  int ocfs2_node_map_test_bit(struct ocfs2_super *osb,
  			    struct ocfs2_node_map *map,
  			    int bit)
  {
  	int ret;
  	if (bit >= map->num_nodes) {
  		mlog(ML_ERROR, "bit=%d map->num_nodes=%d
  ", bit, map->num_nodes);
  		BUG();
  	}
  	spin_lock(&osb->node_map_lock);
  	ret = test_bit(bit, map->map);
  	spin_unlock(&osb->node_map_lock);
  	return ret;
  }