Index: uspace/srv/fs/ext4fs/ext4fs_ops.c
===================================================================
--- uspace/srv/fs/ext4fs/ext4fs_ops.c	(revision b6d7b7cfca4aba1caed2f67dc29e0d9a0f78f656)
+++ uspace/srv/fs/ext4fs/ext4fs_ops.c	(revision 1df3f57ad5e6e2b60b86629bc1c999a582aca127)
@@ -556,8 +556,8 @@
 	}
 
-	// TODO set real deletion time when it will be supported
+	// TODO set real deletion time when it will be supported,
+	// temporary set fake time
 //	time_t now = time(NULL);
-	time_t now = ext4_inode_get_change_inode_time(inode_ref->inode);
-	ext4_inode_set_deletion_time(inode_ref->inode, (uint32_t)now);
+	ext4_inode_set_deletion_time(inode_ref->inode, 12345678);
 	inode_ref->dirty = true;
 
@@ -896,7 +896,7 @@
  * @param service_id	identifier of device
  * @param opts		mount options
- * @param index		TODO
- * @param size		TODO
- * @param lnkcnt	TODO
+ * @param index		output value - index of root node
+ * @param size		output value - size of root node
+ * @param lnkcnt	output value - link count of root node
  * @return		error code
  */
@@ -969,6 +969,8 @@
 	fibril_mutex_unlock(&instance_list_mutex);
 
+	ext4fs_node_t *enode = EXT4FS_NODE(root_node);
+
 	*index = EXT4_INODE_ROOT_INDEX;
-	*size = 0;
+	*size = ext4_inode_get_size(fs->superblock, enode->inode_ref->inode);
 	*lnkcnt = 1;
 
@@ -1275,6 +1277,6 @@
  * @param index		i-node number of file
  * @param pos		position in file to start reading from
- * @param wbytes	TODO
- * @param nsize		TODO
+ * @param wbytes	output value - real number of written bytes
+ * @param nsize		output value - new size of i-node
  * @return 		error code
  */
