diff options
author | Abhi Das <adas@redhat.com> | 2020-10-20 15:58:04 -0500 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2020-10-23 15:47:14 +0200 |
commit | 97fd734ba17e32463742c569137f54f713c27fe0 (patch) | |
tree | ed5592b97a793147121d7fe102400cfe93d68e44 /fs/gfs2/super.h | |
parent | 730926982d770dc764b4282aecc82e0039c18f64 (diff) | |
download | linux-rpi-97fd734ba17e32463742c569137f54f713c27fe0.tar.gz linux-rpi-97fd734ba17e32463742c569137f54f713c27fe0.tar.bz2 linux-rpi-97fd734ba17e32463742c569137f54f713c27fe0.zip |
gfs2: lookup local statfs inodes prior to journal recovery
We need to lookup the master statfs inode and the local statfs
inodes earlier in the mount process (in init_journal) so journal
recovery can use them when it attempts to recover the statfs info.
We lookup all the local statfs inodes and store them in a linked
list to allow a node to recover statfs info for other nodes in the
cluster.
Signed-off-by: Abhi Das <adas@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/super.h')
-rw-r--r-- | fs/gfs2/super.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/gfs2/super.h b/fs/gfs2/super.h index ed4f5cb29074..c9fb2a654181 100644 --- a/fs/gfs2/super.h +++ b/fs/gfs2/super.h @@ -44,6 +44,9 @@ extern void update_statfs(struct gfs2_sbd *sdp, struct buffer_head *m_bh, extern int gfs2_statfs_sync(struct super_block *sb, int type); extern void gfs2_freeze_func(struct work_struct *work); +extern void free_local_statfs_inodes(struct gfs2_sbd *sdp); +extern struct inode *find_local_statfs_inode(struct gfs2_sbd *sdp, + unsigned int index); extern void free_sbd(struct gfs2_sbd *sdp); extern struct file_system_type gfs2_fs_type; |