Update documentation, fix EXT2 inode selection bug
diff --git a/include/kernel/vfs.h b/include/kernel/vfs.h
index 40a8e87..e7cf8d9 100644
--- a/include/kernel/vfs.h
+++ b/include/kernel/vfs.h
@@ -31,7 +31,8 @@
 
 struct fs_dirent
 {
-	char name[128];
+	// EXT2 supports up to 256 byte file names, so we will do the same
+	char name[256];
 	uint inode;
 };