xref: /openbmc/linux/fs/gfs2/super.c (revision 05ca4476)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
4  * Copyright (C) 2004-2007 Red Hat, Inc.  All rights reserved.
5  */
6 
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 
9 #include <linux/bio.h>
10 #include <linux/sched/signal.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/statfs.h>
16 #include <linux/seq_file.h>
17 #include <linux/mount.h>
18 #include <linux/kthread.h>
19 #include <linux/delay.h>
20 #include <linux/gfs2_ondisk.h>
21 #include <linux/crc32.h>
22 #include <linux/time.h>
23 #include <linux/wait.h>
24 #include <linux/writeback.h>
25 #include <linux/backing-dev.h>
26 #include <linux/kernel.h>
27 
28 #include "gfs2.h"
29 #include "incore.h"
30 #include "bmap.h"
31 #include "dir.h"
32 #include "glock.h"
33 #include "glops.h"
34 #include "inode.h"
35 #include "log.h"
36 #include "meta_io.h"
37 #include "quota.h"
38 #include "recovery.h"
39 #include "rgrp.h"
40 #include "super.h"
41 #include "trans.h"
42 #include "util.h"
43 #include "sys.h"
44 #include "xattr.h"
45 #include "lops.h"
46 
47 enum dinode_demise {
48 	SHOULD_DELETE_DINODE,
49 	SHOULD_NOT_DELETE_DINODE,
50 	SHOULD_DEFER_EVICTION,
51 };
52 
53 /**
54  * gfs2_jindex_free - Clear all the journal index information
55  * @sdp: The GFS2 superblock
56  *
57  */
58 
59 void gfs2_jindex_free(struct gfs2_sbd *sdp)
60 {
61 	struct list_head list;
62 	struct gfs2_jdesc *jd;
63 
64 	spin_lock(&sdp->sd_jindex_spin);
65 	list_add(&list, &sdp->sd_jindex_list);
66 	list_del_init(&sdp->sd_jindex_list);
67 	sdp->sd_journals = 0;
68 	spin_unlock(&sdp->sd_jindex_spin);
69 
70 	sdp->sd_jdesc = NULL;
71 	while (!list_empty(&list)) {
72 		jd = list_first_entry(&list, struct gfs2_jdesc, jd_list);
73 		gfs2_free_journal_extents(jd);
74 		list_del(&jd->jd_list);
75 		iput(jd->jd_inode);
76 		jd->jd_inode = NULL;
77 		kfree(jd);
78 	}
79 }
80 
81 static struct gfs2_jdesc *jdesc_find_i(struct list_head *head, unsigned int jid)
82 {
83 	struct gfs2_jdesc *jd;
84 
85 	list_for_each_entry(jd, head, jd_list) {
86 		if (jd->jd_jid == jid)
87 			return jd;
88 	}
89 	return NULL;
90 }
91 
92 struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid)
93 {
94 	struct gfs2_jdesc *jd;
95 
96 	spin_lock(&sdp->sd_jindex_spin);
97 	jd = jdesc_find_i(&sdp->sd_jindex_list, jid);
98 	spin_unlock(&sdp->sd_jindex_spin);
99 
100 	return jd;
101 }
102 
103 int gfs2_jdesc_check(struct gfs2_jdesc *jd)
104 {
105 	struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
106 	struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
107 	u64 size = i_size_read(jd->jd_inode);
108 
109 	if (gfs2_check_internal_file_size(jd->jd_inode, 8 << 20, BIT(30)))
110 		return -EIO;
111 
112 	jd->jd_blocks = size >> sdp->sd_sb.sb_bsize_shift;
113 
114 	if (gfs2_write_alloc_required(ip, 0, size)) {
115 		gfs2_consist_inode(ip);
116 		return -EIO;
117 	}
118 
119 	return 0;
120 }
121 
122 static int init_threads(struct gfs2_sbd *sdp)
123 {
124 	struct task_struct *p;
125 	int error = 0;
126 
127 	p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
128 	if (IS_ERR(p)) {
129 		error = PTR_ERR(p);
130 		fs_err(sdp, "can't start logd thread: %d\n", error);
131 		return error;
132 	}
133 	sdp->sd_logd_process = p;
134 
135 	p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
136 	if (IS_ERR(p)) {
137 		error = PTR_ERR(p);
138 		fs_err(sdp, "can't start quotad thread: %d\n", error);
139 		goto fail;
140 	}
141 	sdp->sd_quotad_process = p;
142 	return 0;
143 
144 fail:
145 	kthread_stop(sdp->sd_logd_process);
146 	sdp->sd_logd_process = NULL;
147 	return error;
148 }
149 
150 /**
151  * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
152  * @sdp: the filesystem
153  *
154  * Returns: errno
155  */
156 
157 int gfs2_make_fs_rw(struct gfs2_sbd *sdp)
158 {
159 	struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
160 	struct gfs2_glock *j_gl = ip->i_gl;
161 	struct gfs2_log_header_host head;
162 	int error;
163 
164 	error = init_threads(sdp);
165 	if (error) {
166 		gfs2_withdraw_delayed(sdp);
167 		return error;
168 	}
169 
170 	j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
171 	if (gfs2_withdrawn(sdp)) {
172 		error = -EIO;
173 		goto fail;
174 	}
175 
176 	error = gfs2_find_jhead(sdp->sd_jdesc, &head, false);
177 	if (error || gfs2_withdrawn(sdp))
178 		goto fail;
179 
180 	if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
181 		gfs2_consist(sdp);
182 		error = -EIO;
183 		goto fail;
184 	}
185 
186 	/*  Initialize some head of the log stuff  */
187 	sdp->sd_log_sequence = head.lh_sequence + 1;
188 	gfs2_log_pointers_init(sdp, head.lh_blkno);
189 
190 	error = gfs2_quota_init(sdp);
191 	if (error || gfs2_withdrawn(sdp))
192 		goto fail;
193 
194 	set_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
195 
196 	return 0;
197 
198 fail:
199 	if (sdp->sd_quotad_process)
200 		kthread_stop(sdp->sd_quotad_process);
201 	sdp->sd_quotad_process = NULL;
202 	if (sdp->sd_logd_process)
203 		kthread_stop(sdp->sd_logd_process);
204 	sdp->sd_logd_process = NULL;
205 	return error;
206 }
207 
208 void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf)
209 {
210 	const struct gfs2_statfs_change *str = buf;
211 
212 	sc->sc_total = be64_to_cpu(str->sc_total);
213 	sc->sc_free = be64_to_cpu(str->sc_free);
214 	sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
215 }
216 
217 void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf)
218 {
219 	struct gfs2_statfs_change *str = buf;
220 
221 	str->sc_total = cpu_to_be64(sc->sc_total);
222 	str->sc_free = cpu_to_be64(sc->sc_free);
223 	str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
224 }
225 
226 int gfs2_statfs_init(struct gfs2_sbd *sdp)
227 {
228 	struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
229 	struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
230 	struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
231 	struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
232 	struct buffer_head *m_bh, *l_bh;
233 	struct gfs2_holder gh;
234 	int error;
235 
236 	error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
237 				   &gh);
238 	if (error)
239 		return error;
240 
241 	error = gfs2_meta_inode_buffer(m_ip, &m_bh);
242 	if (error)
243 		goto out;
244 
245 	if (sdp->sd_args.ar_spectator) {
246 		spin_lock(&sdp->sd_statfs_spin);
247 		gfs2_statfs_change_in(m_sc, m_bh->b_data +
248 				      sizeof(struct gfs2_dinode));
249 		spin_unlock(&sdp->sd_statfs_spin);
250 	} else {
251 		error = gfs2_meta_inode_buffer(l_ip, &l_bh);
252 		if (error)
253 			goto out_m_bh;
254 
255 		spin_lock(&sdp->sd_statfs_spin);
256 		gfs2_statfs_change_in(m_sc, m_bh->b_data +
257 				      sizeof(struct gfs2_dinode));
258 		gfs2_statfs_change_in(l_sc, l_bh->b_data +
259 				      sizeof(struct gfs2_dinode));
260 		spin_unlock(&sdp->sd_statfs_spin);
261 
262 		brelse(l_bh);
263 	}
264 
265 out_m_bh:
266 	brelse(m_bh);
267 out:
268 	gfs2_glock_dq_uninit(&gh);
269 	return 0;
270 }
271 
272 void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free,
273 			s64 dinodes)
274 {
275 	struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
276 	struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
277 	struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
278 	struct buffer_head *l_bh;
279 	s64 x, y;
280 	int need_sync = 0;
281 	int error;
282 
283 	error = gfs2_meta_inode_buffer(l_ip, &l_bh);
284 	if (error)
285 		return;
286 
287 	gfs2_trans_add_meta(l_ip->i_gl, l_bh);
288 
289 	spin_lock(&sdp->sd_statfs_spin);
290 	l_sc->sc_total += total;
291 	l_sc->sc_free += free;
292 	l_sc->sc_dinodes += dinodes;
293 	gfs2_statfs_change_out(l_sc, l_bh->b_data + sizeof(struct gfs2_dinode));
294 	if (sdp->sd_args.ar_statfs_percent) {
295 		x = 100 * l_sc->sc_free;
296 		y = m_sc->sc_free * sdp->sd_args.ar_statfs_percent;
297 		if (x >= y || x <= -y)
298 			need_sync = 1;
299 	}
300 	spin_unlock(&sdp->sd_statfs_spin);
301 
302 	brelse(l_bh);
303 	if (need_sync)
304 		gfs2_wake_up_statfs(sdp);
305 }
306 
307 void update_statfs(struct gfs2_sbd *sdp, struct buffer_head *m_bh,
308 		   struct buffer_head *l_bh)
309 {
310 	struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
311 	struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
312 	struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
313 	struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
314 
315 	gfs2_trans_add_meta(l_ip->i_gl, l_bh);
316 	gfs2_trans_add_meta(m_ip->i_gl, m_bh);
317 
318 	spin_lock(&sdp->sd_statfs_spin);
319 	m_sc->sc_total += l_sc->sc_total;
320 	m_sc->sc_free += l_sc->sc_free;
321 	m_sc->sc_dinodes += l_sc->sc_dinodes;
322 	memset(l_sc, 0, sizeof(struct gfs2_statfs_change));
323 	memset(l_bh->b_data + sizeof(struct gfs2_dinode),
324 	       0, sizeof(struct gfs2_statfs_change));
325 	gfs2_statfs_change_out(m_sc, m_bh->b_data + sizeof(struct gfs2_dinode));
326 	spin_unlock(&sdp->sd_statfs_spin);
327 }
328 
329 int gfs2_statfs_sync(struct super_block *sb, int type)
330 {
331 	struct gfs2_sbd *sdp = sb->s_fs_info;
332 	struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
333 	struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
334 	struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
335 	struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
336 	struct gfs2_holder gh;
337 	struct buffer_head *m_bh, *l_bh;
338 	int error;
339 
340 	error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
341 				   &gh);
342 	if (error)
343 		goto out;
344 
345 	error = gfs2_meta_inode_buffer(m_ip, &m_bh);
346 	if (error)
347 		goto out_unlock;
348 
349 	spin_lock(&sdp->sd_statfs_spin);
350 	gfs2_statfs_change_in(m_sc, m_bh->b_data +
351 			      sizeof(struct gfs2_dinode));
352 	if (!l_sc->sc_total && !l_sc->sc_free && !l_sc->sc_dinodes) {
353 		spin_unlock(&sdp->sd_statfs_spin);
354 		goto out_bh;
355 	}
356 	spin_unlock(&sdp->sd_statfs_spin);
357 
358 	error = gfs2_meta_inode_buffer(l_ip, &l_bh);
359 	if (error)
360 		goto out_bh;
361 
362 	error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
363 	if (error)
364 		goto out_bh2;
365 
366 	update_statfs(sdp, m_bh, l_bh);
367 	sdp->sd_statfs_force_sync = 0;
368 
369 	gfs2_trans_end(sdp);
370 
371 out_bh2:
372 	brelse(l_bh);
373 out_bh:
374 	brelse(m_bh);
375 out_unlock:
376 	gfs2_glock_dq_uninit(&gh);
377 out:
378 	return error;
379 }
380 
381 struct lfcc {
382 	struct list_head list;
383 	struct gfs2_holder gh;
384 };
385 
386 /**
387  * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all
388  *                            journals are clean
389  * @sdp: the file system
390  * @state: the state to put the transaction lock into
391  * @t_gh: the hold on the transaction lock
392  *
393  * Returns: errno
394  */
395 
396 static int gfs2_lock_fs_check_clean(struct gfs2_sbd *sdp)
397 {
398 	struct gfs2_inode *ip;
399 	struct gfs2_jdesc *jd;
400 	struct lfcc *lfcc;
401 	LIST_HEAD(list);
402 	struct gfs2_log_header_host lh;
403 	int error;
404 
405 	list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
406 		lfcc = kmalloc(sizeof(struct lfcc), GFP_KERNEL);
407 		if (!lfcc) {
408 			error = -ENOMEM;
409 			goto out;
410 		}
411 		ip = GFS2_I(jd->jd_inode);
412 		error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &lfcc->gh);
413 		if (error) {
414 			kfree(lfcc);
415 			goto out;
416 		}
417 		list_add(&lfcc->list, &list);
418 	}
419 
420 	error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_EXCLUSIVE,
421 				   LM_FLAG_NOEXP, &sdp->sd_freeze_gh);
422 	if (error)
423 		goto out;
424 
425 	list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
426 		error = gfs2_jdesc_check(jd);
427 		if (error)
428 			break;
429 		error = gfs2_find_jhead(jd, &lh, false);
430 		if (error)
431 			break;
432 		if (!(lh.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
433 			error = -EBUSY;
434 			break;
435 		}
436 	}
437 
438 	if (error)
439 		gfs2_freeze_unlock(&sdp->sd_freeze_gh);
440 
441 out:
442 	while (!list_empty(&list)) {
443 		lfcc = list_first_entry(&list, struct lfcc, list);
444 		list_del(&lfcc->list);
445 		gfs2_glock_dq_uninit(&lfcc->gh);
446 		kfree(lfcc);
447 	}
448 	return error;
449 }
450 
451 void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
452 {
453 	struct gfs2_dinode *str = buf;
454 
455 	str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
456 	str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
457 	str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
458 	str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
459 	str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
460 	str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
461 	str->di_uid = cpu_to_be32(i_uid_read(&ip->i_inode));
462 	str->di_gid = cpu_to_be32(i_gid_read(&ip->i_inode));
463 	str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
464 	str->di_size = cpu_to_be64(i_size_read(&ip->i_inode));
465 	str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
466 	str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
467 	str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
468 	str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
469 
470 	str->di_goal_meta = cpu_to_be64(ip->i_goal);
471 	str->di_goal_data = cpu_to_be64(ip->i_goal);
472 	str->di_generation = cpu_to_be64(ip->i_generation);
473 
474 	str->di_flags = cpu_to_be32(ip->i_diskflags);
475 	str->di_height = cpu_to_be16(ip->i_height);
476 	str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
477 					     !(ip->i_diskflags & GFS2_DIF_EXHASH) ?
478 					     GFS2_FORMAT_DE : 0);
479 	str->di_depth = cpu_to_be16(ip->i_depth);
480 	str->di_entries = cpu_to_be32(ip->i_entries);
481 
482 	str->di_eattr = cpu_to_be64(ip->i_eattr);
483 	str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
484 	str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
485 	str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
486 }
487 
488 /**
489  * gfs2_write_inode - Make sure the inode is stable on the disk
490  * @inode: The inode
491  * @wbc: The writeback control structure
492  *
493  * Returns: errno
494  */
495 
496 static int gfs2_write_inode(struct inode *inode, struct writeback_control *wbc)
497 {
498 	struct gfs2_inode *ip = GFS2_I(inode);
499 	struct gfs2_sbd *sdp = GFS2_SB(inode);
500 	struct address_space *metamapping = gfs2_glock2aspace(ip->i_gl);
501 	struct backing_dev_info *bdi = inode_to_bdi(metamapping->host);
502 	int ret = 0;
503 	bool flush_all = (wbc->sync_mode == WB_SYNC_ALL || gfs2_is_jdata(ip));
504 
505 	if (flush_all)
506 		gfs2_log_flush(GFS2_SB(inode), ip->i_gl,
507 			       GFS2_LOG_HEAD_FLUSH_NORMAL |
508 			       GFS2_LFC_WRITE_INODE);
509 	if (bdi->wb.dirty_exceeded)
510 		gfs2_ail1_flush(sdp, wbc);
511 	else
512 		filemap_fdatawrite(metamapping);
513 	if (flush_all)
514 		ret = filemap_fdatawait(metamapping);
515 	if (ret)
516 		mark_inode_dirty_sync(inode);
517 	else {
518 		spin_lock(&inode->i_lock);
519 		if (!(inode->i_flags & I_DIRTY))
520 			gfs2_ordered_del_inode(ip);
521 		spin_unlock(&inode->i_lock);
522 	}
523 	return ret;
524 }
525 
526 /**
527  * gfs2_dirty_inode - check for atime updates
528  * @inode: The inode in question
529  * @flags: The type of dirty
530  *
531  * Unfortunately it can be called under any combination of inode
532  * glock and transaction lock, so we have to check carefully.
533  *
534  * At the moment this deals only with atime - it should be possible
535  * to expand that role in future, once a review of the locking has
536  * been carried out.
537  */
538 
539 static void gfs2_dirty_inode(struct inode *inode, int flags)
540 {
541 	struct gfs2_inode *ip = GFS2_I(inode);
542 	struct gfs2_sbd *sdp = GFS2_SB(inode);
543 	struct buffer_head *bh;
544 	struct gfs2_holder gh;
545 	int need_unlock = 0;
546 	int need_endtrans = 0;
547 	int ret;
548 
549 	if (unlikely(gfs2_withdrawn(sdp)))
550 		return;
551 	if (!gfs2_glock_is_locked_by_me(ip->i_gl)) {
552 		ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
553 		if (ret) {
554 			fs_err(sdp, "dirty_inode: glock %d\n", ret);
555 			gfs2_dump_glock(NULL, ip->i_gl, true);
556 			return;
557 		}
558 		need_unlock = 1;
559 	} else if (WARN_ON_ONCE(ip->i_gl->gl_state != LM_ST_EXCLUSIVE))
560 		return;
561 
562 	if (current->journal_info == NULL) {
563 		ret = gfs2_trans_begin(sdp, RES_DINODE, 0);
564 		if (ret) {
565 			fs_err(sdp, "dirty_inode: gfs2_trans_begin %d\n", ret);
566 			goto out;
567 		}
568 		need_endtrans = 1;
569 	}
570 
571 	ret = gfs2_meta_inode_buffer(ip, &bh);
572 	if (ret == 0) {
573 		gfs2_trans_add_meta(ip->i_gl, bh);
574 		gfs2_dinode_out(ip, bh->b_data);
575 		brelse(bh);
576 	}
577 
578 	if (need_endtrans)
579 		gfs2_trans_end(sdp);
580 out:
581 	if (need_unlock)
582 		gfs2_glock_dq_uninit(&gh);
583 }
584 
585 /**
586  * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
587  * @sdp: the filesystem
588  *
589  * Returns: errno
590  */
591 
592 void gfs2_make_fs_ro(struct gfs2_sbd *sdp)
593 {
594 	int log_write_allowed = test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
595 
596 	gfs2_flush_delete_work(sdp);
597 	if (!log_write_allowed && current == sdp->sd_quotad_process)
598 		fs_warn(sdp, "The quotad daemon is withdrawing.\n");
599 	else if (sdp->sd_quotad_process)
600 		kthread_stop(sdp->sd_quotad_process);
601 	sdp->sd_quotad_process = NULL;
602 
603 	if (!log_write_allowed && current == sdp->sd_logd_process)
604 		fs_warn(sdp, "The logd daemon is withdrawing.\n");
605 	else if (sdp->sd_logd_process)
606 		kthread_stop(sdp->sd_logd_process);
607 	sdp->sd_logd_process = NULL;
608 
609 	if (log_write_allowed) {
610 		gfs2_quota_sync(sdp->sd_vfs, 0);
611 		gfs2_statfs_sync(sdp->sd_vfs, 0);
612 
613 		gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_SHUTDOWN |
614 			       GFS2_LFC_MAKE_FS_RO);
615 		wait_event_timeout(sdp->sd_log_waitq,
616 				   gfs2_log_is_empty(sdp),
617 				   HZ * 5);
618 		gfs2_assert_warn(sdp, gfs2_log_is_empty(sdp));
619 	} else {
620 		wait_event_timeout(sdp->sd_log_waitq,
621 				   gfs2_log_is_empty(sdp),
622 				   HZ * 5);
623 	}
624 	gfs2_quota_cleanup(sdp);
625 
626 	if (!log_write_allowed)
627 		sdp->sd_vfs->s_flags |= SB_RDONLY;
628 }
629 
630 /**
631  * gfs2_put_super - Unmount the filesystem
632  * @sb: The VFS superblock
633  *
634  */
635 
636 static void gfs2_put_super(struct super_block *sb)
637 {
638 	struct gfs2_sbd *sdp = sb->s_fs_info;
639 	struct gfs2_jdesc *jd;
640 
641 	/* No more recovery requests */
642 	set_bit(SDF_NORECOVERY, &sdp->sd_flags);
643 	smp_mb();
644 
645 	/* Wait on outstanding recovery */
646 restart:
647 	spin_lock(&sdp->sd_jindex_spin);
648 	list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
649 		if (!test_bit(JDF_RECOVERY, &jd->jd_flags))
650 			continue;
651 		spin_unlock(&sdp->sd_jindex_spin);
652 		wait_on_bit(&jd->jd_flags, JDF_RECOVERY,
653 			    TASK_UNINTERRUPTIBLE);
654 		goto restart;
655 	}
656 	spin_unlock(&sdp->sd_jindex_spin);
657 
658 	if (!sb_rdonly(sb)) {
659 		gfs2_make_fs_ro(sdp);
660 	}
661 	WARN_ON(gfs2_withdrawing(sdp));
662 
663 	/*  At this point, we're through modifying the disk  */
664 
665 	/*  Release stuff  */
666 
667 	iput(sdp->sd_jindex);
668 	iput(sdp->sd_statfs_inode);
669 	iput(sdp->sd_rindex);
670 	iput(sdp->sd_quota_inode);
671 
672 	gfs2_glock_put(sdp->sd_rename_gl);
673 	gfs2_glock_put(sdp->sd_freeze_gl);
674 
675 	if (!sdp->sd_args.ar_spectator) {
676 		if (gfs2_holder_initialized(&sdp->sd_journal_gh))
677 			gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
678 		if (gfs2_holder_initialized(&sdp->sd_jinode_gh))
679 			gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
680 		gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
681 		gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
682 		free_local_statfs_inodes(sdp);
683 		iput(sdp->sd_qc_inode);
684 	}
685 
686 	gfs2_glock_dq_uninit(&sdp->sd_live_gh);
687 	gfs2_clear_rgrpd(sdp);
688 	gfs2_jindex_free(sdp);
689 	/*  Take apart glock structures and buffer lists  */
690 	gfs2_gl_hash_clear(sdp);
691 	truncate_inode_pages_final(&sdp->sd_aspace);
692 	gfs2_delete_debugfs_file(sdp);
693 	/*  Unmount the locking protocol  */
694 	gfs2_lm_unmount(sdp);
695 
696 	/*  At this point, we're through participating in the lockspace  */
697 	gfs2_sys_fs_del(sdp);
698 	free_sbd(sdp);
699 }
700 
701 /**
702  * gfs2_sync_fs - sync the filesystem
703  * @sb: the superblock
704  *
705  * Flushes the log to disk.
706  */
707 
708 static int gfs2_sync_fs(struct super_block *sb, int wait)
709 {
710 	struct gfs2_sbd *sdp = sb->s_fs_info;
711 
712 	gfs2_quota_sync(sb, -1);
713 	if (wait)
714 		gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
715 			       GFS2_LFC_SYNC_FS);
716 	return sdp->sd_log_error;
717 }
718 
719 void gfs2_freeze_func(struct work_struct *work)
720 {
721 	int error;
722 	struct gfs2_holder freeze_gh;
723 	struct gfs2_sbd *sdp = container_of(work, struct gfs2_sbd, sd_freeze_work);
724 	struct super_block *sb = sdp->sd_vfs;
725 
726 	atomic_inc(&sb->s_active);
727 	error = gfs2_freeze_lock(sdp, &freeze_gh, 0);
728 	if (error) {
729 		gfs2_assert_withdraw(sdp, 0);
730 	} else {
731 		atomic_set(&sdp->sd_freeze_state, SFS_UNFROZEN);
732 		error = thaw_super(sb);
733 		if (error) {
734 			fs_info(sdp, "GFS2: couldn't thaw filesystem: %d\n",
735 				error);
736 			gfs2_assert_withdraw(sdp, 0);
737 		}
738 		gfs2_freeze_unlock(&freeze_gh);
739 	}
740 	deactivate_super(sb);
741 	clear_bit_unlock(SDF_FS_FROZEN, &sdp->sd_flags);
742 	wake_up_bit(&sdp->sd_flags, SDF_FS_FROZEN);
743 	return;
744 }
745 
746 /**
747  * gfs2_freeze - prevent further writes to the filesystem
748  * @sb: the VFS structure for the filesystem
749  *
750  */
751 
752 static int gfs2_freeze(struct super_block *sb)
753 {
754 	struct gfs2_sbd *sdp = sb->s_fs_info;
755 	int error;
756 
757 	mutex_lock(&sdp->sd_freeze_mutex);
758 	if (atomic_read(&sdp->sd_freeze_state) != SFS_UNFROZEN) {
759 		error = -EBUSY;
760 		goto out;
761 	}
762 
763 	for (;;) {
764 		if (gfs2_withdrawn(sdp)) {
765 			error = -EINVAL;
766 			goto out;
767 		}
768 
769 		error = gfs2_lock_fs_check_clean(sdp);
770 		if (!error)
771 			break;
772 
773 		if (error == -EBUSY)
774 			fs_err(sdp, "waiting for recovery before freeze\n");
775 		else if (error == -EIO) {
776 			fs_err(sdp, "Fatal IO error: cannot freeze gfs2 due "
777 			       "to recovery error.\n");
778 			goto out;
779 		} else {
780 			fs_err(sdp, "error freezing FS: %d\n", error);
781 		}
782 		fs_err(sdp, "retrying...\n");
783 		msleep(1000);
784 	}
785 	set_bit(SDF_FS_FROZEN, &sdp->sd_flags);
786 out:
787 	mutex_unlock(&sdp->sd_freeze_mutex);
788 	return error;
789 }
790 
791 /**
792  * gfs2_unfreeze - reallow writes to the filesystem
793  * @sb: the VFS structure for the filesystem
794  *
795  */
796 
797 static int gfs2_unfreeze(struct super_block *sb)
798 {
799 	struct gfs2_sbd *sdp = sb->s_fs_info;
800 
801 	mutex_lock(&sdp->sd_freeze_mutex);
802 	if (atomic_read(&sdp->sd_freeze_state) != SFS_FROZEN ||
803 	    !gfs2_holder_initialized(&sdp->sd_freeze_gh)) {
804 		mutex_unlock(&sdp->sd_freeze_mutex);
805 		return -EINVAL;
806 	}
807 
808 	gfs2_freeze_unlock(&sdp->sd_freeze_gh);
809 	mutex_unlock(&sdp->sd_freeze_mutex);
810 	return wait_on_bit(&sdp->sd_flags, SDF_FS_FROZEN, TASK_INTERRUPTIBLE);
811 }
812 
813 /**
814  * statfs_fill - fill in the sg for a given RG
815  * @rgd: the RG
816  * @sc: the sc structure
817  *
818  * Returns: 0 on success, -ESTALE if the LVB is invalid
819  */
820 
821 static int statfs_slow_fill(struct gfs2_rgrpd *rgd,
822 			    struct gfs2_statfs_change_host *sc)
823 {
824 	gfs2_rgrp_verify(rgd);
825 	sc->sc_total += rgd->rd_data;
826 	sc->sc_free += rgd->rd_free;
827 	sc->sc_dinodes += rgd->rd_dinodes;
828 	return 0;
829 }
830 
831 /**
832  * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
833  * @sdp: the filesystem
834  * @sc: the sc info that will be returned
835  *
836  * Any error (other than a signal) will cause this routine to fall back
837  * to the synchronous version.
838  *
839  * FIXME: This really shouldn't busy wait like this.
840  *
841  * Returns: errno
842  */
843 
844 static int gfs2_statfs_slow(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
845 {
846 	struct gfs2_rgrpd *rgd_next;
847 	struct gfs2_holder *gha, *gh;
848 	unsigned int slots = 64;
849 	unsigned int x;
850 	int done;
851 	int error = 0, err;
852 
853 	memset(sc, 0, sizeof(struct gfs2_statfs_change_host));
854 	gha = kmalloc_array(slots, sizeof(struct gfs2_holder), GFP_KERNEL);
855 	if (!gha)
856 		return -ENOMEM;
857 	for (x = 0; x < slots; x++)
858 		gfs2_holder_mark_uninitialized(gha + x);
859 
860 	rgd_next = gfs2_rgrpd_get_first(sdp);
861 
862 	for (;;) {
863 		done = 1;
864 
865 		for (x = 0; x < slots; x++) {
866 			gh = gha + x;
867 
868 			if (gfs2_holder_initialized(gh) && gfs2_glock_poll(gh)) {
869 				err = gfs2_glock_wait(gh);
870 				if (err) {
871 					gfs2_holder_uninit(gh);
872 					error = err;
873 				} else {
874 					if (!error) {
875 						struct gfs2_rgrpd *rgd =
876 							gfs2_glock2rgrp(gh->gh_gl);
877 
878 						error = statfs_slow_fill(rgd, sc);
879 					}
880 					gfs2_glock_dq_uninit(gh);
881 				}
882 			}
883 
884 			if (gfs2_holder_initialized(gh))
885 				done = 0;
886 			else if (rgd_next && !error) {
887 				error = gfs2_glock_nq_init(rgd_next->rd_gl,
888 							   LM_ST_SHARED,
889 							   GL_ASYNC,
890 							   gh);
891 				rgd_next = gfs2_rgrpd_get_next(rgd_next);
892 				done = 0;
893 			}
894 
895 			if (signal_pending(current))
896 				error = -ERESTARTSYS;
897 		}
898 
899 		if (done)
900 			break;
901 
902 		yield();
903 	}
904 
905 	kfree(gha);
906 	return error;
907 }
908 
909 /**
910  * gfs2_statfs_i - Do a statfs
911  * @sdp: the filesystem
912  * @sg: the sg structure
913  *
914  * Returns: errno
915  */
916 
917 static int gfs2_statfs_i(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
918 {
919 	struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
920 	struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
921 
922 	spin_lock(&sdp->sd_statfs_spin);
923 
924 	*sc = *m_sc;
925 	sc->sc_total += l_sc->sc_total;
926 	sc->sc_free += l_sc->sc_free;
927 	sc->sc_dinodes += l_sc->sc_dinodes;
928 
929 	spin_unlock(&sdp->sd_statfs_spin);
930 
931 	if (sc->sc_free < 0)
932 		sc->sc_free = 0;
933 	if (sc->sc_free > sc->sc_total)
934 		sc->sc_free = sc->sc_total;
935 	if (sc->sc_dinodes < 0)
936 		sc->sc_dinodes = 0;
937 
938 	return 0;
939 }
940 
941 /**
942  * gfs2_statfs - Gather and return stats about the filesystem
943  * @sb: The superblock
944  * @statfsbuf: The buffer
945  *
946  * Returns: 0 on success or error code
947  */
948 
949 static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
950 {
951 	struct super_block *sb = dentry->d_sb;
952 	struct gfs2_sbd *sdp = sb->s_fs_info;
953 	struct gfs2_statfs_change_host sc;
954 	int error;
955 
956 	error = gfs2_rindex_update(sdp);
957 	if (error)
958 		return error;
959 
960 	if (gfs2_tune_get(sdp, gt_statfs_slow))
961 		error = gfs2_statfs_slow(sdp, &sc);
962 	else
963 		error = gfs2_statfs_i(sdp, &sc);
964 
965 	if (error)
966 		return error;
967 
968 	buf->f_type = GFS2_MAGIC;
969 	buf->f_bsize = sdp->sd_sb.sb_bsize;
970 	buf->f_blocks = sc.sc_total;
971 	buf->f_bfree = sc.sc_free;
972 	buf->f_bavail = sc.sc_free;
973 	buf->f_files = sc.sc_dinodes + sc.sc_free;
974 	buf->f_ffree = sc.sc_free;
975 	buf->f_namelen = GFS2_FNAMESIZE;
976 
977 	return 0;
978 }
979 
980 /**
981  * gfs2_drop_inode - Drop an inode (test for remote unlink)
982  * @inode: The inode to drop
983  *
984  * If we've received a callback on an iopen lock then it's because a
985  * remote node tried to deallocate the inode but failed due to this node
986  * still having the inode open. Here we mark the link count zero
987  * since we know that it must have reached zero if the GLF_DEMOTE flag
988  * is set on the iopen glock. If we didn't do a disk read since the
989  * remote node removed the final link then we might otherwise miss
990  * this event. This check ensures that this node will deallocate the
991  * inode's blocks, or alternatively pass the baton on to another
992  * node for later deallocation.
993  */
994 
995 static int gfs2_drop_inode(struct inode *inode)
996 {
997 	struct gfs2_inode *ip = GFS2_I(inode);
998 
999 	if (!test_bit(GIF_FREE_VFS_INODE, &ip->i_flags) &&
1000 	    inode->i_nlink &&
1001 	    gfs2_holder_initialized(&ip->i_iopen_gh)) {
1002 		struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1003 		if (test_bit(GLF_DEMOTE, &gl->gl_flags))
1004 			clear_nlink(inode);
1005 	}
1006 
1007 	/*
1008 	 * When under memory pressure when an inode's link count has dropped to
1009 	 * zero, defer deleting the inode to the delete workqueue.  This avoids
1010 	 * calling into DLM under memory pressure, which can deadlock.
1011 	 */
1012 	if (!inode->i_nlink &&
1013 	    unlikely(current->flags & PF_MEMALLOC) &&
1014 	    gfs2_holder_initialized(&ip->i_iopen_gh)) {
1015 		struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1016 
1017 		gfs2_glock_hold(gl);
1018 		if (!gfs2_queue_delete_work(gl, 0))
1019 			gfs2_glock_queue_put(gl);
1020 		return false;
1021 	}
1022 
1023 	return generic_drop_inode(inode);
1024 }
1025 
1026 static int is_ancestor(const struct dentry *d1, const struct dentry *d2)
1027 {
1028 	do {
1029 		if (d1 == d2)
1030 			return 1;
1031 		d1 = d1->d_parent;
1032 	} while (!IS_ROOT(d1));
1033 	return 0;
1034 }
1035 
1036 /**
1037  * gfs2_show_options - Show mount options for /proc/mounts
1038  * @s: seq_file structure
1039  * @root: root of this (sub)tree
1040  *
1041  * Returns: 0 on success or error code
1042  */
1043 
1044 static int gfs2_show_options(struct seq_file *s, struct dentry *root)
1045 {
1046 	struct gfs2_sbd *sdp = root->d_sb->s_fs_info;
1047 	struct gfs2_args *args = &sdp->sd_args;
1048 	int val;
1049 
1050 	if (is_ancestor(root, sdp->sd_master_dir))
1051 		seq_puts(s, ",meta");
1052 	if (args->ar_lockproto[0])
1053 		seq_show_option(s, "lockproto", args->ar_lockproto);
1054 	if (args->ar_locktable[0])
1055 		seq_show_option(s, "locktable", args->ar_locktable);
1056 	if (args->ar_hostdata[0])
1057 		seq_show_option(s, "hostdata", args->ar_hostdata);
1058 	if (args->ar_spectator)
1059 		seq_puts(s, ",spectator");
1060 	if (args->ar_localflocks)
1061 		seq_puts(s, ",localflocks");
1062 	if (args->ar_debug)
1063 		seq_puts(s, ",debug");
1064 	if (args->ar_posix_acl)
1065 		seq_puts(s, ",acl");
1066 	if (args->ar_quota != GFS2_QUOTA_DEFAULT) {
1067 		char *state;
1068 		switch (args->ar_quota) {
1069 		case GFS2_QUOTA_OFF:
1070 			state = "off";
1071 			break;
1072 		case GFS2_QUOTA_ACCOUNT:
1073 			state = "account";
1074 			break;
1075 		case GFS2_QUOTA_ON:
1076 			state = "on";
1077 			break;
1078 		default:
1079 			state = "unknown";
1080 			break;
1081 		}
1082 		seq_printf(s, ",quota=%s", state);
1083 	}
1084 	if (args->ar_suiddir)
1085 		seq_puts(s, ",suiddir");
1086 	if (args->ar_data != GFS2_DATA_DEFAULT) {
1087 		char *state;
1088 		switch (args->ar_data) {
1089 		case GFS2_DATA_WRITEBACK:
1090 			state = "writeback";
1091 			break;
1092 		case GFS2_DATA_ORDERED:
1093 			state = "ordered";
1094 			break;
1095 		default:
1096 			state = "unknown";
1097 			break;
1098 		}
1099 		seq_printf(s, ",data=%s", state);
1100 	}
1101 	if (args->ar_discard)
1102 		seq_puts(s, ",discard");
1103 	val = sdp->sd_tune.gt_logd_secs;
1104 	if (val != 30)
1105 		seq_printf(s, ",commit=%d", val);
1106 	val = sdp->sd_tune.gt_statfs_quantum;
1107 	if (val != 30)
1108 		seq_printf(s, ",statfs_quantum=%d", val);
1109 	else if (sdp->sd_tune.gt_statfs_slow)
1110 		seq_puts(s, ",statfs_quantum=0");
1111 	val = sdp->sd_tune.gt_quota_quantum;
1112 	if (val != 60)
1113 		seq_printf(s, ",quota_quantum=%d", val);
1114 	if (args->ar_statfs_percent)
1115 		seq_printf(s, ",statfs_percent=%d", args->ar_statfs_percent);
1116 	if (args->ar_errors != GFS2_ERRORS_DEFAULT) {
1117 		const char *state;
1118 
1119 		switch (args->ar_errors) {
1120 		case GFS2_ERRORS_WITHDRAW:
1121 			state = "withdraw";
1122 			break;
1123 		case GFS2_ERRORS_PANIC:
1124 			state = "panic";
1125 			break;
1126 		default:
1127 			state = "unknown";
1128 			break;
1129 		}
1130 		seq_printf(s, ",errors=%s", state);
1131 	}
1132 	if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags))
1133 		seq_puts(s, ",nobarrier");
1134 	if (test_bit(SDF_DEMOTE, &sdp->sd_flags))
1135 		seq_puts(s, ",demote_interface_used");
1136 	if (args->ar_rgrplvb)
1137 		seq_puts(s, ",rgrplvb");
1138 	if (args->ar_loccookie)
1139 		seq_puts(s, ",loccookie");
1140 	return 0;
1141 }
1142 
1143 static void gfs2_final_release_pages(struct gfs2_inode *ip)
1144 {
1145 	struct inode *inode = &ip->i_inode;
1146 	struct gfs2_glock *gl = ip->i_gl;
1147 
1148 	truncate_inode_pages(gfs2_glock2aspace(ip->i_gl), 0);
1149 	truncate_inode_pages(&inode->i_data, 0);
1150 
1151 	if (atomic_read(&gl->gl_revokes) == 0) {
1152 		clear_bit(GLF_LFLUSH, &gl->gl_flags);
1153 		clear_bit(GLF_DIRTY, &gl->gl_flags);
1154 	}
1155 }
1156 
1157 static int gfs2_dinode_dealloc(struct gfs2_inode *ip)
1158 {
1159 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1160 	struct gfs2_rgrpd *rgd;
1161 	struct gfs2_holder gh;
1162 	int error;
1163 
1164 	if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
1165 		gfs2_consist_inode(ip);
1166 		return -EIO;
1167 	}
1168 
1169 	error = gfs2_rindex_update(sdp);
1170 	if (error)
1171 		return error;
1172 
1173 	error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
1174 	if (error)
1175 		return error;
1176 
1177 	rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
1178 	if (!rgd) {
1179 		gfs2_consist_inode(ip);
1180 		error = -EIO;
1181 		goto out_qs;
1182 	}
1183 
1184 	error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
1185 				   LM_FLAG_NODE_SCOPE, &gh);
1186 	if (error)
1187 		goto out_qs;
1188 
1189 	error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA,
1190 				 sdp->sd_jdesc->jd_blocks);
1191 	if (error)
1192 		goto out_rg_gunlock;
1193 
1194 	gfs2_free_di(rgd, ip);
1195 
1196 	gfs2_final_release_pages(ip);
1197 
1198 	gfs2_trans_end(sdp);
1199 
1200 out_rg_gunlock:
1201 	gfs2_glock_dq_uninit(&gh);
1202 out_qs:
1203 	gfs2_quota_unhold(ip);
1204 	return error;
1205 }
1206 
1207 /**
1208  * gfs2_glock_put_eventually
1209  * @gl:	The glock to put
1210  *
1211  * When under memory pressure, trigger a deferred glock put to make sure we
1212  * won't call into DLM and deadlock.  Otherwise, put the glock directly.
1213  */
1214 
1215 static void gfs2_glock_put_eventually(struct gfs2_glock *gl)
1216 {
1217 	if (current->flags & PF_MEMALLOC)
1218 		gfs2_glock_queue_put(gl);
1219 	else
1220 		gfs2_glock_put(gl);
1221 }
1222 
1223 static bool gfs2_upgrade_iopen_glock(struct inode *inode)
1224 {
1225 	struct gfs2_inode *ip = GFS2_I(inode);
1226 	struct gfs2_sbd *sdp = GFS2_SB(inode);
1227 	struct gfs2_holder *gh = &ip->i_iopen_gh;
1228 	long timeout = 5 * HZ;
1229 	int error;
1230 
1231 	gh->gh_flags |= GL_NOCACHE;
1232 	gfs2_glock_dq_wait(gh);
1233 
1234 	/*
1235 	 * If there are no other lock holders, we'll get the lock immediately.
1236 	 * Otherwise, the other nodes holding the lock will be notified about
1237 	 * our locking request.  If they don't have the inode open, they'll
1238 	 * evict the cached inode and release the lock.  Otherwise, if they
1239 	 * poke the inode glock, we'll take this as an indication that they
1240 	 * still need the iopen glock and that they'll take care of deleting
1241 	 * the inode when they're done.  As a last resort, if another node
1242 	 * keeps holding the iopen glock without showing any activity on the
1243 	 * inode glock, we'll eventually time out.
1244 	 *
1245 	 * Note that we're passing the LM_FLAG_TRY_1CB flag to the first
1246 	 * locking request as an optimization to notify lock holders as soon as
1247 	 * possible.  Without that flag, they'd be notified implicitly by the
1248 	 * second locking request.
1249 	 */
1250 
1251 	gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | GL_NOCACHE, gh);
1252 	error = gfs2_glock_nq(gh);
1253 	if (error != GLR_TRYFAILED)
1254 		return !error;
1255 
1256 	gfs2_holder_reinit(LM_ST_EXCLUSIVE, GL_ASYNC | GL_NOCACHE, gh);
1257 	error = gfs2_glock_nq(gh);
1258 	if (error)
1259 		return false;
1260 
1261 	timeout = wait_event_interruptible_timeout(sdp->sd_async_glock_wait,
1262 		!test_bit(HIF_WAIT, &gh->gh_iflags) ||
1263 		test_bit(GLF_DEMOTE, &ip->i_gl->gl_flags),
1264 		timeout);
1265 	if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) {
1266 		gfs2_glock_dq(gh);
1267 		return false;
1268 	}
1269 	return true;
1270 }
1271 
1272 /**
1273  * evict_should_delete - determine whether the inode is eligible for deletion
1274  * @inode: The inode to evict
1275  *
1276  * This function determines whether the evicted inode is eligible to be deleted
1277  * and locks the inode glock.
1278  *
1279  * Returns: the fate of the dinode
1280  */
1281 static enum dinode_demise evict_should_delete(struct inode *inode,
1282 					      struct gfs2_holder *gh)
1283 {
1284 	struct gfs2_inode *ip = GFS2_I(inode);
1285 	struct super_block *sb = inode->i_sb;
1286 	struct gfs2_sbd *sdp = sb->s_fs_info;
1287 	int ret;
1288 
1289 	if (test_bit(GIF_ALLOC_FAILED, &ip->i_flags)) {
1290 		BUG_ON(!gfs2_glock_is_locked_by_me(ip->i_gl));
1291 		goto should_delete;
1292 	}
1293 
1294 	if (test_bit(GIF_DEFERRED_DELETE, &ip->i_flags))
1295 		return SHOULD_DEFER_EVICTION;
1296 
1297 	/* Deletes should never happen under memory pressure anymore.  */
1298 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
1299 		return SHOULD_DEFER_EVICTION;
1300 
1301 	/* Must not read inode block until block type has been verified */
1302 	ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, gh);
1303 	if (unlikely(ret)) {
1304 		glock_clear_object(ip->i_iopen_gh.gh_gl, ip);
1305 		ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1306 		gfs2_glock_dq_uninit(&ip->i_iopen_gh);
1307 		return SHOULD_DEFER_EVICTION;
1308 	}
1309 
1310 	if (gfs2_inode_already_deleted(ip->i_gl, ip->i_no_formal_ino))
1311 		return SHOULD_NOT_DELETE_DINODE;
1312 	ret = gfs2_check_blk_type(sdp, ip->i_no_addr, GFS2_BLKST_UNLINKED);
1313 	if (ret)
1314 		return SHOULD_NOT_DELETE_DINODE;
1315 
1316 	if (test_bit(GIF_INVALID, &ip->i_flags)) {
1317 		ret = gfs2_inode_refresh(ip);
1318 		if (ret)
1319 			return SHOULD_NOT_DELETE_DINODE;
1320 	}
1321 
1322 	/*
1323 	 * The inode may have been recreated in the meantime.
1324 	 */
1325 	if (inode->i_nlink)
1326 		return SHOULD_NOT_DELETE_DINODE;
1327 
1328 should_delete:
1329 	if (gfs2_holder_initialized(&ip->i_iopen_gh) &&
1330 	    test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1331 		if (!gfs2_upgrade_iopen_glock(inode)) {
1332 			gfs2_holder_uninit(&ip->i_iopen_gh);
1333 			return SHOULD_NOT_DELETE_DINODE;
1334 		}
1335 	}
1336 	return SHOULD_DELETE_DINODE;
1337 }
1338 
1339 /**
1340  * evict_unlinked_inode - delete the pieces of an unlinked evicted inode
1341  * @inode: The inode to evict
1342  */
1343 static int evict_unlinked_inode(struct inode *inode)
1344 {
1345 	struct gfs2_inode *ip = GFS2_I(inode);
1346 	int ret;
1347 
1348 	if (S_ISDIR(inode->i_mode) &&
1349 	    (ip->i_diskflags & GFS2_DIF_EXHASH)) {
1350 		ret = gfs2_dir_exhash_dealloc(ip);
1351 		if (ret)
1352 			goto out;
1353 	}
1354 
1355 	if (ip->i_eattr) {
1356 		ret = gfs2_ea_dealloc(ip);
1357 		if (ret)
1358 			goto out;
1359 	}
1360 
1361 	if (!gfs2_is_stuffed(ip)) {
1362 		ret = gfs2_file_dealloc(ip);
1363 		if (ret)
1364 			goto out;
1365 	}
1366 
1367 	/* We're about to clear the bitmap for the dinode, but as soon as we
1368 	   do, gfs2_create_inode can create another inode at the same block
1369 	   location and try to set gl_object again. We clear gl_object here so
1370 	   that subsequent inode creates don't see an old gl_object. */
1371 	glock_clear_object(ip->i_gl, ip);
1372 	ret = gfs2_dinode_dealloc(ip);
1373 	gfs2_inode_remember_delete(ip->i_gl, ip->i_no_formal_ino);
1374 out:
1375 	return ret;
1376 }
1377 
1378 /*
1379  * evict_linked_inode - evict an inode whose dinode has not been unlinked
1380  * @inode: The inode to evict
1381  */
1382 static int evict_linked_inode(struct inode *inode)
1383 {
1384 	struct super_block *sb = inode->i_sb;
1385 	struct gfs2_sbd *sdp = sb->s_fs_info;
1386 	struct gfs2_inode *ip = GFS2_I(inode);
1387 	struct address_space *metamapping;
1388 	int ret;
1389 
1390 	gfs2_log_flush(sdp, ip->i_gl, GFS2_LOG_HEAD_FLUSH_NORMAL |
1391 		       GFS2_LFC_EVICT_INODE);
1392 	metamapping = gfs2_glock2aspace(ip->i_gl);
1393 	if (test_bit(GLF_DIRTY, &ip->i_gl->gl_flags)) {
1394 		filemap_fdatawrite(metamapping);
1395 		filemap_fdatawait(metamapping);
1396 	}
1397 	write_inode_now(inode, 1);
1398 	gfs2_ail_flush(ip->i_gl, 0);
1399 
1400 	ret = gfs2_trans_begin(sdp, 0, sdp->sd_jdesc->jd_blocks);
1401 	if (ret)
1402 		return ret;
1403 
1404 	/* Needs to be done before glock release & also in a transaction */
1405 	truncate_inode_pages(&inode->i_data, 0);
1406 	truncate_inode_pages(metamapping, 0);
1407 	gfs2_trans_end(sdp);
1408 	return 0;
1409 }
1410 
1411 /**
1412  * gfs2_evict_inode - Remove an inode from cache
1413  * @inode: The inode to evict
1414  *
1415  * There are three cases to consider:
1416  * 1. i_nlink == 0, we are final opener (and must deallocate)
1417  * 2. i_nlink == 0, we are not the final opener (and cannot deallocate)
1418  * 3. i_nlink > 0
1419  *
1420  * If the fs is read only, then we have to treat all cases as per #3
1421  * since we are unable to do any deallocation. The inode will be
1422  * deallocated by the next read/write node to attempt an allocation
1423  * in the same resource group
1424  *
1425  * We have to (at the moment) hold the inodes main lock to cover
1426  * the gap between unlocking the shared lock on the iopen lock and
1427  * taking the exclusive lock. I'd rather do a shared -> exclusive
1428  * conversion on the iopen lock, but we can change that later. This
1429  * is safe, just less efficient.
1430  */
1431 
1432 static void gfs2_evict_inode(struct inode *inode)
1433 {
1434 	struct super_block *sb = inode->i_sb;
1435 	struct gfs2_sbd *sdp = sb->s_fs_info;
1436 	struct gfs2_inode *ip = GFS2_I(inode);
1437 	struct gfs2_holder gh;
1438 	int ret;
1439 
1440 	if (test_bit(GIF_FREE_VFS_INODE, &ip->i_flags)) {
1441 		clear_inode(inode);
1442 		return;
1443 	}
1444 
1445 	if (inode->i_nlink || sb_rdonly(sb))
1446 		goto out;
1447 
1448 	gfs2_holder_mark_uninitialized(&gh);
1449 	ret = evict_should_delete(inode, &gh);
1450 	if (ret == SHOULD_DEFER_EVICTION)
1451 		goto out;
1452 	if (ret == SHOULD_DELETE_DINODE)
1453 		ret = evict_unlinked_inode(inode);
1454 	else
1455 		ret = evict_linked_inode(inode);
1456 
1457 	if (gfs2_rs_active(&ip->i_res))
1458 		gfs2_rs_deltree(&ip->i_res);
1459 
1460 	if (gfs2_holder_initialized(&gh)) {
1461 		glock_clear_object(ip->i_gl, ip);
1462 		gfs2_glock_dq_uninit(&gh);
1463 	}
1464 	if (ret && ret != GLR_TRYFAILED && ret != -EROFS)
1465 		fs_warn(sdp, "gfs2_evict_inode: %d\n", ret);
1466 out:
1467 	truncate_inode_pages_final(&inode->i_data);
1468 	if (ip->i_qadata)
1469 		gfs2_assert_warn(sdp, ip->i_qadata->qa_ref == 0);
1470 	gfs2_rs_delete(ip, NULL);
1471 	gfs2_ordered_del_inode(ip);
1472 	clear_inode(inode);
1473 	gfs2_dir_hash_inval(ip);
1474 	if (ip->i_gl) {
1475 		glock_clear_object(ip->i_gl, ip);
1476 		wait_on_bit_io(&ip->i_flags, GIF_GLOP_PENDING, TASK_UNINTERRUPTIBLE);
1477 		gfs2_glock_add_to_lru(ip->i_gl);
1478 		gfs2_glock_put_eventually(ip->i_gl);
1479 		ip->i_gl = NULL;
1480 	}
1481 	if (gfs2_holder_initialized(&ip->i_iopen_gh)) {
1482 		struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1483 
1484 		glock_clear_object(gl, ip);
1485 		if (test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1486 			ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1487 			gfs2_glock_dq(&ip->i_iopen_gh);
1488 		}
1489 		gfs2_glock_hold(gl);
1490 		gfs2_holder_uninit(&ip->i_iopen_gh);
1491 		gfs2_glock_put_eventually(gl);
1492 	}
1493 }
1494 
1495 static struct inode *gfs2_alloc_inode(struct super_block *sb)
1496 {
1497 	struct gfs2_inode *ip;
1498 
1499 	ip = kmem_cache_alloc(gfs2_inode_cachep, GFP_KERNEL);
1500 	if (!ip)
1501 		return NULL;
1502 	ip->i_flags = 0;
1503 	ip->i_gl = NULL;
1504 	gfs2_holder_mark_uninitialized(&ip->i_iopen_gh);
1505 	memset(&ip->i_res, 0, sizeof(ip->i_res));
1506 	RB_CLEAR_NODE(&ip->i_res.rs_node);
1507 	ip->i_rahead = 0;
1508 	return &ip->i_inode;
1509 }
1510 
1511 static void gfs2_free_inode(struct inode *inode)
1512 {
1513 	kmem_cache_free(gfs2_inode_cachep, GFS2_I(inode));
1514 }
1515 
1516 extern void free_local_statfs_inodes(struct gfs2_sbd *sdp)
1517 {
1518 	struct local_statfs_inode *lsi, *safe;
1519 
1520 	/* Run through the statfs inodes list to iput and free memory */
1521 	list_for_each_entry_safe(lsi, safe, &sdp->sd_sc_inodes_list, si_list) {
1522 		if (lsi->si_jid == sdp->sd_jdesc->jd_jid)
1523 			sdp->sd_sc_inode = NULL; /* belongs to this node */
1524 		if (lsi->si_sc_inode)
1525 			iput(lsi->si_sc_inode);
1526 		list_del(&lsi->si_list);
1527 		kfree(lsi);
1528 	}
1529 }
1530 
1531 extern struct inode *find_local_statfs_inode(struct gfs2_sbd *sdp,
1532 					     unsigned int index)
1533 {
1534 	struct local_statfs_inode *lsi;
1535 
1536 	/* Return the local (per node) statfs inode in the
1537 	 * sdp->sd_sc_inodes_list corresponding to the 'index'. */
1538 	list_for_each_entry(lsi, &sdp->sd_sc_inodes_list, si_list) {
1539 		if (lsi->si_jid == index)
1540 			return lsi->si_sc_inode;
1541 	}
1542 	return NULL;
1543 }
1544 
1545 const struct super_operations gfs2_super_ops = {
1546 	.alloc_inode		= gfs2_alloc_inode,
1547 	.free_inode		= gfs2_free_inode,
1548 	.write_inode		= gfs2_write_inode,
1549 	.dirty_inode		= gfs2_dirty_inode,
1550 	.evict_inode		= gfs2_evict_inode,
1551 	.put_super		= gfs2_put_super,
1552 	.sync_fs		= gfs2_sync_fs,
1553 	.freeze_super		= gfs2_freeze,
1554 	.thaw_super		= gfs2_unfreeze,
1555 	.statfs			= gfs2_statfs,
1556 	.drop_inode		= gfs2_drop_inode,
1557 	.show_options		= gfs2_show_options,
1558 };
1559 
1560