Index: uspace/lib/ext4/libext4_filesystem.c
===================================================================
--- uspace/lib/ext4/libext4_filesystem.c	(revision 3169f3b05c4e156e67d8e0b3921114e2ac93e5ba)
+++ uspace/lib/ext4/libext4_filesystem.c	(revision 5b267478f63f99045448c9c28c60d56b0bb252a4)
@@ -41,6 +41,9 @@
 #include "libext4.h"
 
-/** TODO comment
- *
+/** Initialize filesystem and read all needed data.
+ *
+ * @param fs				filesystem instance to be initialized
+ * @param service_id		identifier if device with the filesystem
+ * @return					error code
  */
 int ext4_filesystem_init(ext4_filesystem_t *fs, service_id_t service_id)
@@ -50,4 +53,5 @@
 	fs->device = service_id;
 
+	// Initialize block library (4096 is size of communication channel)
 	rc = block_init(EXCHANGE_SERIALIZE, fs->device, 4096);
 	if (rc != EOK) {
@@ -55,5 +59,5 @@
 	}
 
-	/* Read superblock from device */
+	// Read superblock from device to memory
 	ext4_superblock_t *temp_superblock;
 	rc = ext4_superblock_read_direct(fs->device, &temp_superblock);
@@ -63,5 +67,5 @@
 	}
 
-	/* Read block size from superblock and check */
+	// Read block size from superblock and check
 	uint32_t block_size = ext4_superblock_get_block_size(temp_superblock);
 	if (block_size > EXT4_MAX_BLOCK_SIZE) {
@@ -70,5 +74,5 @@
 	}
 
-	/* Initialize block caching */
+	// Initialize block caching by libblock
 	rc = block_cache_init(service_id, block_size, 0, CACHE_MODE_WT);
 	if (rc != EOK) {
@@ -77,4 +81,5 @@
 	}
 
+	// Compute limits for indirect block levels
 	uint32_t block_ids_per_block = block_size / sizeof(uint32_t);
 	fs->inode_block_limits[0] = EXT4_INODE_DIRECT_BLOCK_COUNT;
@@ -87,5 +92,5 @@
 	}
 
-	/* Return loaded superblock */
+	// Return loaded superblock
 	fs->superblock = temp_superblock;
 
@@ -93,6 +98,9 @@
 }
 
-/** TODO comment
- *
+/** Destroy filesystem instance (used by unmount operation).
+ *
+ * @param fs		filesystem to be destroyed
+ * @param write_sb	flag if superblock should be written to device
+ * @return			error code
  */
 int ext4_filesystem_fini(ext4_filesystem_t *fs, bool write_sb)
@@ -100,9 +108,13 @@
 	int rc = EOK;
 
+	// If needed, write the superblock to the device
 	if (write_sb) {
 		rc = ext4_superblock_write_direct(fs->device, fs->superblock);
 	}
 
+	// Release memory space for superblock
 	free(fs->superblock);
+
+	// Finish work with block library
 	block_fini(fs->device);
 
@@ -110,6 +122,10 @@
 }
 
-/** TODO comment
- *
+/** Check sanity of the filesystem.
+ *
+ * Main is the check of the superblock structure.
+ *
+ * @param fs		filesystem to be checked
+ * @return			error code
  */
 int ext4_filesystem_check_sanity(ext4_filesystem_t *fs)
@@ -117,4 +133,5 @@
 	int rc;
 
+	// Check superblock
 	rc = ext4_superblock_check_sanity(fs->superblock);
 	if (rc != EOK) {
@@ -125,35 +142,50 @@
 }
 
