Blame view

fs/ocfs2/sysfile.c 3.68 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
29
  /* -*- mode: c; c-basic-offset: 8; -*-
   * vim: noexpandtab sw=8 ts=8 sts=0:
   *
   * sysfile.c
   *
   * Initialize, read, write, etc. system files.
   *
   * 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>
  #include <linux/slab.h>
  #include <linux/highmem.h>
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
30
31
  #define MLOG_MASK_PREFIX ML_INODE
  #include <cluster/masklog.h>
80c05846f   Mark Fasheh   ocfs2: Add dentry...
32
  #include "ocfs2.h"
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  #include "alloc.h"
  #include "dir.h"
  #include "inode.h"
  #include "journal.h"
  #include "sysfile.h"
  
  #include "buffer_head_io.h"
  
  static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  						   int type,
  						   u32 slot);
  
  static inline int is_global_system_inode(int type);
  static inline int is_in_system_inode_array(struct ocfs2_super *osb,
  					   int type,
  					   u32 slot);
d246ab307   Tao Ma   ocfs2/trivial: Wr...
49
  #ifdef CONFIG_DEBUG_LOCK_ALLOC
cb25797d4   Jan Kara   ocfs2: Add lockde...
50
  static struct lock_class_key ocfs2_sysfile_cluster_lock_key[NUM_SYSTEM_INODES];
d246ab307   Tao Ma   ocfs2/trivial: Wr...
51
  #endif
cb25797d4   Jan Kara   ocfs2: Add lockde...
52

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  static inline int is_global_system_inode(int type)
  {
  	return type >= OCFS2_FIRST_ONLINE_SYSTEM_INODE &&
  		type <= OCFS2_LAST_GLOBAL_SYSTEM_INODE;
  }
  
  static inline int is_in_system_inode_array(struct ocfs2_super *osb,
  					   int type,
  					   u32 slot)
  {
  	return slot == osb->slot_num || is_global_system_inode(type);
  }
  
  struct inode *ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  					  int type,
  					  u32 slot)
  {
  	struct inode *inode = NULL;
  	struct inode **arr = NULL;
  
  	/* avoid the lookup if cached in local system file array */
  	if (is_in_system_inode_array(osb, type, slot))
  		arr = &(osb->system_inodes[type]);
  
  	if (arr && ((inode = *arr) != NULL)) {
  		/* get a ref in addition to the array ref */
  		inode = igrab(inode);
ebdec83ba   Eric Sesterhenn / snakebyte   [PATCH] BUG_ON() ...
80
  		BUG_ON(!inode);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
81
82
83
84
85
86
87
88
89
90
  
  		return inode;
  	}
  
  	/* this gets one ref thru iget */
  	inode = _ocfs2_get_system_file_inode(osb, type, slot);
  
  	/* add one more if putting into array for first time */
  	if (arr && inode) {
  		*arr = igrab(inode);
ebdec83ba   Eric Sesterhenn / snakebyte   [PATCH] BUG_ON() ...
91
  		BUG_ON(!*arr);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
92
93
94
95
96
97
98
99
100
101
102
  	}
  	return inode;
  }
  
  static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  						   int type,
  						   u32 slot)
  {
  	char namebuf[40];
  	struct inode *inode = NULL;
  	u64 blkno;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
103
104
105
106
107
  	int status = 0;
  
  	ocfs2_sprintf_system_inode_name(namebuf,
  					sizeof(namebuf),
  					type, slot);
be94d1170   Mark Fasheh   ocfs2: Provide co...
108
109
  	status = ocfs2_lookup_ino_from_name(osb->sys_root_inode, namebuf,
  					    strlen(namebuf), &blkno);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
110
111
112
  	if (status < 0) {
  		goto bail;
  	}
5fa0613ea   Jan Kara   ocfs2: Silence fa...
113
  	inode = ocfs2_iget(osb, blkno, OCFS2_FI_FLAG_SYSFILE, type);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
114
115
116
117
118
  	if (IS_ERR(inode)) {
  		mlog_errno(PTR_ERR(inode));
  		inode = NULL;
  		goto bail;
  	}
cb25797d4   Jan Kara   ocfs2: Add lockde...
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  #ifdef CONFIG_DEBUG_LOCK_ALLOC
  	if (type == LOCAL_USER_QUOTA_SYSTEM_INODE ||
  	    type == LOCAL_GROUP_QUOTA_SYSTEM_INODE ||
  	    type == JOURNAL_SYSTEM_INODE) {
  		/* Ignore inode lock on these inodes as the lock does not
  		 * really belong to any process and lockdep cannot handle
  		 * that */
  		OCFS2_I(inode)->ip_inode_lockres.l_lockdep_map.key = NULL;
  	} else {
  		lockdep_init_map(&OCFS2_I(inode)->ip_inode_lockres.
  								l_lockdep_map,
  				 ocfs2_system_inodes[type].si_name,
  				 &ocfs2_sysfile_cluster_lock_key[type], 0);
  	}
  #endif
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
134
  bail:
be94d1170   Mark Fasheh   ocfs2: Provide co...
135

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
136
137
  	return inode;
  }