Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=39726be2a2e6e61f352852da2c3a807773e33346
Commit:     39726be2a2e6e61f352852da2c3a807773e33346
Parent:     516b2e7c2661615ba5d5ad9fb584f068363502d3
Author:     Christoph Hellwig <[EMAIL PROTECTED]>
AuthorDate: Mon Jun 18 17:57:45 2007 +1000
Committer:  Tim Shimmin <[EMAIL PROTECTED]>
CommitDate: Sat Jul 14 15:36:08 2007 +1000

    [XFS] Use do_div() on 64 bit types.
    
    SGI-PV: 966145
    SGI-Modid: xfs-linux-melb:xfs-kern:28889a
    
    Signed-off-by: Christoph Hellwig <[EMAIL PROTECTED]>
    Signed-off-by: David Chinner <[EMAIL PROTECTED]>
    Signed-off-by: Tim Shimmin <[EMAIL PROTECTED]>
---
 fs/xfs/xfs_mount.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c
index 31453ca..a66b398 100644
--- a/fs/xfs/xfs_mount.c
+++ b/fs/xfs/xfs_mount.c
@@ -1154,7 +1154,9 @@ xfs_mountfs(
         * This may drive us straight to ENOSPC on mount, but that implies
         * we were already there on the last unmount.
         */
-       resblks = min_t(__uint64_t, mp->m_sb.sb_dblocks / 20, 1024);
+       resblks = mp->m_sb.sb_dblocks;
+       do_div(resblks, 20);
+       resblks = min_t(__uint64_t, resblks, 1024);
        xfs_reserve_blocks(mp, &resblks, NULL);
 
        return 0;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to