-/** TODO comment
- *
- */
-int ext4_filesystem_check_features(ext4_filesystem_t *fs, bool *o_read_only)
-{
-	/* Feature flags are present in rev 1 and later */
+/** Check filesystem's features, if supported by this driver
+ *
+ * Function can return EOK and set read_only flag. It mean's that
+ * there are some not-supported features, that can cause problems
+ * during some write operations.
+ *
+ * @param fs			filesystem to be checked
+ * @param read_only		flag if filesystem should be mounted only for reading
+ * @return				error code
+ */
+int ext4_filesystem_check_features(ext4_filesystem_t *fs, bool *read_only)
+{
+	// Feature flags are present only in higher revisions
 	if (ext4_superblock_get_rev_level(fs->superblock) == 0) {
-		*o_read_only = false;
+		*read_only = false;
 		return EOK;
 	}
 
+	// Check incompatible features - if filesystem has some,
+	// volume can't be mounted
 	uint32_t incompatible_features;
 	incompatible_features = ext4_superblock_get_features_incompatible(fs->superblock);
 	incompatible_features &= ~EXT4_FEATURE_INCOMPAT_SUPP;
 	if (incompatible_features > 0) {
-		*o_read_only = true;
 		return ENOTSUP;
 	}
 
+	// Check read-only features, if filesystem has some,
+	// volume can be mount only in read-only mode
 	uint32_t compatible_read_only;
 	compatible_read_only = ext4_superblock_get_features_read_only(fs->superblock);
 	compatible_read_only &= ~EXT4_FEATURE_RO_COMPAT_SUPP;
 	if (compatible_read_only > 0) {
-		*o_read_only = true;
-	}
-
-	return EOK;
-}
-
-/** TODO comment
- *
+		*read_only = true;
+		return EOK;
+	}
+
+	return EOK;
+}
+
+/** Get reference to block group specified by index.
+ *
+ * @param fs		filesystem to find block group on
+ * @param bgid		index of block group to load
+ * @oaram ref		output pointer for reference
+ * @return			error code
  */
 int ext4_filesystem_get_block_group_ref(ext4_filesystem_t *fs, uint32_t bgid,
@@ -162,4 +194,5 @@
 	int rc;
 
+	// Allocate memory for new structure
 	ext4_block_group_ref_t *newref = malloc(sizeof(ext4_block_group_ref_t));
 	if (newref == NULL) {
@@ -167,14 +200,16 @@
 	}
 
+	// Compute number of descriptors, that fits in one data block
 	uint32_t descriptors_per_block = ext4_superblock_get_block_size(fs->superblock)
 	    / ext4_superblock_get_desc_size(fs->superblock);
 
-	/* Block group descriptor table starts at the next block after superblock */
+	// Block group descriptor table starts at the next block after superblock
 	aoff64_t block_id = ext4_superblock_get_first_data_block(fs->superblock) + 1;
 
-	/* Find the block containing the descriptor we are looking for */
+	// Find the block containing the descriptor we are looking for
 	block_id += bgid / descriptors_per_block;
 	uint32_t offset = (bgid % descriptors_per_block) * ext4_superblock_get_desc_size(fs->superblock);
 
+	// Load block with descriptors
 	rc = block_get(&newref->block, fs->device, block_id, 0);
 	if (rc != EOK) {
@@ -183,4 +218,5 @@
 	}
 
+	// Inititialize in-memory representation
 	newref->block_group = newref->block->data + offset;
 	newref->fs = fs;
@@ -228,6 +264,8 @@
 }
 
-/** TODO comment
- *
+/** Put reference to block group.
+ *
+ * @oaram ref		pointer for reference to be put back
+ * @return			error code
  */
 int ext4_filesystem_put_block_group_ref(ext4_block_group_ref_t *ref)
@@ -235,13 +273,17 @@
 	int rc;
 
+	// Check if reference modified
 	if (ref->dirty) {
+
+		// Compute new checksum of block group
 		uint16_t checksum = ext4_filesystem_bg_checksum(
 				ref->fs->superblock, ref->index, ref->block_group);
-
 		ext4_block_group_set_checksum(ref->block_group, checksum);
 
+		// Mark block dirty for writing changes to physical device
 		ref->block->dirty = true;
 	}
 
+	// Put back block, that contains block group descriptor
 	rc = block_put(ref->block);
 	free(ref);
@@ -250,6 +292,10 @@
 }
 
