Changes by: uvman
Update of /cvs/linux-ntfs/ntfsprogs/ntfsprogs
In directory delta357.server4you.de:/tmp/cvs-serv24729/ntfsprogs
Modified Files:
mkntfs.c ntfsdecrypt.c ntfsmove.c sd.c
Log Message:
Comment documentation fixes.
Index: mkntfs.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs/mkntfs.c,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -p -r1.147 -r1.148
--- mkntfs.c 13 Aug 2006 14:17:02 -0000 1.147
+++ mkntfs.c 25 Sep 2006 16:58:38 -0000 1.148
@@ -585,9 +585,10 @@ static long long mkntfs_write(struct ntf
}
/**
- * ntfs_rlwrite - Write to disk the clusters contained in the runlist @rl
- * taking the data from @val. Take @val_len bytes from @val and pad the
- * rest with zeroes.
+ * ntfs_rlwrite - Write data to disk on clusters found in a runlist.
+ *
+ * Write to disk the clusters contained in the runlist @rl taking the data
+ * from @val. Take @val_len bytes from @val and pad the rest with zeroes.
*
* If the @rl specifies a completely sparse file, @val is allowed to be NULL.
*
@@ -1478,6 +1479,7 @@ static int mkntfs_attr_lookup(const ATTR
/**
* insert_positioned_attr_in_mft_record
+ *
* Create a non-resident attribute with a predefined on disk location
* specified by the runlist @rl. The clusters specified by @rl are assumed to
* be allocated already.
Index: ntfsdecrypt.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs/ntfsdecrypt.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -p -r1.30 -r1.31
--- ntfsdecrypt.c 19 Apr 2006 22:03:58 -0000 1.30
+++ ntfsdecrypt.c 25 Sep 2006 16:58:38 -0000 1.31
@@ -1189,8 +1189,10 @@ static int ntfs_fek_decrypt_sector(ntfs_
}
/**
- * ntfs_cat_decrypt
- * TODO:
+ * ntfs_cat_decrypt - Decrypt the contents of an encrypted file to stdout.
+ * @inode: An encrypted file's inode structure, as obtained by
+ * ntfs_inode_open().
+ * @fek: A file encryption key. As obtained by ntfs_inode_fek_get().
*/
static int ntfs_cat_decrypt(ntfs_inode *inode, ntfs_fek *fek)
{
Index: ntfsmove.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs/ntfsmove.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -p -r1.22 -r1.23
--- ntfsmove.c 5 Apr 2006 12:43:07 -0000 1.22
+++ ntfsmove.c 25 Sep 2006 16:58:38 -0000 1.23
@@ -746,7 +746,8 @@ static s64 move_datarun(ntfs_volume *vol
}
/**
- * move_attribute
+ * move_attribute -
+ *
* > 0 Bytes moved / size to be moved
* = 0 Nothing to do
* < 0 Error
@@ -791,7 +792,8 @@ static s64 move_attribute(ntfs_volume *v
}
/**
- * move_file
+ * move_file -
+ *
* > 0 Bytes moved / size to be moved
* = 0 Nothing to do
* < 0 Error
Index: sd.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs/sd.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- sd.c 4 Feb 2006 05:42:59 -0000 1.13
+++ sd.c 25 Sep 2006 16:58:38 -0000 1.14
@@ -202,6 +202,7 @@ void init_system_file_sd(int sys_file_no
/**
* init_root_sd_31 (ERSO)
+ *
* creates the security_descriptor for the root folder on ntfs 3.1.
* It is very long; lots of ACE's at first, then large pieces of zeroes;
* the owner user/group is near the end. On a partition created with
|