|
@@ -1443,15 +1443,9 @@ reread:
|
|
|
inode->i_blocks = le64_to_cpu(fe->logicalBlocksRecorded) <<
|
|
|
(inode->i_sb->s_blocksize_bits - 9);
|
|
|
|
|
|
- if (!udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime))
|
|
|
- inode->i_atime = sbi->s_record_time;
|
|
|
-
|
|
|
- if (!udf_disk_stamp_to_time(&inode->i_mtime,
|
|
|
- fe->modificationTime))
|
|
|
- inode->i_mtime = sbi->s_record_time;
|
|
|
-
|
|
|
- if (!udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime))
|
|
|
- inode->i_ctime = sbi->s_record_time;
|
|
|
+ udf_disk_stamp_to_time(&inode->i_atime, fe->accessTime);
|
|
|
+ udf_disk_stamp_to_time(&inode->i_mtime, fe->modificationTime);
|
|
|
+ udf_disk_stamp_to_time(&inode->i_ctime, fe->attrTime);
|
|
|
|
|
|
iinfo->i_unique = le64_to_cpu(fe->uniqueID);
|
|
|
iinfo->i_lenEAttr = le32_to_cpu(fe->lengthExtendedAttr);
|
|
@@ -1461,18 +1455,10 @@ reread:
|
|
|
inode->i_blocks = le64_to_cpu(efe->logicalBlocksRecorded) <<
|
|
|
(inode->i_sb->s_blocksize_bits - 9);
|
|
|
|
|
|
- if (!udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime))
|
|
|
- inode->i_atime = sbi->s_record_time;
|
|
|
-
|
|
|
- if (!udf_disk_stamp_to_time(&inode->i_mtime,
|
|
|
- efe->modificationTime))
|
|
|
- inode->i_mtime = sbi->s_record_time;
|
|
|
-
|
|
|
- if (!udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime))
|
|
|
- iinfo->i_crtime = sbi->s_record_time;
|
|
|
-
|
|
|
- if (!udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime))
|
|
|
- inode->i_ctime = sbi->s_record_time;
|
|
|
+ udf_disk_stamp_to_time(&inode->i_atime, efe->accessTime);
|
|
|
+ udf_disk_stamp_to_time(&inode->i_mtime, efe->modificationTime);
|
|
|
+ udf_disk_stamp_to_time(&iinfo->i_crtime, efe->createTime);
|
|
|
+ udf_disk_stamp_to_time(&inode->i_ctime, efe->attrTime);
|
|
|
|
|
|
iinfo->i_unique = le64_to_cpu(efe->uniqueID);
|
|
|
iinfo->i_lenEAttr = le32_to_cpu(efe->lengthExtendedAttr);
|