|
@@ -965,7 +965,7 @@ xfs_iread(
|
|
* the new format. We don't change the version number so that we
|
|
* the new format. We don't change the version number so that we
|
|
* can distinguish this from a real new format inode.
|
|
* can distinguish this from a real new format inode.
|
|
*/
|
|
*/
|
|
- if (ip->i_d.di_version == XFS_DINODE_VERSION_1) {
|
|
|
|
|
|
+ if (ip->i_d.di_version == 1) {
|
|
ip->i_d.di_nlink = ip->i_d.di_onlink;
|
|
ip->i_d.di_nlink = ip->i_d.di_onlink;
|
|
ip->i_d.di_onlink = 0;
|
|
ip->i_d.di_onlink = 0;
|
|
ip->i_d.di_projid = 0;
|
|
ip->i_d.di_projid = 0;
|
|
@@ -1139,8 +1139,8 @@ xfs_ialloc(
|
|
* here rather than here and in the flush/logging code.
|
|
* here rather than here and in the flush/logging code.
|
|
*/
|
|
*/
|
|
if (xfs_sb_version_hasnlink(&tp->t_mountp->m_sb) &&
|
|
if (xfs_sb_version_hasnlink(&tp->t_mountp->m_sb) &&
|
|
- ip->i_d.di_version == XFS_DINODE_VERSION_1) {
|
|
|
|
- ip->i_d.di_version = XFS_DINODE_VERSION_2;
|
|
|
|
|
|
+ ip->i_d.di_version == 1) {
|
|
|
|
+ ip->i_d.di_version = 2;
|
|
/*
|
|
/*
|
|
* We've already zeroed the old link count, the projid field,
|
|
* We've already zeroed the old link count, the projid field,
|
|
* and the pad field.
|
|
* and the pad field.
|
|
@@ -1150,7 +1150,7 @@ xfs_ialloc(
|
|
/*
|
|
/*
|
|
* Project ids won't be stored on disk if we are using a version 1 inode.
|
|
* Project ids won't be stored on disk if we are using a version 1 inode.
|
|
*/
|
|
*/
|
|
- if ((prid != 0) && (ip->i_d.di_version == XFS_DINODE_VERSION_1))
|
|
|
|
|
|
+ if ((prid != 0) && (ip->i_d.di_version == 1))
|
|
xfs_bump_ino_vers2(tp, ip);
|
|
xfs_bump_ino_vers2(tp, ip);
|
|
|
|
|
|
if (pip && XFS_INHERIT_GID(pip)) {
|
|
if (pip && XFS_INHERIT_GID(pip)) {
|
|
@@ -3373,9 +3373,8 @@ xfs_iflush_int(
|
|
* convert back to the old inode format. If the superblock version
|
|
* convert back to the old inode format. If the superblock version
|
|
* has been updated, then make the conversion permanent.
|
|
* has been updated, then make the conversion permanent.
|
|
*/
|
|
*/
|
|
- ASSERT(ip->i_d.di_version == XFS_DINODE_VERSION_1 ||
|
|
|
|
- xfs_sb_version_hasnlink(&mp->m_sb));
|
|
|
|
- if (ip->i_d.di_version == XFS_DINODE_VERSION_1) {
|
|
|
|
|
|
+ ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
|
|
|
|
+ if (ip->i_d.di_version == 1) {
|
|
if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
|
|
if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
|
|
/*
|
|
/*
|
|
* Convert it back.
|
|
* Convert it back.
|
|
@@ -3388,8 +3387,8 @@ xfs_iflush_int(
|
|
* so just make the conversion to the new inode
|
|
* so just make the conversion to the new inode
|
|
* format permanent.
|
|
* format permanent.
|
|
*/
|
|
*/
|
|
- ip->i_d.di_version = XFS_DINODE_VERSION_2;
|
|
|
|
- dip->di_version = XFS_DINODE_VERSION_2;
|
|
|
|
|
|
+ ip->i_d.di_version = 2;
|
|
|
|
+ dip->di_version = 2;
|
|
ip->i_d.di_onlink = 0;
|
|
ip->i_d.di_onlink = 0;
|
|
dip->di_onlink = 0;
|
|
dip->di_onlink = 0;
|
|
memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
|
|
memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
|