diff options
author | Michael Halcrow <mhalcrow@us.ibm.com> | 2009-01-06 17:42:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 18:59:22 -0500 |
commit | 7d8bc2be51706152828164b305e969b4a8471041 (patch) | |
tree | 3020b62d6e94005ed20e59361e10c0891ceba796 /fs/ecryptfs | |
parent | a8f12864c52f8ab8520568dc97969c1749ae60bf (diff) |
eCryptfs: kerneldoc for ecryptfs_parse_tag_70_packet()
Kerneldoc updates for ecryptfs_parse_tag_70_packet().
Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com>
Cc: Dustin Kirkland <dustin.kirkland@gmail.com>
Cc: Eric Sandeen <sandeen@redhat.com>
Cc: Tyler Hicks <tchicks@us.ibm.com>
Cc: David Kleikamp <shaggy@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ecryptfs')
-rw-r--r-- | fs/ecryptfs/keystore.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index c90ca5dfc506..ff539420cc6f 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c | |||
@@ -771,6 +771,17 @@ struct ecryptfs_parse_tag_70_packet_silly_stack { | |||
771 | /** | 771 | /** |
772 | * parse_tag_70_packet - Parse and process FNEK-encrypted passphrase packet | 772 | * parse_tag_70_packet - Parse and process FNEK-encrypted passphrase packet |
773 | * @filename: This function kmalloc's the memory for the filename | 773 | * @filename: This function kmalloc's the memory for the filename |
774 | * @filename_size: This function sets this to the amount of memory | ||
775 | * kmalloc'd for the filename | ||
776 | * @packet_size: This function sets this to the the number of octets | ||
777 | * in the packet parsed | ||
778 | * @mount_crypt_stat: The mount-wide cryptographic context | ||
779 | * @data: The memory location containing the start of the tag 70 | ||
780 | * packet | ||
781 | * @max_packet_size: The maximum legal size of the packet to be parsed | ||
782 | * from @data | ||
783 | * | ||
784 | * Returns zero on success; non-zero otherwise | ||
774 | */ | 785 | */ |
775 | int | 786 | int |
776 | ecryptfs_parse_tag_70_packet(char **filename, size_t *filename_size, | 787 | ecryptfs_parse_tag_70_packet(char **filename, size_t *filename_size, |