xfs_super.c (10ce3cc919f50c2043b41ca968b43c26a3672600) xfs_super.c (8de52778798fe39660a8d6b26f290e0c93202761)
1/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *

--- 1327 unchanged lines hidden (view full) ---

1336 * the inode cache shrinker so that inodes can be reclaimed during
1337 * operations like a quotacheck that iterate all inodes in the
1338 * filesystem.
1339 */
1340 sb->s_magic = XFS_SB_MAGIC;
1341 sb->s_blocksize = mp->m_sb.sb_blocksize;
1342 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1343 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *

--- 1327 unchanged lines hidden (view full) ---

1336 * the inode cache shrinker so that inodes can be reclaimed during
1337 * operations like a quotacheck that iterate all inodes in the
1338 * filesystem.
1339 */
1340 sb->s_magic = XFS_SB_MAGIC;
1341 sb->s_blocksize = mp->m_sb.sb_blocksize;
1342 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1343 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
1344 sb->s_max_links = XFS_MAXLINK;
1344 sb->s_time_gran = 1;
1345 set_posix_acl_flag(sb);
1346
1347 error = xfs_mountfs(mp);
1348 if (error)
1349 goto out_filestream_unmount;
1350
1351 error = xfs_syncd_init(mp);

--- 348 unchanged lines hidden ---
1345 sb->s_time_gran = 1;
1346 set_posix_acl_flag(sb);
1347
1348 error = xfs_mountfs(mp);
1349 if (error)
1350 goto out_filestream_unmount;
1351
1352 error = xfs_syncd_init(mp);

--- 348 unchanged lines hidden ---