Przeglądaj źródła

[GFS2] API change for gfs2_statfs

The kernel API for super_operations->statfs() has changed
so this updates GFS2 to the new API.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Steven Whitehouse 19 lat temu
rodzic
commit
0c0834a30c
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      fs/gfs2/ops_super.c

+ 2 - 1
fs/gfs2/ops_super.c

@@ -202,8 +202,9 @@ static void gfs2_unlockfs(struct super_block *sb)
  * Returns: 0 on success or error code
  */
 
-static int gfs2_statfs(struct super_block *sb, struct kstatfs *buf)
+static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
 {
+	struct super_block *sb = dentry->d_inode->i_sb;
 	struct gfs2_sbd *sdp = sb->s_fs_info;
 	struct gfs2_statfs_change sc;
 	int error;