convert C++ style comments to C comments (Alon Bar-Lev)

master
szaka 2008-01-23 21:04:06 +00:00
parent a246e45f82
commit dbbdb34f1b
2 changed files with 12 additions and 12 deletions

View File

@ -303,7 +303,6 @@ extern int ntfs_attr_update_mapping_pairs(ntfs_attr *na, VCN from_vcn);
extern int ntfs_attr_truncate(ntfs_attr *na, const s64 newsize);
// FIXME / TODO: Above here the file is cleaned up. (AIA)
/**
* get_attribute_value_length - return the length of the value of an attribute
* @a: pointer to a buffer containing the attribute record

View File

@ -2340,17 +2340,18 @@ typedef struct {
control entry in the data part of
the index. */
} __attribute__((__packed__)) key;
/* The (optional) index data is inserted here when creating. */
// VCN vcn; If INDEX_ENTRY_NODE bit in ie_flags is set, the last
// eight bytes of this index entry contain the virtual
// cluster number of the index block that holds the
// entries immediately preceding the current entry.
//
// If the key_length is zero, then the vcn immediately
// follows the INDEX_ENTRY_HEADER.
//
// The address of the vcn of "ie" INDEX_ENTRY is given by
// (char*)ie + le16_to_cpu(ie->length) - sizeof(VCN)
/* The (optional) index data is inserted here when creating.
VCN vcn; If INDEX_ENTRY_NODE bit in ie_flags is set, the last
eight bytes of this index entry contain the virtual
cluster number of the index block that holds the
entries immediately preceding the current entry.
If the key_length is zero, then the vcn immediately
follows the INDEX_ENTRY_HEADER.
The address of the vcn of "ie" INDEX_ENTRY is given by
(char*)ie + le16_to_cpu(ie->length) - sizeof(VCN)
*/
} __attribute__((__packed__)) INDEX_ENTRY;
/**