···2929 compiled without debug. This avoids a possible denial of service3030 attack. Thanks to Carl-Daniel Hailfinger from SuSE for pointing this3131 out.3232+ - Fix compilation warnings on ia64. (Randy Dunlap)3233 - Use i_size_read() in fs/ntfs/attrib.c::ntfs_attr_set().3334 - Use i_size_read() in fs/ntfs/logfile.c::ntfs_{check,empty}_logfile().3435 - Use i_size_read() once and then use the cached value in
+2-1
fs/ntfs/aops.c
···965965 "attribute type 0x%x) because "966966 "its location on disk could "967967 "not be determined (error "968968- "code %lli).", (s64)block <<968968+ "code %lli).",969969+ (long long)block <<969970 bh_size_bits >>970971 vol->mft_record_size_bits,971972 ni->mft_no, ni->type,
···25182518 nt = utc2ntfs(vi->i_mtime);25192519 if (si->last_data_change_time != nt) {25202520 ntfs_debug("Updating mtime for inode 0x%lx: old = 0x%llx, "25212521- "new = 0x%llx", vi->i_ino,25212521+ "new = 0x%llx", vi->i_ino, (long long)25222522 sle64_to_cpu(si->last_data_change_time),25232523- sle64_to_cpu(nt));25232523+ (long long)sle64_to_cpu(nt));25242524 si->last_data_change_time = nt;25252525 modified = TRUE;25262526 }25272527 nt = utc2ntfs(vi->i_ctime);25282528 if (si->last_mft_change_time != nt) {25292529 ntfs_debug("Updating ctime for inode 0x%lx: old = 0x%llx, "25302530- "new = 0x%llx", vi->i_ino,25302530+ "new = 0x%llx", vi->i_ino, (long long)25312531 sle64_to_cpu(si->last_mft_change_time),25322532- sle64_to_cpu(nt));25322532+ (long long)sle64_to_cpu(nt));25332533 si->last_mft_change_time = nt;25342534 modified = TRUE;25352535 }···25372537 if (si->last_access_time != nt) {25382538 ntfs_debug("Updating atime for inode 0x%lx: old = 0x%llx, "25392539 "new = 0x%llx", vi->i_ino,25402540- sle64_to_cpu(si->last_access_time),25412541- sle64_to_cpu(nt));25402540+ (long long)sle64_to_cpu(si->last_access_time),25412541+ (long long)sle64_to_cpu(nt));25422542 si->last_access_time = nt;25432543 modified = TRUE;25442544 }
+1-1
fs/ntfs/lcnalloc.c
···763763 "could allocate up to 0x%llx "764764 "clusters.",765765 (unsigned long long)rl[0].lcn,766766- (unsigned long long)count - clusters);766766+ (unsigned long long)(count - clusters));767767 /* Deallocate all allocated clusters. */768768 ntfs_debug("Attempting rollback...");769769 err2 = ntfs_cluster_free_from_rl_nolock(vol, rl);
+1-1
fs/ntfs/mft.c
···18021802 return PTR_ERR(rl);18031803 }18041804 mft_ni->runlist.rl = rl;18051805- ntfs_debug("Allocated %lli clusters.", nr);18051805+ ntfs_debug("Allocated %lli clusters.", (long long)nr);18061806 /* Find the last run in the new runlist. */18071807 for (; rl[1].length; rl++)18081808 ;