diff options
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_fsops.c | 1 | ||||
-rw-r--r-- | fs/xfs/xfs_ioctl.c | 4 | ||||
-rw-r--r-- | fs/xfs/xfs_super.c | 5 | ||||
-rw-r--r-- | fs/xfs/xfs_trans_buf.c | 5 |
4 files changed, 11 insertions, 4 deletions
diff --git a/fs/xfs/xfs_fsops.c b/fs/xfs/xfs_fsops.c index f7114527cd2f..fba6532efba4 100644 --- a/fs/xfs/xfs_fsops.c +++ b/fs/xfs/xfs_fsops.c | |||
@@ -488,6 +488,7 @@ xfs_growfs_data_private( | |||
488 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, nfree); | 488 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, nfree); |
489 | if (dpct) | 489 | if (dpct) |
490 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct); | 490 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct); |
491 | xfs_trans_set_sync(tp); | ||
491 | error = xfs_trans_commit(tp, 0); | 492 | error = xfs_trans_commit(tp, 0); |
492 | if (error) | 493 | if (error) |
493 | return error; | 494 | return error; |
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index b88ab927debe..f7afb86c9148 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c | |||
@@ -1086,7 +1086,7 @@ out_cancel: | |||
1086 | * to half the AG size to avoid alignment extending the extent beyond the | 1086 | * to half the AG size to avoid alignment extending the extent beyond the |
1087 | * limits of the AG. | 1087 | * limits of the AG. |
1088 | */ | 1088 | */ |
1089 | int | 1089 | static int |
1090 | xfs_ioctl_setattr_check_extsize( | 1090 | xfs_ioctl_setattr_check_extsize( |
1091 | struct xfs_inode *ip, | 1091 | struct xfs_inode *ip, |
1092 | struct fsxattr *fa) | 1092 | struct fsxattr *fa) |
@@ -1129,7 +1129,7 @@ xfs_ioctl_setattr_check_extsize( | |||
1129 | return 0; | 1129 | return 0; |
1130 | } | 1130 | } |
1131 | 1131 | ||
1132 | int | 1132 | static int |
1133 | xfs_ioctl_setattr_check_projid( | 1133 | xfs_ioctl_setattr_check_projid( |
1134 | struct xfs_inode *ip, | 1134 | struct xfs_inode *ip, |
1135 | struct fsxattr *fa) | 1135 | struct fsxattr *fa) |
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 5ce76d01885d..f2449fd86926 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c | |||
@@ -1111,6 +1111,11 @@ xfs_fs_statfs( | |||
1111 | statp->f_files, | 1111 | statp->f_files, |
1112 | mp->m_maxicount); | 1112 | mp->m_maxicount); |
1113 | 1113 | ||
1114 | /* If sb_icount overshot maxicount, report actual allocation */ | ||
1115 | statp->f_files = max_t(typeof(statp->f_files), | ||
1116 | statp->f_files, | ||
1117 | sbp->sb_icount); | ||
1118 | |||
1114 | /* make sure statp->f_ffree does not underflow */ | 1119 | /* make sure statp->f_ffree does not underflow */ |
1115 | ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree); | 1120 | ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree); |
1116 | statp->f_ffree = max_t(__int64_t, ffree, 0); | 1121 | statp->f_ffree = max_t(__int64_t, ffree, 0); |
diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c index 0a4d4ab6d9a9..75798412859a 100644 --- a/fs/xfs/xfs_trans_buf.c +++ b/fs/xfs/xfs_trans_buf.c | |||
@@ -327,9 +327,10 @@ xfs_trans_read_buf_map( | |||
327 | return -EIO; | 327 | return -EIO; |
328 | } | 328 | } |
329 | 329 | ||
330 | if (tp) | 330 | if (tp) { |
331 | _xfs_trans_bjoin(tp, bp, 1); | 331 | _xfs_trans_bjoin(tp, bp, 1); |
332 | trace_xfs_trans_read_buf(bp->b_fspriv); | 332 | trace_xfs_trans_read_buf(bp->b_fspriv); |
333 | } | ||
333 | *bpp = bp; | 334 | *bpp = bp; |
334 | return 0; | 335 | return 0; |
335 | 336 | ||