blob: fbf6b1fd330b315f761eabd58ab66b87c5bae1bc [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersonda6dd402007-12-11 18:49:21 -06003 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
Joe Perchesd77d1b52014-03-06 12:10:45 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010012#include <linux/bio.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010013#include <linux/sched/signal.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000014#include <linux/slab.h>
15#include <linux/spinlock.h>
16#include <linux/completion.h>
17#include <linux/buffer_head.h>
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010018#include <linux/statfs.h>
19#include <linux/seq_file.h>
20#include <linux/mount.h>
21#include <linux/kthread.h>
22#include <linux/delay.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include <linux/gfs2_ondisk.h>
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010024#include <linux/crc32.h>
25#include <linux/time.h>
Steven Whitehousee4027462010-01-25 11:20:19 +000026#include <linux/wait.h>
Christoph Hellwiga9185b42010-03-05 09:21:37 +010027#include <linux/writeback.h>
Steven Whitehouse4667a0e2011-04-18 14:18:09 +010028#include <linux/backing-dev.h>
Benjamin Marzinski2e60d762014-11-13 20:42:04 -060029#include <linux/kernel.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000030
31#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050032#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "bmap.h"
34#include "dir.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000035#include "glock.h"
36#include "glops.h"
37#include "inode.h"
38#include "log.h"
39#include "meta_io.h"
40#include "quota.h"
41#include "recovery.h"
42#include "rgrp.h"
43#include "super.h"
44#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050045#include "util.h"
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010046#include "sys.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010047#include "xattr.h"
Abhi Dasf4686c22019-05-02 14:17:40 -050048#include "lops.h"
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010049
50#define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x)
51
52enum {
53 Opt_lockproto,
54 Opt_locktable,
55 Opt_hostdata,
56 Opt_spectator,
57 Opt_ignore_local_fs,
58 Opt_localflocks,
59 Opt_localcaching,
60 Opt_debug,
61 Opt_nodebug,
62 Opt_upgrade,
63 Opt_acl,
64 Opt_noacl,
65 Opt_quota_off,
66 Opt_quota_account,
67 Opt_quota_on,
68 Opt_quota,
69 Opt_noquota,
70 Opt_suiddir,
71 Opt_nosuiddir,
72 Opt_data_writeback,
73 Opt_data_ordered,
74 Opt_meta,
75 Opt_discard,
76 Opt_nodiscard,
77 Opt_commit,
Bob Petersond34843d2009-08-24 10:44:18 +010078 Opt_err_withdraw,
79 Opt_err_panic,
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -050080 Opt_statfs_quantum,
81 Opt_statfs_percent,
82 Opt_quota_quantum,
Christoph Hellwigf25934c2009-10-30 08:03:27 +010083 Opt_barrier,
84 Opt_nobarrier,
Benjamin Marzinski90306c42012-05-29 23:01:09 -050085 Opt_rgrplvb,
86 Opt_norgrplvb,
Benjamin Marzinski471f3db2015-12-01 08:46:55 -060087 Opt_loccookie,
88 Opt_noloccookie,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010089 Opt_error,
90};
91
92static const match_table_t tokens = {
93 {Opt_lockproto, "lockproto=%s"},
94 {Opt_locktable, "locktable=%s"},
95 {Opt_hostdata, "hostdata=%s"},
96 {Opt_spectator, "spectator"},
Steven Whitehouse43f74c12010-09-29 14:24:41 +010097 {Opt_spectator, "norecovery"},
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +010098 {Opt_ignore_local_fs, "ignore_local_fs"},
99 {Opt_localflocks, "localflocks"},
100 {Opt_localcaching, "localcaching"},
101 {Opt_debug, "debug"},
102 {Opt_nodebug, "nodebug"},
103 {Opt_upgrade, "upgrade"},
104 {Opt_acl, "acl"},
105 {Opt_noacl, "noacl"},
106 {Opt_quota_off, "quota=off"},
107 {Opt_quota_account, "quota=account"},
108 {Opt_quota_on, "quota=on"},
109 {Opt_quota, "quota"},
110 {Opt_noquota, "noquota"},
111 {Opt_suiddir, "suiddir"},
112 {Opt_nosuiddir, "nosuiddir"},
113 {Opt_data_writeback, "data=writeback"},
114 {Opt_data_ordered, "data=ordered"},
115 {Opt_meta, "meta"},
116 {Opt_discard, "discard"},
117 {Opt_nodiscard, "nodiscard"},
118 {Opt_commit, "commit=%d"},
Bob Petersond34843d2009-08-24 10:44:18 +0100119 {Opt_err_withdraw, "errors=withdraw"},
120 {Opt_err_panic, "errors=panic"},
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500121 {Opt_statfs_quantum, "statfs_quantum=%d"},
122 {Opt_statfs_percent, "statfs_percent=%d"},
123 {Opt_quota_quantum, "quota_quantum=%d"},
Christoph Hellwigf25934c2009-10-30 08:03:27 +0100124 {Opt_barrier, "barrier"},
125 {Opt_nobarrier, "nobarrier"},
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500126 {Opt_rgrplvb, "rgrplvb"},
127 {Opt_norgrplvb, "norgrplvb"},
Benjamin Marzinski471f3db2015-12-01 08:46:55 -0600128 {Opt_loccookie, "loccookie"},
129 {Opt_noloccookie, "noloccookie"},
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100130 {Opt_error, NULL}
131};
132
133/**
134 * gfs2_mount_args - Parse mount options
Steven Whitehousef55073f2009-09-28 10:30:49 +0100135 * @args: The structure into which the parsed options will be written
136 * @options: The options to parse
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100137 *
138 * Return: errno
139 */
140
Steven Whitehousef55073f2009-09-28 10:30:49 +0100141int gfs2_mount_args(struct gfs2_args *args, char *options)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100142{
143 char *o;
144 int token;
145 substring_t tmp[MAX_OPT_ARGS];
146 int rv;
147
148 /* Split the options into tokens with the "," character and
149 process them */
150
151 while (1) {
152 o = strsep(&options, ",");
153 if (o == NULL)
154 break;
155 if (*o == '\0')
156 continue;
157
158 token = match_token(o, tokens, tmp);
159 switch (token) {
160 case Opt_lockproto:
161 match_strlcpy(args->ar_lockproto, &tmp[0],
162 GFS2_LOCKNAME_LEN);
163 break;
164 case Opt_locktable:
165 match_strlcpy(args->ar_locktable, &tmp[0],
166 GFS2_LOCKNAME_LEN);
167 break;
168 case Opt_hostdata:
169 match_strlcpy(args->ar_hostdata, &tmp[0],
170 GFS2_LOCKNAME_LEN);
171 break;
172 case Opt_spectator:
173 args->ar_spectator = 1;
174 break;
175 case Opt_ignore_local_fs:
Steven Whitehousef57a0242010-09-23 13:41:42 +0100176 /* Retained for backwards compat only */
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100177 break;
178 case Opt_localflocks:
179 args->ar_localflocks = 1;
180 break;
181 case Opt_localcaching:
Steven Whitehousec2048b002010-09-23 14:00:31 +0100182 /* Retained for backwards compat only */
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100183 break;
184 case Opt_debug:
Bob Petersond34843d2009-08-24 10:44:18 +0100185 if (args->ar_errors == GFS2_ERRORS_PANIC) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800186 pr_warn("-o debug and -o errors=panic are mutually exclusive\n");
Bob Petersond34843d2009-08-24 10:44:18 +0100187 return -EINVAL;
188 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100189 args->ar_debug = 1;
190 break;
191 case Opt_nodebug:
192 args->ar_debug = 0;
193 break;
194 case Opt_upgrade:
Steven Whitehousec80dbb52010-09-24 09:55:07 +0100195 /* Retained for backwards compat only */
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100196 break;
197 case Opt_acl:
198 args->ar_posix_acl = 1;
199 break;
200 case Opt_noacl:
201 args->ar_posix_acl = 0;
202 break;
203 case Opt_quota_off:
204 case Opt_noquota:
205 args->ar_quota = GFS2_QUOTA_OFF;
206 break;
207 case Opt_quota_account:
208 args->ar_quota = GFS2_QUOTA_ACCOUNT;
209 break;
210 case Opt_quota_on:
211 case Opt_quota:
212 args->ar_quota = GFS2_QUOTA_ON;
213 break;
214 case Opt_suiddir:
215 args->ar_suiddir = 1;
216 break;
217 case Opt_nosuiddir:
218 args->ar_suiddir = 0;
219 break;
220 case Opt_data_writeback:
221 args->ar_data = GFS2_DATA_WRITEBACK;
222 break;
223 case Opt_data_ordered:
224 args->ar_data = GFS2_DATA_ORDERED;
225 break;
226 case Opt_meta:
227 args->ar_meta = 1;
228 break;
229 case Opt_discard:
230 args->ar_discard = 1;
231 break;
232 case Opt_nodiscard:
233 args->ar_discard = 0;
234 break;
235 case Opt_commit:
236 rv = match_int(&tmp[0], &args->ar_commit);
237 if (rv || args->ar_commit <= 0) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800238 pr_warn("commit mount option requires a positive numeric argument\n");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100239 return rv ? rv : -EINVAL;
240 }
241 break;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500242 case Opt_statfs_quantum:
243 rv = match_int(&tmp[0], &args->ar_statfs_quantum);
244 if (rv || args->ar_statfs_quantum < 0) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800245 pr_warn("statfs_quantum mount option requires a non-negative numeric argument\n");
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500246 return rv ? rv : -EINVAL;
247 }
248 break;
249 case Opt_quota_quantum:
250 rv = match_int(&tmp[0], &args->ar_quota_quantum);
251 if (rv || args->ar_quota_quantum <= 0) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800252 pr_warn("quota_quantum mount option requires a positive numeric argument\n");
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500253 return rv ? rv : -EINVAL;
254 }
255 break;
256 case Opt_statfs_percent:
257 rv = match_int(&tmp[0], &args->ar_statfs_percent);
258 if (rv || args->ar_statfs_percent < 0 ||
259 args->ar_statfs_percent > 100) {
Fabian Frederickfc554ed2014-03-05 22:06:42 +0800260 pr_warn("statfs_percent mount option requires a numeric argument between 0 and 100\n");
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500261 return rv ? rv : -EINVAL;
262 }
263 break;
Bob Petersond34843d2009-08-24 10:44:18 +0100264 case Opt_err_withdraw:
265 args->ar_errors = GFS2_ERRORS_WITHDRAW;
266 break;
267 case Opt_err_panic:
268 if (args->ar_debug) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800269 pr_warn("-o debug and -o errors=panic are mutually exclusive\n");
Bob Petersond34843d2009-08-24 10:44:18 +0100270 return -EINVAL;
271 }
272 args->ar_errors = GFS2_ERRORS_PANIC;
273 break;
Christoph Hellwigf25934c2009-10-30 08:03:27 +0100274 case Opt_barrier:
275 args->ar_nobarrier = 0;
276 break;
277 case Opt_nobarrier:
278 args->ar_nobarrier = 1;
279 break;
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500280 case Opt_rgrplvb:
281 args->ar_rgrplvb = 1;
282 break;
283 case Opt_norgrplvb:
284 args->ar_rgrplvb = 0;
285 break;
Benjamin Marzinski471f3db2015-12-01 08:46:55 -0600286 case Opt_loccookie:
287 args->ar_loccookie = 1;
288 break;
289 case Opt_noloccookie:
290 args->ar_loccookie = 0;
291 break;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100292 case Opt_error:
293 default:
Joe Perchesd77d1b52014-03-06 12:10:45 -0800294 pr_warn("invalid mount option: %s\n", o);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100295 return -EINVAL;
296 }
297 }
298
299 return 0;
300}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301
Steven Whitehousefefc03b2008-12-19 15:32:06 +0000302/**
303 * gfs2_jindex_free - Clear all the journal index information
304 * @sdp: The GFS2 superblock
305 *
306 */
307
308void gfs2_jindex_free(struct gfs2_sbd *sdp)
309{
Steven Whitehouseb50f2272014-03-03 13:35:57 +0000310 struct list_head list;
Steven Whitehousefefc03b2008-12-19 15:32:06 +0000311 struct gfs2_jdesc *jd;
Steven Whitehousefefc03b2008-12-19 15:32:06 +0000312
313 spin_lock(&sdp->sd_jindex_spin);
314 list_add(&list, &sdp->sd_jindex_list);
315 list_del_init(&sdp->sd_jindex_list);
316 sdp->sd_journals = 0;
317 spin_unlock(&sdp->sd_jindex_spin);
318
319 while (!list_empty(&list)) {
320 jd = list_entry(list.next, struct gfs2_jdesc, jd_list);
Steven Whitehouseb50f2272014-03-03 13:35:57 +0000321 gfs2_free_journal_extents(jd);
Steven Whitehousefefc03b2008-12-19 15:32:06 +0000322 list_del(&jd->jd_list);
323 iput(jd->jd_inode);
324 kfree(jd);
325 }
326}
327
David Teiglandb3b94fa2006-01-16 16:50:04 +0000328static struct gfs2_jdesc *jdesc_find_i(struct list_head *head, unsigned int jid)
329{
330 struct gfs2_jdesc *jd;
331 int found = 0;
332
333 list_for_each_entry(jd, head, jd_list) {
334 if (jd->jd_jid == jid) {
335 found = 1;
336 break;
337 }
338 }
339
340 if (!found)
341 jd = NULL;
342
343 return jd;
344}
345
346struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid)
347{
348 struct gfs2_jdesc *jd;
349
350 spin_lock(&sdp->sd_jindex_spin);
351 jd = jdesc_find_i(&sdp->sd_jindex_list, jid);
352 spin_unlock(&sdp->sd_jindex_spin);
353
354 return jd;
355}
356
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357int gfs2_jdesc_check(struct gfs2_jdesc *jd)
358{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400359 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
360 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100361 u64 size = i_size_read(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362
Fabian Frederick47a9a522016-08-02 12:05:27 -0500363 if (gfs2_check_internal_file_size(jd->jd_inode, 8 << 20, BIT(30)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000364 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100366 jd->jd_blocks = size >> sdp->sd_sb.sb_bsize_shift;
367
368 if (gfs2_write_alloc_required(ip, 0, size)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369 gfs2_consist_inode(ip);
Bob Peterson461cb412010-06-24 19:21:20 -0400370 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371 }
372
Bob Peterson461cb412010-06-24 19:21:20 -0400373 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000374}
375
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000376static int init_threads(struct gfs2_sbd *sdp)
377{
378 struct task_struct *p;
379 int error = 0;
380
381 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
382 if (IS_ERR(p)) {
383 error = PTR_ERR(p);
384 fs_err(sdp, "can't start logd thread: %d\n", error);
385 return error;
386 }
387 sdp->sd_logd_process = p;
388
389 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
390 if (IS_ERR(p)) {
391 error = PTR_ERR(p);
392 fs_err(sdp, "can't start quotad thread: %d\n", error);
393 goto fail;
394 }
395 sdp->sd_quotad_process = p;
396 return 0;
397
398fail:
399 kthread_stop(sdp->sd_logd_process);
400 return error;
401}
402
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403/**
404 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
405 * @sdp: the filesystem
406 *
407 * Returns: errno
408 */
409
410int gfs2_make_fs_rw(struct gfs2_sbd *sdp)
411{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400412 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500413 struct gfs2_glock *j_gl = ip->i_gl;
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600414 struct gfs2_holder freeze_gh;
Al Viro55167622006-10-13 21:47:13 -0400415 struct gfs2_log_header_host head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000416 int error;
417
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000418 error = init_threads(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419 if (error)
420 return error;
421
Benjamin Marzinski24972552014-05-01 22:26:55 -0500422 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, 0,
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600423 &freeze_gh);
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000424 if (error)
425 goto fail_threads;
426
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500427 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428
Abhi Dasf4686c22019-05-02 14:17:40 -0500429 error = gfs2_find_jhead(sdp->sd_jdesc, &head, false);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430 if (error)
431 goto fail;
432
433 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
434 gfs2_consist(sdp);
435 error = -EIO;
436 goto fail;
437 }
438
439 /* Initialize some head of the log stuff */
440 sdp->sd_log_sequence = head.lh_sequence + 1;
441 gfs2_log_pointers_init(sdp, head.lh_blkno);
442
David Teiglandb3b94fa2006-01-16 16:50:04 +0000443 error = gfs2_quota_init(sdp);
444 if (error)
Steven Whitehousea91ea692006-09-04 12:04:26 -0400445 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000446
447 set_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags);
448
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600449 gfs2_glock_dq_uninit(&freeze_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450
451 return 0;
452
Steven Whitehousea91ea692006-09-04 12:04:26 -0400453fail:
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600454 freeze_gh.gh_flags |= GL_NOCACHE;
455 gfs2_glock_dq_uninit(&freeze_gh);
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000456fail_threads:
457 kthread_stop(sdp->sd_quotad_process);
458 kthread_stop(sdp->sd_logd_process);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459 return error;
460}
461
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500462void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100463{
464 const struct gfs2_statfs_change *str = buf;
465
466 sc->sc_total = be64_to_cpu(str->sc_total);
467 sc->sc_free = be64_to_cpu(str->sc_free);
468 sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
469}
470
471static void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf)
472{
473 struct gfs2_statfs_change *str = buf;
474
475 str->sc_total = cpu_to_be64(sc->sc_total);
476 str->sc_free = cpu_to_be64(sc->sc_free);
477 str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
478}
479
David Teiglandb3b94fa2006-01-16 16:50:04 +0000480int gfs2_statfs_init(struct gfs2_sbd *sdp)
481{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400482 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400483 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400484 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400485 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 struct buffer_head *m_bh, *l_bh;
487 struct gfs2_holder gh;
488 int error;
489
490 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
491 &gh);
492 if (error)
493 return error;
494
495 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
496 if (error)
497 goto out;
498
499 if (sdp->sd_args.ar_spectator) {
500 spin_lock(&sdp->sd_statfs_spin);
501 gfs2_statfs_change_in(m_sc, m_bh->b_data +
502 sizeof(struct gfs2_dinode));
503 spin_unlock(&sdp->sd_statfs_spin);
504 } else {
505 error = gfs2_meta_inode_buffer(l_ip, &l_bh);
506 if (error)
507 goto out_m_bh;
508
509 spin_lock(&sdp->sd_statfs_spin);
510 gfs2_statfs_change_in(m_sc, m_bh->b_data +
511 sizeof(struct gfs2_dinode));
512 gfs2_statfs_change_in(l_sc, l_bh->b_data +
513 sizeof(struct gfs2_dinode));
514 spin_unlock(&sdp->sd_statfs_spin);
515
516 brelse(l_bh);
517 }
518
Steven Whitehousea91ea692006-09-04 12:04:26 -0400519out_m_bh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000520 brelse(m_bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400521out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000522 gfs2_glock_dq_uninit(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523 return 0;
524}
525
Steven Whitehousecd915492006-09-04 12:49:07 -0400526void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free,
527 s64 dinodes)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400529 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400530 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500531 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000532 struct buffer_head *l_bh;
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500533 s64 x, y;
534 int need_sync = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535 int error;
536
537 error = gfs2_meta_inode_buffer(l_ip, &l_bh);
538 if (error)
539 return;
540
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000541 gfs2_trans_add_meta(l_ip->i_gl, l_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000542
543 spin_lock(&sdp->sd_statfs_spin);
544 l_sc->sc_total += total;
545 l_sc->sc_free += free;
546 l_sc->sc_dinodes += dinodes;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400547 gfs2_statfs_change_out(l_sc, l_bh->b_data + sizeof(struct gfs2_dinode));
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500548 if (sdp->sd_args.ar_statfs_percent) {
549 x = 100 * l_sc->sc_free;
550 y = m_sc->sc_free * sdp->sd_args.ar_statfs_percent;
551 if (x >= y || x <= -y)
552 need_sync = 1;
553 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 spin_unlock(&sdp->sd_statfs_spin);
555
556 brelse(l_bh);
Benjamin Marzinskic14f5732009-10-26 13:29:47 -0500557 if (need_sync)
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500558 gfs2_wake_up_statfs(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559}
560
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500561void update_statfs(struct gfs2_sbd *sdp, struct buffer_head *m_bh,
562 struct buffer_head *l_bh)
563{
564 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
565 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
566 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
567 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
568
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000569 gfs2_trans_add_meta(l_ip->i_gl, l_bh);
Bob Peterson901c6c62015-03-11 09:52:31 -0500570 gfs2_trans_add_meta(m_ip->i_gl, m_bh);
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500571
572 spin_lock(&sdp->sd_statfs_spin);
573 m_sc->sc_total += l_sc->sc_total;
574 m_sc->sc_free += l_sc->sc_free;
575 m_sc->sc_dinodes += l_sc->sc_dinodes;
576 memset(l_sc, 0, sizeof(struct gfs2_statfs_change));
577 memset(l_bh->b_data + sizeof(struct gfs2_dinode),
578 0, sizeof(struct gfs2_statfs_change));
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500579 gfs2_statfs_change_out(m_sc, m_bh->b_data + sizeof(struct gfs2_dinode));
Bob Peterson901c6c62015-03-11 09:52:31 -0500580 spin_unlock(&sdp->sd_statfs_spin);
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500581}
582
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100583int gfs2_statfs_sync(struct super_block *sb, int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000584{
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100585 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400586 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
587 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode);
Al Virobd209cc2006-10-13 23:43:19 -0400588 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
589 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000590 struct gfs2_holder gh;
591 struct buffer_head *m_bh, *l_bh;
592 int error;
593
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600594 sb_start_write(sb);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE,
596 &gh);
597 if (error)
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600598 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599
600 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
601 if (error)
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600602 goto out_unlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603
604 spin_lock(&sdp->sd_statfs_spin);
605 gfs2_statfs_change_in(m_sc, m_bh->b_data +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400606 sizeof(struct gfs2_dinode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607 if (!l_sc->sc_total && !l_sc->sc_free && !l_sc->sc_dinodes) {
608 spin_unlock(&sdp->sd_statfs_spin);
609 goto out_bh;
610 }
611 spin_unlock(&sdp->sd_statfs_spin);
612
613 error = gfs2_meta_inode_buffer(l_ip, &l_bh);
614 if (error)
615 goto out_bh;
616
617 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
618 if (error)
619 goto out_bh2;
620
Benjamin Marzinski1946f702009-06-25 15:09:51 -0500621 update_statfs(sdp, m_bh, l_bh);
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -0500622 sdp->sd_statfs_force_sync = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000623
624 gfs2_trans_end(sdp);
625
Steven Whitehousea91ea692006-09-04 12:04:26 -0400626out_bh2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627 brelse(l_bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400628out_bh:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 brelse(m_bh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600630out_unlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000631 gfs2_glock_dq_uninit(&gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600632out:
633 sb_end_write(sb);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000634 return error;
635}
636
David Teiglandb3b94fa2006-01-16 16:50:04 +0000637struct lfcc {
638 struct list_head list;
639 struct gfs2_holder gh;
640};
641
642/**
643 * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all
644 * journals are clean
645 * @sdp: the file system
646 * @state: the state to put the transaction lock into
647 * @t_gh: the hold on the transaction lock
648 *
649 * Returns: errno
650 */
651
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400652static int gfs2_lock_fs_check_clean(struct gfs2_sbd *sdp,
Benjamin Marzinski24972552014-05-01 22:26:55 -0500653 struct gfs2_holder *freeze_gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500655 struct gfs2_inode *ip;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 struct gfs2_jdesc *jd;
657 struct lfcc *lfcc;
658 LIST_HEAD(list);
Al Viro55167622006-10-13 21:47:13 -0400659 struct gfs2_log_header_host lh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660 int error;
661
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
663 lfcc = kmalloc(sizeof(struct lfcc), GFP_KERNEL);
664 if (!lfcc) {
665 error = -ENOMEM;
666 goto out;
667 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400668 ip = GFS2_I(jd->jd_inode);
669 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &lfcc->gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670 if (error) {
671 kfree(lfcc);
672 goto out;
673 }
674 list_add(&lfcc->list, &list);
675 }
676
Benjamin Marzinski24972552014-05-01 22:26:55 -0500677 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_EXCLUSIVE,
678 GL_NOCACHE, freeze_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000679
680 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
681 error = gfs2_jdesc_check(jd);
682 if (error)
683 break;
Abhi Dasf4686c22019-05-02 14:17:40 -0500684 error = gfs2_find_jhead(jd, &lh, false);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000685 if (error)
686 break;
687 if (!(lh.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) {
688 error = -EBUSY;
689 break;
690 }
691 }
692
693 if (error)
Benjamin Marzinski24972552014-05-01 22:26:55 -0500694 gfs2_glock_dq_uninit(freeze_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695
Steven Whitehousea91ea692006-09-04 12:04:26 -0400696out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000697 while (!list_empty(&list)) {
698 lfcc = list_entry(list.next, struct lfcc, list);
699 list_del(&lfcc->list);
700 gfs2_glock_dq_uninit(&lfcc->gh);
701 kfree(lfcc);
702 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000703 return error;
704}
705
Steven Whitehouse9eed04c2011-05-09 14:11:40 +0100706void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
707{
708 struct gfs2_dinode *str = buf;
709
710 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
711 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
712 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
713 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
714 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
715 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
Eric W. Biedermand0546422013-01-31 22:08:10 -0800716 str->di_uid = cpu_to_be32(i_uid_read(&ip->i_inode));
717 str->di_gid = cpu_to_be32(i_gid_read(&ip->i_inode));
Steven Whitehouse9eed04c2011-05-09 14:11:40 +0100718 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
719 str->di_size = cpu_to_be64(i_size_read(&ip->i_inode));
720 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
721 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
722 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
723 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
724
725 str->di_goal_meta = cpu_to_be64(ip->i_goal);
726 str->di_goal_data = cpu_to_be64(ip->i_goal);
727 str->di_generation = cpu_to_be64(ip->i_generation);
728
729 str->di_flags = cpu_to_be32(ip->i_diskflags);
730 str->di_height = cpu_to_be16(ip->i_height);
731 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
732 !(ip->i_diskflags & GFS2_DIF_EXHASH) ?
733 GFS2_FORMAT_DE : 0);
734 str->di_depth = cpu_to_be16(ip->i_depth);
735 str->di_entries = cpu_to_be32(ip->i_entries);
736
737 str->di_eattr = cpu_to_be64(ip->i_eattr);
738 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
739 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
740 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
741}
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100742
743/**
744 * gfs2_write_inode - Make sure the inode is stable on the disk
745 * @inode: The inode
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100746 * @wbc: The writeback control structure
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100747 *
748 * Returns: errno
749 */
750
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100751static int gfs2_write_inode(struct inode *inode, struct writeback_control *wbc)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100752{
753 struct gfs2_inode *ip = GFS2_I(inode);
754 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100755 struct address_space *metamapping = gfs2_glock2aspace(ip->i_gl);
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100756 struct backing_dev_info *bdi = inode_to_bdi(metamapping->host);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100757 int ret = 0;
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200758 bool flush_all = (wbc->sync_mode == WB_SYNC_ALL || gfs2_is_jdata(ip));
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100759
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200760 if (flush_all)
Bob Petersonc1696fb2018-01-17 00:01:33 +0100761 gfs2_log_flush(GFS2_SB(inode), ip->i_gl,
Bob Peterson805c09072018-01-08 10:34:17 -0500762 GFS2_LOG_HEAD_FLUSH_NORMAL |
763 GFS2_LFC_WRITE_INODE);
Tejun Heoa88a3412015-05-22 17:13:28 -0400764 if (bdi->wb.dirty_exceeded)
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100765 gfs2_ail1_flush(sdp, wbc);
Steven Whitehouse1d4ec642011-08-02 13:13:20 +0100766 else
767 filemap_fdatawrite(metamapping);
Bob Petersonadbc3dd2017-10-11 16:22:07 +0200768 if (flush_all)
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100769 ret = filemap_fdatawait(metamapping);
770 if (ret)
771 mark_inode_dirty_sync(inode);
Abhi Das957a7ac2018-01-30 10:00:09 -0700772 else {
773 spin_lock(&inode->i_lock);
774 if (!(inode->i_flags & I_DIRTY))
775 gfs2_ordered_del_inode(ip);
776 spin_unlock(&inode->i_lock);
777 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100778 return ret;
779}
780
781/**
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100782 * gfs2_dirty_inode - check for atime updates
783 * @inode: The inode in question
784 * @flags: The type of dirty
785 *
786 * Unfortunately it can be called under any combination of inode
787 * glock and transaction lock, so we have to check carefully.
788 *
789 * At the moment this deals only with atime - it should be possible
790 * to expand that role in future, once a review of the locking has
791 * been carried out.
792 */
793
794static void gfs2_dirty_inode(struct inode *inode, int flags)
795{
796 struct gfs2_inode *ip = GFS2_I(inode);
797 struct gfs2_sbd *sdp = GFS2_SB(inode);
798 struct buffer_head *bh;
799 struct gfs2_holder gh;
800 int need_unlock = 0;
801 int need_endtrans = 0;
802 int ret;
803
Christoph Hellwig0e11f642018-02-21 07:54:49 -0800804 if (!(flags & I_DIRTY_INODE))
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100805 return;
Bob Peterson0d1c7ae2017-03-03 12:37:14 -0500806 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
807 return;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100808 if (!gfs2_glock_is_locked_by_me(ip->i_gl)) {
809 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
810 if (ret) {
811 fs_err(sdp, "dirty_inode: glock %d\n", ret);
812 return;
813 }
814 need_unlock = 1;
Benjamin Marzinski3d162682012-11-06 00:49:28 -0600815 } else if (WARN_ON_ONCE(ip->i_gl->gl_state != LM_ST_EXCLUSIVE))
816 return;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100817
818 if (current->journal_info == NULL) {
819 ret = gfs2_trans_begin(sdp, RES_DINODE, 0);
820 if (ret) {
821 fs_err(sdp, "dirty_inode: gfs2_trans_begin %d\n", ret);
822 goto out;
823 }
824 need_endtrans = 1;
825 }
826
827 ret = gfs2_meta_inode_buffer(ip, &bh);
828 if (ret == 0) {
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000829 gfs2_trans_add_meta(ip->i_gl, bh);
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100830 gfs2_dinode_out(ip, bh->b_data);
831 brelse(bh);
832 }
833
834 if (need_endtrans)
835 gfs2_trans_end(sdp);
836out:
837 if (need_unlock)
838 gfs2_glock_dq_uninit(&gh);
839}
840
841/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100842 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
843 * @sdp: the filesystem
844 *
845 * Returns: errno
846 */
847
848static int gfs2_make_fs_ro(struct gfs2_sbd *sdp)
849{
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600850 struct gfs2_holder freeze_gh;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100851 int error;
852
Benjamin Marzinski24972552014-05-01 22:26:55 -0500853 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, GL_NOCACHE,
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600854 &freeze_gh);
Benjamin Marzinski24972552014-05-01 22:26:55 -0500855 if (error && !test_bit(SDF_SHUTDOWN, &sdp->sd_flags))
856 return error;
857
Tim Smith1eb8d732018-10-08 12:15:40 -0500858 flush_workqueue(gfs2_delete_workqueue);
Steven Whitehouse8ad151c2013-12-12 11:34:09 +0000859 kthread_stop(sdp->sd_quotad_process);
860 kthread_stop(sdp->sd_logd_process);
861
Jan Karaceed1722012-07-03 16:45:28 +0200862 gfs2_quota_sync(sdp->sd_vfs, 0);
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100863 gfs2_statfs_sync(sdp->sd_vfs, 0);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100864
Bob Peterson805c09072018-01-08 10:34:17 -0500865 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_SHUTDOWN |
866 GFS2_LFC_MAKE_FS_RO);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600867 wait_event(sdp->sd_reserving_log_wait, atomic_read(&sdp->sd_reserving_log) == 0);
Benjamin Marzinski24972552014-05-01 22:26:55 -0500868 gfs2_assert_warn(sdp, atomic_read(&sdp->sd_log_blks_free) == sdp->sd_jdesc->jd_blocks);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100869
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500870 if (gfs2_holder_initialized(&freeze_gh))
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600871 gfs2_glock_dq_uninit(&freeze_gh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100872
873 gfs2_quota_cleanup(sdp);
874
875 return error;
876}
877
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100878/**
879 * gfs2_put_super - Unmount the filesystem
880 * @sb: The VFS superblock
881 *
882 */
883
884static void gfs2_put_super(struct super_block *sb)
885{
886 struct gfs2_sbd *sdp = sb->s_fs_info;
887 int error;
888 struct gfs2_jdesc *jd;
889
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100890 /* No more recovery requests */
891 set_bit(SDF_NORECOVERY, &sdp->sd_flags);
892 smp_mb();
893
894 /* Wait on outstanding recovery */
895restart:
896 spin_lock(&sdp->sd_jindex_spin);
897 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
898 if (!test_bit(JDF_RECOVERY, &jd->jd_flags))
899 continue;
900 spin_unlock(&sdp->sd_jindex_spin);
901 wait_on_bit(&jd->jd_flags, JDF_RECOVERY,
NeilBrown74316202014-07-07 15:16:04 +1000902 TASK_UNINTERRUPTIBLE);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100903 goto restart;
904 }
905 spin_unlock(&sdp->sd_jindex_spin);
906
David Howellsbc98a422017-07-17 08:45:34 +0100907 if (!sb_rdonly(sb)) {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100908 error = gfs2_make_fs_ro(sdp);
909 if (error)
910 gfs2_io_error(sdp);
911 }
912 /* At this point, we're through modifying the disk */
913
914 /* Release stuff */
915
916 iput(sdp->sd_jindex);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100917 iput(sdp->sd_statfs_inode);
918 iput(sdp->sd_rindex);
919 iput(sdp->sd_quota_inode);
920
921 gfs2_glock_put(sdp->sd_rename_gl);
Benjamin Marzinski24972552014-05-01 22:26:55 -0500922 gfs2_glock_put(sdp->sd_freeze_gl);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100923
924 if (!sdp->sd_args.ar_spectator) {
925 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
926 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100927 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
928 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100929 iput(sdp->sd_sc_inode);
930 iput(sdp->sd_qc_inode);
931 }
932
933 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
934 gfs2_clear_rgrpd(sdp);
935 gfs2_jindex_free(sdp);
936 /* Take apart glock structures and buffer lists */
937 gfs2_gl_hash_clear(sdp);
Bob Petersonb2fb7da2017-07-28 07:22:55 -0500938 gfs2_delete_debugfs_file(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100939 /* Unmount the locking protocol */
940 gfs2_lm_unmount(sdp);
941
942 /* At this point, we're through participating in the lockspace */
943 gfs2_sys_fs_del(sdp);
944}
945
946/**
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100947 * gfs2_sync_fs - sync the filesystem
948 * @sb: the superblock
949 *
950 * Flushes the log to disk.
951 */
952
953static int gfs2_sync_fs(struct super_block *sb, int wait)
954{
Steven Whitehouse1027efa2011-03-30 16:13:25 +0100955 struct gfs2_sbd *sdp = sb->s_fs_info;
Jan Karaa1177822012-07-03 16:45:29 +0200956
957 gfs2_quota_sync(sb, -1);
Bob Peterson942b0cd2017-08-16 11:30:06 -0500958 if (wait)
Bob Peterson805c09072018-01-08 10:34:17 -0500959 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
960 GFS2_LFC_SYNC_FS);
Bob Peterson942b0cd2017-08-16 11:30:06 -0500961 return sdp->sd_log_error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100962}
963
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600964void gfs2_freeze_func(struct work_struct *work)
965{
966 int error;
967 struct gfs2_holder freeze_gh;
968 struct gfs2_sbd *sdp = container_of(work, struct gfs2_sbd, sd_freeze_work);
969 struct super_block *sb = sdp->sd_vfs;
970
971 atomic_inc(&sb->s_active);
972 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, 0,
973 &freeze_gh);
974 if (error) {
Bob Peterson8e315822018-10-19 11:31:06 -0500975 printk(KERN_INFO "GFS2: couldn't get freeze lock : %d\n", error);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600976 gfs2_assert_withdraw(sdp, 0);
Abhi Das8f9182192019-04-30 16:53:47 -0500977 } else {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600978 atomic_set(&sdp->sd_freeze_state, SFS_UNFROZEN);
979 error = thaw_super(sb);
980 if (error) {
981 printk(KERN_INFO "GFS2: couldn't thaw filesystem: %d\n",
982 error);
983 gfs2_assert_withdraw(sdp, 0);
984 }
985 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags))
986 freeze_gh.gh_flags |= GL_NOCACHE;
987 gfs2_glock_dq_uninit(&freeze_gh);
988 }
989 deactivate_super(sb);
Abhi Das8f9182192019-04-30 16:53:47 -0500990 clear_bit_unlock(SDF_FS_FROZEN, &sdp->sd_flags);
991 wake_up_bit(&sdp->sd_flags, SDF_FS_FROZEN);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -0600992 return;
993}
994
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +0100995/**
996 * gfs2_freeze - prevent further writes to the filesystem
997 * @sb: the VFS structure for the filesystem
998 *
999 */
1000
1001static int gfs2_freeze(struct super_block *sb)
1002{
1003 struct gfs2_sbd *sdp = sb->s_fs_info;
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001004 int error = 0;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001005
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001006 mutex_lock(&sdp->sd_freeze_mutex);
1007 if (atomic_read(&sdp->sd_freeze_state) != SFS_UNFROZEN)
1008 goto out;
1009
1010 if (test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) {
1011 error = -EINVAL;
1012 goto out;
1013 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001014
1015 for (;;) {
Steven Whitehoused564053f2013-01-11 10:49:34 +00001016 error = gfs2_lock_fs_check_clean(sdp, &sdp->sd_freeze_gh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001017 if (!error)
1018 break;
1019
1020 switch (error) {
1021 case -EBUSY:
1022 fs_err(sdp, "waiting for recovery before freeze\n");
1023 break;
1024
1025 default:
1026 fs_err(sdp, "error freezing FS: %d\n", error);
1027 break;
1028 }
1029
1030 fs_err(sdp, "retrying...\n");
1031 msleep(1000);
1032 }
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001033 error = 0;
Abhi Das8f9182192019-04-30 16:53:47 -05001034 set_bit(SDF_FS_FROZEN, &sdp->sd_flags);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001035out:
1036 mutex_unlock(&sdp->sd_freeze_mutex);
1037 return error;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001038}
1039
1040/**
1041 * gfs2_unfreeze - reallow writes to the filesystem
1042 * @sb: the VFS structure for the filesystem
1043 *
1044 */
1045
1046static int gfs2_unfreeze(struct super_block *sb)
1047{
Steven Whitehoused564053f2013-01-11 10:49:34 +00001048 struct gfs2_sbd *sdp = sb->s_fs_info;
1049
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001050 mutex_lock(&sdp->sd_freeze_mutex);
1051 if (atomic_read(&sdp->sd_freeze_state) != SFS_FROZEN ||
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001052 !gfs2_holder_initialized(&sdp->sd_freeze_gh)) {
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001053 mutex_unlock(&sdp->sd_freeze_mutex);
1054 return 0;
1055 }
1056
Steven Whitehoused564053f2013-01-11 10:49:34 +00001057 gfs2_glock_dq_uninit(&sdp->sd_freeze_gh);
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001058 mutex_unlock(&sdp->sd_freeze_mutex);
Abhi Das8f9182192019-04-30 16:53:47 -05001059 return wait_on_bit(&sdp->sd_flags, SDF_FS_FROZEN, TASK_INTERRUPTIBLE);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001060}
1061
1062/**
1063 * statfs_fill - fill in the sg for a given RG
1064 * @rgd: the RG
1065 * @sc: the sc structure
1066 *
1067 * Returns: 0 on success, -ESTALE if the LVB is invalid
1068 */
1069
1070static int statfs_slow_fill(struct gfs2_rgrpd *rgd,
1071 struct gfs2_statfs_change_host *sc)
1072{
1073 gfs2_rgrp_verify(rgd);
1074 sc->sc_total += rgd->rd_data;
1075 sc->sc_free += rgd->rd_free;
1076 sc->sc_dinodes += rgd->rd_dinodes;
1077 return 0;
1078}
1079
1080/**
1081 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
1082 * @sdp: the filesystem
1083 * @sc: the sc info that will be returned
1084 *
1085 * Any error (other than a signal) will cause this routine to fall back
1086 * to the synchronous version.
1087 *
1088 * FIXME: This really shouldn't busy wait like this.
1089 *
1090 * Returns: errno
1091 */
1092
1093static int gfs2_statfs_slow(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
1094{
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001095 struct gfs2_rgrpd *rgd_next;
1096 struct gfs2_holder *gha, *gh;
1097 unsigned int slots = 64;
1098 unsigned int x;
1099 int done;
1100 int error = 0, err;
1101
1102 memset(sc, 0, sizeof(struct gfs2_statfs_change_host));
Kees Cook6da2ec52018-06-12 13:55:00 -07001103 gha = kmalloc_array(slots, sizeof(struct gfs2_holder), GFP_KERNEL);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001104 if (!gha)
1105 return -ENOMEM;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001106 for (x = 0; x < slots; x++)
1107 gfs2_holder_mark_uninitialized(gha + x);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001108
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001109 rgd_next = gfs2_rgrpd_get_first(sdp);
1110
1111 for (;;) {
1112 done = 1;
1113
1114 for (x = 0; x < slots; x++) {
1115 gh = gha + x;
1116
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001117 if (gfs2_holder_initialized(gh) && gfs2_glock_poll(gh)) {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001118 err = gfs2_glock_wait(gh);
1119 if (err) {
1120 gfs2_holder_uninit(gh);
1121 error = err;
1122 } else {
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -05001123 if (!error) {
1124 struct gfs2_rgrpd *rgd =
1125 gfs2_glock2rgrp(gh->gh_gl);
1126
1127 error = statfs_slow_fill(rgd, sc);
1128 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001129 gfs2_glock_dq_uninit(gh);
1130 }
1131 }
1132
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001133 if (gfs2_holder_initialized(gh))
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001134 done = 0;
1135 else if (rgd_next && !error) {
1136 error = gfs2_glock_nq_init(rgd_next->rd_gl,
1137 LM_ST_SHARED,
1138 GL_ASYNC,
1139 gh);
1140 rgd_next = gfs2_rgrpd_get_next(rgd_next);
1141 done = 0;
1142 }
1143
1144 if (signal_pending(current))
1145 error = -ERESTARTSYS;
1146 }
1147
1148 if (done)
1149 break;
1150
1151 yield();
1152 }
1153
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001154 kfree(gha);
1155 return error;
1156}
1157
1158/**
1159 * gfs2_statfs_i - Do a statfs
1160 * @sdp: the filesystem
1161 * @sg: the sg structure
1162 *
1163 * Returns: errno
1164 */
1165
1166static int gfs2_statfs_i(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc)
1167{
1168 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master;
1169 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local;
1170
1171 spin_lock(&sdp->sd_statfs_spin);
1172
1173 *sc = *m_sc;
1174 sc->sc_total += l_sc->sc_total;
1175 sc->sc_free += l_sc->sc_free;
1176 sc->sc_dinodes += l_sc->sc_dinodes;
1177
1178 spin_unlock(&sdp->sd_statfs_spin);
1179
1180 if (sc->sc_free < 0)
1181 sc->sc_free = 0;
1182 if (sc->sc_free > sc->sc_total)
1183 sc->sc_free = sc->sc_total;
1184 if (sc->sc_dinodes < 0)
1185 sc->sc_dinodes = 0;
1186
1187 return 0;
1188}
1189
1190/**
1191 * gfs2_statfs - Gather and return stats about the filesystem
1192 * @sb: The superblock
1193 * @statfsbuf: The buffer
1194 *
1195 * Returns: 0 on success or error code
1196 */
1197
1198static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
1199{
Al Virofc640052016-04-10 01:33:30 -04001200 struct super_block *sb = dentry->d_sb;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001201 struct gfs2_sbd *sdp = sb->s_fs_info;
1202 struct gfs2_statfs_change_host sc;
1203 int error;
1204
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001205 error = gfs2_rindex_update(sdp);
1206 if (error)
1207 return error;
1208
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001209 if (gfs2_tune_get(sdp, gt_statfs_slow))
1210 error = gfs2_statfs_slow(sdp, &sc);
1211 else
1212 error = gfs2_statfs_i(sdp, &sc);
1213
1214 if (error)
1215 return error;
1216
1217 buf->f_type = GFS2_MAGIC;
1218 buf->f_bsize = sdp->sd_sb.sb_bsize;
1219 buf->f_blocks = sc.sc_total;
1220 buf->f_bfree = sc.sc_free;
1221 buf->f_bavail = sc.sc_free;
1222 buf->f_files = sc.sc_dinodes + sc.sc_free;
1223 buf->f_ffree = sc.sc_free;
1224 buf->f_namelen = GFS2_FNAMESIZE;
1225
1226 return 0;
1227}
1228
1229/**
1230 * gfs2_remount_fs - called when the FS is remounted
1231 * @sb: the filesystem
1232 * @flags: the remount flags
1233 * @data: extra data passed in (not used right now)
1234 *
1235 * Returns: errno
1236 */
1237
1238static int gfs2_remount_fs(struct super_block *sb, int *flags, char *data)
1239{
1240 struct gfs2_sbd *sdp = sb->s_fs_info;
1241 struct gfs2_args args = sdp->sd_args; /* Default to current settings */
1242 struct gfs2_tune *gt = &sdp->sd_tune;
1243 int error;
1244
Theodore Ts'o02b99842014-03-13 10:14:33 -04001245 sync_filesystem(sb);
1246
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001247 spin_lock(&gt->gt_spin);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -05001248 args.ar_commit = gt->gt_logd_secs;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001249 args.ar_quota_quantum = gt->gt_quota_quantum;
1250 if (gt->gt_statfs_slow)
1251 args.ar_statfs_quantum = 0;
1252 else
1253 args.ar_statfs_quantum = gt->gt_statfs_quantum;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001254 spin_unlock(&gt->gt_spin);
Steven Whitehousef55073f2009-09-28 10:30:49 +01001255 error = gfs2_mount_args(&args, data);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001256 if (error)
1257 return error;
1258
1259 /* Not allowed to change locking details */
1260 if (strcmp(args.ar_lockproto, sdp->sd_args.ar_lockproto) ||
1261 strcmp(args.ar_locktable, sdp->sd_args.ar_locktable) ||
1262 strcmp(args.ar_hostdata, sdp->sd_args.ar_hostdata))
1263 return -EINVAL;
1264
1265 /* Some flags must not be changed */
1266 if (args_neq(&args, &sdp->sd_args, spectator) ||
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001267 args_neq(&args, &sdp->sd_args, localflocks) ||
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001268 args_neq(&args, &sdp->sd_args, meta))
1269 return -EINVAL;
1270
1271 if (sdp->sd_args.ar_spectator)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001272 *flags |= SB_RDONLY;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001273
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001274 if ((sb->s_flags ^ *flags) & SB_RDONLY) {
1275 if (*flags & SB_RDONLY)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001276 error = gfs2_make_fs_ro(sdp);
1277 else
1278 error = gfs2_make_fs_rw(sdp);
1279 if (error)
1280 return error;
1281 }
1282
1283 sdp->sd_args = args;
1284 if (sdp->sd_args.ar_posix_acl)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001285 sb->s_flags |= SB_POSIXACL;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001286 else
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001287 sb->s_flags &= ~SB_POSIXACL;
Christoph Hellwigf25934c2009-10-30 08:03:27 +01001288 if (sdp->sd_args.ar_nobarrier)
1289 set_bit(SDF_NOBARRIERS, &sdp->sd_flags);
1290 else
1291 clear_bit(SDF_NOBARRIERS, &sdp->sd_flags);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001292 spin_lock(&gt->gt_spin);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -05001293 gt->gt_logd_secs = args.ar_commit;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001294 gt->gt_quota_quantum = args.ar_quota_quantum;
1295 if (args.ar_statfs_quantum) {
1296 gt->gt_statfs_slow = 0;
1297 gt->gt_statfs_quantum = args.ar_statfs_quantum;
1298 }
1299 else {
1300 gt->gt_statfs_slow = 1;
1301 gt->gt_statfs_quantum = 30;
1302 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001303 spin_unlock(&gt->gt_spin);
1304
Steven Whitehouse8633ecf2009-07-31 11:07:29 +01001305 gfs2_online_uevent(sdp);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001306 return 0;
1307}
1308
1309/**
1310 * gfs2_drop_inode - Drop an inode (test for remote unlink)
1311 * @inode: The inode to drop
1312 *
Andreas Gruenbacher61b91cf2017-08-01 09:54:33 -05001313 * If we've received a callback on an iopen lock then it's because a
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001314 * remote node tried to deallocate the inode but failed due to this node
1315 * still having the inode open. Here we mark the link count zero
1316 * since we know that it must have reached zero if the GLF_DEMOTE flag
1317 * is set on the iopen glock. If we didn't do a disk read since the
1318 * remote node removed the final link then we might otherwise miss
1319 * this event. This check ensures that this node will deallocate the
1320 * inode's blocks, or alternatively pass the baton on to another
1321 * node for later deallocation.
1322 */
1323
Al Viro45321ac2010-06-07 13:43:19 -04001324static int gfs2_drop_inode(struct inode *inode)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001325{
1326 struct gfs2_inode *ip = GFS2_I(inode);
1327
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001328 if (!test_bit(GIF_FREE_VFS_INODE, &ip->i_flags) &&
1329 inode->i_nlink &&
1330 gfs2_holder_initialized(&ip->i_iopen_gh)) {
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001331 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001332 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001333 clear_nlink(inode);
1334 }
Andreas Gruenbacher6a1c8f62017-08-01 11:49:42 -05001335
1336 /*
1337 * When under memory pressure when an inode's link count has dropped to
1338 * zero, defer deleting the inode to the delete workqueue. This avoids
1339 * calling into DLM under memory pressure, which can deadlock.
1340 */
1341 if (!inode->i_nlink &&
1342 unlikely(current->flags & PF_MEMALLOC) &&
1343 gfs2_holder_initialized(&ip->i_iopen_gh)) {
1344 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1345
1346 gfs2_glock_hold(gl);
1347 if (queue_work(gfs2_delete_workqueue, &gl->gl_delete) == 0)
1348 gfs2_glock_queue_put(gl);
1349 return false;
1350 }
1351
Al Viro45321ac2010-06-07 13:43:19 -04001352 return generic_drop_inode(inode);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001353}
1354
1355static int is_ancestor(const struct dentry *d1, const struct dentry *d2)
1356{
1357 do {
1358 if (d1 == d2)
1359 return 1;
1360 d1 = d1->d_parent;
1361 } while (!IS_ROOT(d1));
1362 return 0;
1363}
1364
1365/**
1366 * gfs2_show_options - Show mount options for /proc/mounts
1367 * @s: seq_file structure
Al Viro34c80b12011-12-08 21:32:45 -05001368 * @root: root of this (sub)tree
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001369 *
1370 * Returns: 0 on success or error code
1371 */
1372
Al Viro34c80b12011-12-08 21:32:45 -05001373static int gfs2_show_options(struct seq_file *s, struct dentry *root)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001374{
Al Viro34c80b12011-12-08 21:32:45 -05001375 struct gfs2_sbd *sdp = root->d_sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001376 struct gfs2_args *args = &sdp->sd_args;
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001377 int val;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001378
Al Viro34c80b12011-12-08 21:32:45 -05001379 if (is_ancestor(root, sdp->sd_master_dir))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001380 seq_puts(s, ",meta");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001381 if (args->ar_lockproto[0])
Kees Cooka068acf2015-09-04 15:44:57 -07001382 seq_show_option(s, "lockproto", args->ar_lockproto);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001383 if (args->ar_locktable[0])
Kees Cooka068acf2015-09-04 15:44:57 -07001384 seq_show_option(s, "locktable", args->ar_locktable);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001385 if (args->ar_hostdata[0])
Kees Cooka068acf2015-09-04 15:44:57 -07001386 seq_show_option(s, "hostdata", args->ar_hostdata);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001387 if (args->ar_spectator)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001388 seq_puts(s, ",spectator");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001389 if (args->ar_localflocks)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001390 seq_puts(s, ",localflocks");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001391 if (args->ar_debug)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001392 seq_puts(s, ",debug");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001393 if (args->ar_posix_acl)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001394 seq_puts(s, ",acl");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001395 if (args->ar_quota != GFS2_QUOTA_DEFAULT) {
1396 char *state;
1397 switch (args->ar_quota) {
1398 case GFS2_QUOTA_OFF:
1399 state = "off";
1400 break;
1401 case GFS2_QUOTA_ACCOUNT:
1402 state = "account";
1403 break;
1404 case GFS2_QUOTA_ON:
1405 state = "on";
1406 break;
1407 default:
1408 state = "unknown";
1409 break;
1410 }
1411 seq_printf(s, ",quota=%s", state);
1412 }
1413 if (args->ar_suiddir)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001414 seq_puts(s, ",suiddir");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001415 if (args->ar_data != GFS2_DATA_DEFAULT) {
1416 char *state;
1417 switch (args->ar_data) {
1418 case GFS2_DATA_WRITEBACK:
1419 state = "writeback";
1420 break;
1421 case GFS2_DATA_ORDERED:
1422 state = "ordered";
1423 break;
1424 default:
1425 state = "unknown";
1426 break;
1427 }
1428 seq_printf(s, ",data=%s", state);
1429 }
1430 if (args->ar_discard)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001431 seq_puts(s, ",discard");
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -05001432 val = sdp->sd_tune.gt_logd_secs;
1433 if (val != 30)
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001434 seq_printf(s, ",commit=%d", val);
1435 val = sdp->sd_tune.gt_statfs_quantum;
1436 if (val != 30)
1437 seq_printf(s, ",statfs_quantum=%d", val);
Steven Whitehouse2b9731e2012-08-20 17:07:49 +01001438 else if (sdp->sd_tune.gt_statfs_slow)
1439 seq_puts(s, ",statfs_quantum=0");
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001440 val = sdp->sd_tune.gt_quota_quantum;
1441 if (val != 60)
1442 seq_printf(s, ",quota_quantum=%d", val);
1443 if (args->ar_statfs_percent)
1444 seq_printf(s, ",statfs_percent=%d", args->ar_statfs_percent);
Bob Petersond34843d2009-08-24 10:44:18 +01001445 if (args->ar_errors != GFS2_ERRORS_DEFAULT) {
1446 const char *state;
1447
1448 switch (args->ar_errors) {
1449 case GFS2_ERRORS_WITHDRAW:
1450 state = "withdraw";
1451 break;
1452 case GFS2_ERRORS_PANIC:
1453 state = "panic";
1454 break;
1455 default:
1456 state = "unknown";
1457 break;
1458 }
1459 seq_printf(s, ",errors=%s", state);
1460 }
Steven Whitehousecdcfde62009-10-30 10:48:53 +00001461 if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001462 seq_puts(s, ",nobarrier");
Steven Whitehouse913a71d2010-05-06 11:03:29 +01001463 if (test_bit(SDF_DEMOTE, &sdp->sd_flags))
Fabian Frederickeaebded2014-07-02 22:08:46 +02001464 seq_puts(s, ",demote_interface_used");
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001465 if (args->ar_rgrplvb)
Fabian Frederickeaebded2014-07-02 22:08:46 +02001466 seq_puts(s, ",rgrplvb");
Benjamin Marzinski471f3db2015-12-01 08:46:55 -06001467 if (args->ar_loccookie)
1468 seq_puts(s, ",loccookie");
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001469 return 0;
1470}
1471
Steven Whitehousef42ab082011-04-14 16:50:31 +01001472static void gfs2_final_release_pages(struct gfs2_inode *ip)
1473{
1474 struct inode *inode = &ip->i_inode;
1475 struct gfs2_glock *gl = ip->i_gl;
1476
1477 truncate_inode_pages(gfs2_glock2aspace(ip->i_gl), 0);
1478 truncate_inode_pages(&inode->i_data, 0);
1479
Bob Peterson73118ca2019-04-05 04:41:38 +01001480 if (!test_bit(GLF_REVOKES, &gl->gl_flags)) {
Steven Whitehousef42ab082011-04-14 16:50:31 +01001481 clear_bit(GLF_LFLUSH, &gl->gl_flags);
1482 clear_bit(GLF_DIRTY, &gl->gl_flags);
1483 }
1484}
1485
1486static int gfs2_dinode_dealloc(struct gfs2_inode *ip)
1487{
1488 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001489 struct gfs2_rgrpd *rgd;
Bob Peterson564e12b2011-11-21 13:36:17 -05001490 struct gfs2_holder gh;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001491 int error;
1492
1493 if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
Steven Whitehouse94fb7632011-05-09 13:36:10 +01001494 gfs2_consist_inode(ip);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001495 return -EIO;
1496 }
1497
Bob Peterson8e2e0042012-07-19 08:12:40 -04001498 error = gfs2_rindex_update(sdp);
1499 if (error)
1500 return error;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001501
Eric W. Biedermanf4108a62013-01-31 17:49:26 -08001502 error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001503 if (error)
Bob Peterson5407e242012-05-18 09:28:23 -04001504 return error;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001505
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001506 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001507 if (!rgd) {
1508 gfs2_consist_inode(ip);
1509 error = -EIO;
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001510 goto out_qs;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001511 }
1512
Bob Peterson564e12b2011-11-21 13:36:17 -05001513 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &gh);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001514 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001515 goto out_qs;
Steven Whitehousef42ab082011-04-14 16:50:31 +01001516
Steven Whitehouse4667a0e2011-04-18 14:18:09 +01001517 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA,
1518 sdp->sd_jdesc->jd_blocks);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001519 if (error)
1520 goto out_rg_gunlock;
1521
1522 gfs2_free_di(rgd, ip);
1523
1524 gfs2_final_release_pages(ip);
1525
1526 gfs2_trans_end(sdp);
1527
1528out_rg_gunlock:
Bob Peterson564e12b2011-11-21 13:36:17 -05001529 gfs2_glock_dq_uninit(&gh);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001530out_qs:
1531 gfs2_quota_unhold(ip);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001532 return error;
1533}
1534
Steven Whitehouse380f7c62011-07-14 08:59:44 +01001535/**
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001536 * gfs2_glock_put_eventually
1537 * @gl: The glock to put
1538 *
1539 * When under memory pressure, trigger a deferred glock put to make sure we
1540 * won't call into DLM and deadlock. Otherwise, put the glock directly.
1541 */
1542
1543static void gfs2_glock_put_eventually(struct gfs2_glock *gl)
1544{
1545 if (current->flags & PF_MEMALLOC)
1546 gfs2_glock_queue_put(gl);
1547 else
1548 gfs2_glock_put(gl);
1549}
1550
1551/**
Steven Whitehouse380f7c62011-07-14 08:59:44 +01001552 * gfs2_evict_inode - Remove an inode from cache
1553 * @inode: The inode to evict
1554 *
1555 * There are three cases to consider:
1556 * 1. i_nlink == 0, we are final opener (and must deallocate)
1557 * 2. i_nlink == 0, we are not the final opener (and cannot deallocate)
1558 * 3. i_nlink > 0
1559 *
1560 * If the fs is read only, then we have to treat all cases as per #3
1561 * since we are unable to do any deallocation. The inode will be
1562 * deallocated by the next read/write node to attempt an allocation
1563 * in the same resource group
1564 *
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001565 * We have to (at the moment) hold the inodes main lock to cover
1566 * the gap between unlocking the shared lock on the iopen lock and
1567 * taking the exclusive lock. I'd rather do a shared -> exclusive
1568 * conversion on the iopen lock, but we can change that later. This
1569 * is safe, just less efficient.
1570 */
1571
Al Virod5c15152010-06-07 11:05:19 -04001572static void gfs2_evict_inode(struct inode *inode)
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001573{
Steven Whitehouse001e8e82011-03-30 14:17:51 +01001574 struct super_block *sb = inode->i_sb;
1575 struct gfs2_sbd *sdp = sb->s_fs_info;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001576 struct gfs2_inode *ip = GFS2_I(inode);
1577 struct gfs2_holder gh;
Bob Petersonee530be2015-12-07 15:13:28 -06001578 struct address_space *metamapping;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001579 int error;
1580
Abhi Das05978802014-03-31 10:33:17 -05001581 if (test_bit(GIF_FREE_VFS_INODE, &ip->i_flags)) {
1582 clear_inode(inode);
1583 return;
1584 }
1585
David Howellsbc98a422017-07-17 08:45:34 +01001586 if (inode->i_nlink || sb_rdonly(sb))
Al Virod5c15152010-06-07 11:05:19 -04001587 goto out;
1588
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -05001589 if (test_bit(GIF_ALLOC_FAILED, &ip->i_flags)) {
1590 BUG_ON(!gfs2_glock_is_locked_by_me(ip->i_gl));
1591 gfs2_holder_mark_uninitialized(&gh);
1592 goto alloc_failed;
1593 }
1594
Andreas Gruenbacher6a1c8f62017-08-01 11:49:42 -05001595 /* Deletes should never happen under memory pressure anymore. */
1596 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
1597 goto out;
1598
Bob Peterson44ad37d2011-03-17 16:19:58 -04001599 /* Must not read inode block until block type has been verified */
1600 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, &gh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001601 if (unlikely(error)) {
Bob Peterson240c6232017-07-18 12:36:01 -05001602 glock_clear_object(ip->i_iopen_gh.gh_gl, ip);
Bob Petersona6a4d982013-05-29 11:51:52 -04001603 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
Andreas Gruenbacherd4da3192017-02-22 20:05:09 +01001604 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001605 goto out;
1606 }
1607
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -05001608 error = gfs2_check_blk_type(sdp, ip->i_no_addr, GFS2_BLKST_UNLINKED);
1609 if (error)
1610 goto out_truncate;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001611
Bob Peterson44ad37d2011-03-17 16:19:58 -04001612 if (test_bit(GIF_INVALID, &ip->i_flags)) {
1613 error = gfs2_inode_refresh(ip);
1614 if (error)
1615 goto out_truncate;
1616 }
1617
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001618 /*
1619 * The inode may have been recreated in the meantime.
1620 */
1621 if (inode->i_nlink)
1622 goto out_truncate;
1623
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -05001624alloc_failed:
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001625 if (gfs2_holder_initialized(&ip->i_iopen_gh) &&
Bob Peterson7508abc2015-12-18 11:54:55 -06001626 test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1627 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
1628 gfs2_glock_dq_wait(&ip->i_iopen_gh);
1629 gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | GL_NOCACHE,
1630 &ip->i_iopen_gh);
1631 error = gfs2_glock_nq(&ip->i_iopen_gh);
1632 if (error)
1633 goto out_truncate;
1634 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001635
1636 if (S_ISDIR(inode->i_mode) &&
1637 (ip->i_diskflags & GFS2_DIF_EXHASH)) {
1638 error = gfs2_dir_exhash_dealloc(ip);
1639 if (error)
1640 goto out_unlock;
1641 }
1642
1643 if (ip->i_eattr) {
1644 error = gfs2_ea_dealloc(ip);
1645 if (error)
1646 goto out_unlock;
1647 }
1648
1649 if (!gfs2_is_stuffed(ip)) {
1650 error = gfs2_file_dealloc(ip);
1651 if (error)
1652 goto out_unlock;
1653 }
1654
Bob Peterson240c6232017-07-18 12:36:01 -05001655 /* We're about to clear the bitmap for the dinode, but as soon as we
1656 do, gfs2_create_inode can create another inode at the same block
1657 location and try to set gl_object again. We clear gl_object here so
1658 that subsequent inode creates don't see an old gl_object. */
1659 glock_clear_object(ip->i_gl, ip);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001660 error = gfs2_dinode_dealloc(ip);
Steven Whitehousef42ab082011-04-14 16:50:31 +01001661 goto out_unlock;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001662
1663out_truncate:
Bob Peterson805c09072018-01-08 10:34:17 -05001664 gfs2_log_flush(sdp, ip->i_gl, GFS2_LOG_HEAD_FLUSH_NORMAL |
1665 GFS2_LFC_EVICT_INODE);
Bob Petersonee530be2015-12-07 15:13:28 -06001666 metamapping = gfs2_glock2aspace(ip->i_gl);
Benjamin Marzinski2216db72012-09-20 09:52:58 -05001667 if (test_bit(GLF_DIRTY, &ip->i_gl->gl_flags)) {
Benjamin Marzinski2216db72012-09-20 09:52:58 -05001668 filemap_fdatawrite(metamapping);
1669 filemap_fdatawait(metamapping);
1670 }
Steven Whitehouse40ac2182011-08-02 13:17:27 +01001671 write_inode_now(inode, 1);
Steven Whitehouseb5b24d72011-09-07 10:33:25 +01001672 gfs2_ail_flush(ip->i_gl, 0);
Steven Whitehouse40ac2182011-08-02 13:17:27 +01001673
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001674 error = gfs2_trans_begin(sdp, 0, sdp->sd_jdesc->jd_blocks);
1675 if (error)
1676 goto out_unlock;
Steven Whitehouse380f7c62011-07-14 08:59:44 +01001677 /* Needs to be done before glock release & also in a transaction */
1678 truncate_inode_pages(&inode->i_data, 0);
Bob Petersonee530be2015-12-07 15:13:28 -06001679 truncate_inode_pages(metamapping, 0);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001680 gfs2_trans_end(sdp);
1681
1682out_unlock:
Bob Petersona097dc7e2015-07-16 08:28:04 -05001683 if (gfs2_rs_active(&ip->i_res))
1684 gfs2_rs_deltree(&ip->i_res);
Bob Peterson8e2e0042012-07-19 08:12:40 -04001685
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001686 if (gfs2_holder_initialized(&ip->i_iopen_gh)) {
Bob Peterson240c6232017-07-18 12:36:01 -05001687 glock_clear_object(ip->i_iopen_gh.gh_gl, ip);
Bob Peterson7508abc2015-12-18 11:54:55 -06001688 if (test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) {
1689 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
Andreas Gruenbacherd4da3192017-02-22 20:05:09 +01001690 gfs2_glock_dq(&ip->i_iopen_gh);
Bob Peterson7508abc2015-12-18 11:54:55 -06001691 }
1692 gfs2_holder_uninit(&ip->i_iopen_gh);
Bob Petersona6a4d982013-05-29 11:51:52 -04001693 }
Bob Peterson240c6232017-07-18 12:36:01 -05001694 if (gfs2_holder_initialized(&gh)) {
1695 glock_clear_object(ip->i_gl, ip);
Andreas Gruenbachere0b62e22017-06-30 08:16:46 -05001696 gfs2_glock_dq_uninit(&gh);
Bob Peterson240c6232017-07-18 12:36:01 -05001697 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001698 if (error && error != GLR_TRYFAILED && error != -EROFS)
Al Virod5c15152010-06-07 11:05:19 -04001699 fs_warn(sdp, "gfs2_evict_inode: %d\n", error);
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001700out:
Johannes Weiner91b0abe2014-04-03 14:47:49 -07001701 truncate_inode_pages_final(&inode->i_data);
Bob Petersonb54e9a02015-10-26 10:40:28 -05001702 gfs2_rsqa_delete(ip, NULL);
Steven Whitehouse45138992013-01-28 09:30:07 +00001703 gfs2_ordered_del_inode(ip);
Jan Karadbd57682012-05-03 14:48:02 +02001704 clear_inode(inode);
Steven Whitehouse17d539f2011-06-15 10:29:37 +01001705 gfs2_dir_hash_inval(ip);
Bob Petersondf3d87bd2017-07-18 11:35:04 -05001706 glock_clear_object(ip->i_gl, ip);
Andreas Gruenbacher4fd1a572017-06-30 07:47:15 -05001707 wait_on_bit_io(&ip->i_flags, GIF_GLOP_PENDING, TASK_UNINTERRUPTIBLE);
Steven Whitehouse29687a22011-03-30 16:33:25 +01001708 gfs2_glock_add_to_lru(ip->i_gl);
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001709 gfs2_glock_put_eventually(ip->i_gl);
Al Virod5c15152010-06-07 11:05:19 -04001710 ip->i_gl = NULL;
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001711 if (gfs2_holder_initialized(&ip->i_iopen_gh)) {
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001712 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl;
1713
1714 glock_clear_object(gl, ip);
Bob Petersona6a4d982013-05-29 11:51:52 -04001715 ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001716 gfs2_glock_hold(gl);
Andreas Gruenbacherd4da3192017-02-22 20:05:09 +01001717 gfs2_glock_dq_uninit(&ip->i_iopen_gh);
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -05001718 gfs2_glock_put_eventually(gl);
Al Virod5c15152010-06-07 11:05:19 -04001719 }
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001720}
1721
1722static struct inode *gfs2_alloc_inode(struct super_block *sb)
1723{
1724 struct gfs2_inode *ip;
1725
1726 ip = kmem_cache_alloc(gfs2_inode_cachep, GFP_KERNEL);
1727 if (ip) {
1728 ip->i_flags = 0;
1729 ip->i_gl = NULL;
Bob Petersona097dc7e2015-07-16 08:28:04 -05001730 memset(&ip->i_res, 0, sizeof(ip->i_res));
1731 RB_CLEAR_NODE(&ip->i_res.rs_node);
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001732 ip->i_rahead = 0;
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001733 }
1734 return &ip->i_inode;
1735}
1736
Al Viro784494e2019-04-15 19:45:26 -04001737static void gfs2_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001738{
Al Viro784494e2019-04-15 19:45:26 -04001739 kmem_cache_free(gfs2_inode_cachep, GFS2_I(inode));
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001740}
1741
1742const struct super_operations gfs2_super_ops = {
1743 .alloc_inode = gfs2_alloc_inode,
Al Viro784494e2019-04-15 19:45:26 -04001744 .free_inode = gfs2_free_inode,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001745 .write_inode = gfs2_write_inode,
Steven Whitehouseab9bbda2011-08-15 14:20:36 +01001746 .dirty_inode = gfs2_dirty_inode,
Al Virod5c15152010-06-07 11:05:19 -04001747 .evict_inode = gfs2_evict_inode,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001748 .put_super = gfs2_put_super,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001749 .sync_fs = gfs2_sync_fs,
Benjamin Marzinski2e60d762014-11-13 20:42:04 -06001750 .freeze_super = gfs2_freeze,
1751 .thaw_super = gfs2_unfreeze,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001752 .statfs = gfs2_statfs,
1753 .remount_fs = gfs2_remount_fs,
Steven Whitehouse9e6e0a12009-05-22 10:36:01 +01001754 .drop_inode = gfs2_drop_inode,
1755 .show_options = gfs2_show_options,
1756};
1757