-/** TODO comment
- *
+/** Get reference to i-node specified by index.
+ *
+ * @param fs		filesystem to find i-node on
+ * @param index		index of i-node to load
+ * @oaram ref		output pointer for reference
+ * @return			error code
  */
 int ext4_filesystem_get_inode_ref(ext4_filesystem_t *fs, uint32_t index,
@@ -258,4 +304,5 @@
 	int rc;
 
+	// Allocate memory for new structure
 	ext4_inode_ref_t *newref = malloc(sizeof(ext4_inode_ref_t));
 	if (newref == NULL) {
@@ -263,8 +310,10 @@
 	}
 
+	// Compute number of i-nodes, that fits in one data block
 	uint32_t inodes_per_group =
 			ext4_superblock_get_inodes_per_group(fs->superblock);
 
-	/* inode numbers are 1-based, but it is simpler to work with 0-based
+	/*
+	 * inode numbers are 1-based, but it is simpler to work with 0-based
 	 * when computing indices
 	 */
@@ -273,4 +322,5 @@
 	uint32_t offset_in_group = index % inodes_per_group;
 
+	// Load block group, where i-node is located
 	ext4_block_group_ref_t *bg_ref;
 	rc = ext4_filesystem_get_block_group_ref(fs, block_group, &bg_ref);
@@ -280,7 +330,9 @@
 	}
 
+	// Load block address, where i-node table is located
 	uint32_t inode_table_start = ext4_block_group_get_inode_table_first_block(
 	    bg_ref->block_group, fs->superblock);
 
+	// Put back block group reference (not needed more)
 	rc = ext4_filesystem_put_block_group_ref(bg_ref);
 	if (rc != EOK) {
@@ -289,8 +341,10 @@
 	}
 
+	// Compute position of i-node in the block group
 	uint16_t inode_size = ext4_superblock_get_inode_size(fs->superblock);
 	uint32_t block_size = ext4_superblock_get_block_size(fs->superblock);
 	uint32_t byte_offset_in_group = offset_in_group * inode_size;
 
+	// Compute block address
 	aoff64_t block_id = inode_table_start + (byte_offset_in_group / block_size);
 	rc = block_get(&newref->block, fs->device, block_id, 0);
@@ -300,9 +354,9 @@
 	}
 
+	// Compute position of i-node in the data block
 	uint32_t offset_in_block = byte_offset_in_group % block_size;
 	newref->inode = newref->block->data + offset_in_block;
-	/* we decremented index above, but need to store the original value
-	 * in the reference
-	 */
+
+	// We need to store the original value of index in the reference
 	newref->index = index + 1;
 	newref->fs = fs;
Index: uspace/lib/ext4/libext4_inode.c
===================================================================
--- uspace/lib/ext4/libext4_inode.c	(revision 3169f3b05c4e156e67d8e0b3921114e2ac93e5ba)
+++ uspace/lib/ext4/libext4_inode.c	(revision 5b267478f63f99045448c9c28c60d56b0bb252a4)
@@ -188,6 +188,8 @@
 }
 
-/** TODO comment
- *
+/** Get time, when i-node was deleted.
+ *
+ * @param inode		i-node
+ * @return			time of the delete action (POSIX)
  */
 uint32_t ext4_inode_get_deletion_time(ext4_inode_t *inode)
@@ -196,6 +198,8 @@
 }
 
-/** TODO comment
- *
+/** Set time, when i-node was deleted.
+ *
+ * @param inode		i-node
+ * @param time		time of the delete action (POSIX)
  */
 void ext4_inode_set_deletion_time(ext4_inode_t *inode, uint32_t time)
Index: uspace/lib/ext4/libext4_superblock.c
===================================================================
--- uspace/lib/ext4/libext4_superblock.c	(revision 3169f3b05c4e156e67d8e0b3921114e2ac93e5ba)
+++ uspace/lib/ext4/libext4_superblock.c	(revision 5b267478f63f99045448c9c28c60d56b0bb252a4)
@@ -964,6 +964,11 @@
 }
 
-/** TODO comment
- *
+/** Check sanity of the superblock.
+ *
+ * This check is performed at mount time.
+ * Checks are described by one-line comments in the code.
+ *
+ * @param sb		superblock to check
+ * @return			error code
  */
 int ext4_superblock_check_sanity(ext4_superblock_t *sb)
