Searched refs:mft (Results 1 – 6 of 6) sorted by relevance
/linux-2.4.37.9/fs/ntfs/ |
D | inode.c | 36 static void ntfs_fill_mft_header(ntfs_u8 *mft, int rec_size, int seq_no, in ntfs_fill_mft_header() argument 43 NTFS_PUTU32(mft + 0x00, 0x454c4946); /* FILE */ in ntfs_fill_mft_header() 44 NTFS_PUTU16(mft + 0x04, fixup_ofs); /* Offset to fixup. */ in ntfs_fill_mft_header() 45 NTFS_PUTU16(mft + 0x06, fixup_cnt); /* Number of fixups. */ in ntfs_fill_mft_header() 46 NTFS_PUTU64(mft + 0x08, 0); /* Logical sequence number. */ in ntfs_fill_mft_header() 47 NTFS_PUTU16(mft + 0x10, seq_no); /* Sequence number. */ in ntfs_fill_mft_header() 48 NTFS_PUTU16(mft + 0x12, links); /* Hard link count. */ in ntfs_fill_mft_header() 49 NTFS_PUTU16(mft + 0x14, attr_ofs); /* Offset to attributes. */ in ntfs_fill_mft_header() 50 NTFS_PUTU16(mft + 0x16, flags); /* Flags: 1 = In use, in ntfs_fill_mft_header() 52 NTFS_PUTU32(mft + 0x18, attr_ofs + 8); /* Bytes in use. */ in ntfs_fill_mft_header() [all …]
|
D | fs.c | 876 struct inode *mft; in ntfs_statfs() local 896 mft = iget(sb, FILE_Mft); in ntfs_statfs() 898 "0x%x\n", mft); in ntfs_statfs() 899 if (!mft) in ntfs_statfs() 901 sf->f_files = mft->i_size >> vol->mft_record_size_bits; in ntfs_statfs() 903 iput(mft); in ntfs_statfs() 1068 if (!(vol->mft = ntfs_malloc(i))) in ntfs_read_super() 1080 ntfs_memcpy(vol->mft + ((__s64)i << vol->cluster_size_bits), in ntfs_read_super() 1087 if (!ntfs_check_mft_record(vol, vol->mft)){ in ntfs_read_super() 1110 ntfs_free(vol->mft); in ntfs_read_super()
|
D | support.c | 119 ntfs_memcpy(buf, vol->mft, vol->mft_record_size); in ntfs_read_mft_record()
|
D | super.c | 451 ntfs_free(vol->mft); in ntfs_release_volume()
|
/linux-2.4.37.9/include/linux/ |
D | ntfs_fs_sb.h | 50 unsigned char *mft; member
|
/linux-2.4.37.9/Documentation/filesystems/ |
D | ntfs.txt | 102 - Fixed bug with reading $MFT where we try to read higher mft records 135 partitions would be overwritten by the mft. And in general fixed up 136 mft extension code a bit (still incomplete though). 140 growing of mft zone but that is AFAIK not even done by Windows, and 239 - Fixed races in allocation of clusters and mft records.
|