]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/xfs/xfs_mount.c
[NET]: Make socket creation namespace safe.
[linux-2.6-omap-h63xx.git] / fs / xfs / xfs_mount.c
index 31453ca0f3dd77827cd9456919bd83d4bd5fbba2..a66b398051760f3dd2695777bbb4e637e2280279 100644 (file)
@@ -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;