Index: uspace/srv/fs/minixfs/mfs.c
===================================================================
--- uspace/srv/fs/minixfs/mfs.c	(revision 57640e7ba2a810aff25d34932f60581cb9452184)
+++ uspace/srv/fs/minixfs/mfs.c	(revision 741368349972e65632e9ffcf2cbacbfc35ef503a)
@@ -46,6 +46,5 @@
 #include <stdio.h>
 #include <libfs.h>
-#include "../../vfs/vfs.h"
-#include "mfs_const.h"
+#include "mfs.h"
 #include "mfs_super.h"
 
Index: uspace/srv/fs/minixfs/mfs_const.h
===================================================================
--- uspace/srv/fs/minixfs/mfs_const.h	(revision 57640e7ba2a810aff25d34932f60581cb9452184)
+++ uspace/srv/fs/minixfs/mfs_const.h	(revision 741368349972e65632e9ffcf2cbacbfc35ef503a)
@@ -38,4 +38,7 @@
 #include <bool.h>
 
+#define MFS_MAX_BLOCK_SIZE	4096
+#define MFS_MIN_BLOCK_SIZE	1024
+
 #define MFS_ROOT_INO		1
 #define MFS_SUPER_BLOCK		0
Index: uspace/srv/fs/minixfs/mfs_super.c
===================================================================
--- uspace/srv/fs/minixfs/mfs_super.c	(revision 57640e7ba2a810aff25d34932f60581cb9452184)
+++ uspace/srv/fs/minixfs/mfs_super.c	(revision 741368349972e65632e9ffcf2cbacbfc35ef503a)
@@ -36,4 +36,5 @@
 #include <errno.h>
 #include <str.h>
+#include "mfs.h"
 #include "mfs_super.h"
 #include "mfs_utils.h"
Index: uspace/srv/fs/minixfs/mfs_super.h
===================================================================
--- uspace/srv/fs/minixfs/mfs_super.h	(revision 57640e7ba2a810aff25d34932f60581cb9452184)
+++ uspace/srv/fs/minixfs/mfs_super.h	(revision 741368349972e65632e9ffcf2cbacbfc35ef503a)
@@ -35,5 +35,4 @@
 
 #include "mfs_const.h"
-#include "../../vfs/vfs.h"
 
 #define MFS_MAGIC_V1		0x137F
@@ -46,4 +45,5 @@
 #define MFS_MAGIC_V3R		0x5A4D
 
+/*V3 superblock data on disk*/
 struct mfs_superblock {
 	/*Total number of inodes on the device*/
@@ -66,7 +66,4 @@
 	/*Magic number used to recognize MinixFS and to detect on-disk endianness*/
 	int16_t		s_magic;
-
-	/* The following fields are valid only for MinixFS V3 */
-
 	int16_t		s_pad2;
 	/*Filesystem block size expressed in bytes*/
@@ -82,6 +79,4 @@
 } mfs_version_t;
 
-void mfs_mounted(ipc_callid_t rid, ipc_call_t *request);
-
 #endif
 
