Home
last modified time | relevance | path

Searched refs:mft (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/fs/ntfs/
Dinode.c36 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 …]
Dfs.c876 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()
Dsupport.c119 ntfs_memcpy(buf, vol->mft, vol->mft_record_size); in ntfs_read_mft_record()
Dsuper.c451 ntfs_free(vol->mft); in ntfs_release_volume()
/linux-2.4.37.9/include/linux/
Dntfs_fs_sb.h50 unsigned char *mft; member
/linux-2.4.37.9/Documentation/filesystems/
Dntfs.txt102 - 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.