Blame view

fs/ocfs2/heartbeat.c 2.76 KB
328970de0   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
2
3
4
5
6
7
8
9
10
  /* -*- 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.
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
11
12
13
14
   */
  
  #include <linux/fs.h>
  #include <linux/types.h>
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
15
  #include <linux/highmem.h>
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
16

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
17
18
19
20
21
22
23
24
  #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...
25
  #include "ocfs2_trace.h"
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
26
27
  
  #include "buffer_head_io.h"
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
28
29
30
31
  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...
32
33
34
35
36
37
38
39
40
  
  /* 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...
41
42
43
44
  
  void ocfs2_init_node_maps(struct ocfs2_super *osb)
  {
  	spin_lock_init(&osb->node_map_lock);
b4df6ed8d   Mark Fasheh   [PATCH] ocfs2: fi...
45
  	ocfs2_node_map_init(&osb->osb_recovering_orphan_dirs);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
46
  }
4670c46de   Joel Becker   ocfs2: Introduce ...
47
  void ocfs2_do_node_down(int node_num, void *data)
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
48
  {
4670c46de   Joel Becker   ocfs2: Introduce ...
49
  	struct ocfs2_super *osb = data;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
50
  	BUG_ON(osb->node_num == node_num);
b5770f98b   Tao Ma   ocfs2: Remove mlo...
51
  	trace_ocfs2_do_node_down(node_num);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
52

4670c46de   Joel Becker   ocfs2: Introduce ...
53
  	if (!osb->cconn) {
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
54
  		/*
4670c46de   Joel Becker   ocfs2: Introduce ...
55
56
57
58
  		 * 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...
59
60
61
  		 */
  		return;
  	}
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
62
  	ocfs2_recovery_thread(osb, node_num);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
63
  }
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
  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;
  }