Index: uspace/srv/fs/cdfs/cdfs_ops.c
===================================================================
--- uspace/srv/fs/cdfs/cdfs_ops.c	(revision 6416ae5afd5db4eea1dd390eb1f25d4908b7387d)
+++ uspace/srv/fs/cdfs/cdfs_ops.c	(revision 4f302225f2b25aadcba779f5a36656dd5a66959e)
@@ -1119,5 +1119,5 @@
 
 static int cdfs_mounted(service_id_t service_id, const char *opts,
-    fs_index_t *index, aoff64_t *size, unsigned int *lnkcnt)
+    fs_index_t *index, aoff64_t *size)
 {
 	/* Initialize the block layer */
@@ -1176,5 +1176,4 @@
 	*index = root->index;
 	*size = root->size;
-	*lnkcnt = root->lnkcnt;
 	
 	return EOK;
Index: uspace/srv/fs/exfat/exfat_ops.c
===================================================================
--- uspace/srv/fs/exfat/exfat_ops.c	(revision 6416ae5afd5db4eea1dd390eb1f25d4908b7387d)
+++ uspace/srv/fs/exfat/exfat_ops.c	(revision 4f302225f2b25aadcba779f5a36656dd5a66959e)
@@ -1081,5 +1081,5 @@
 static int
 exfat_mounted(service_id_t service_id, const char *opts, fs_index_t *index,
-    aoff64_t *size, unsigned *linkcnt)
+    aoff64_t *size)
 {
 	int rc;
@@ -1259,5 +1259,4 @@
 	*index = rootp->idx->index;
 	*size = rootp->size;
-	*linkcnt = rootp->lnkcnt;
 	
 	return EOK;
Index: uspace/srv/fs/fat/fat_ops.c
===================================================================
--- uspace/srv/fs/fat/fat_ops.c	(revision 6416ae5afd5db4eea1dd390eb1f25d4908b7387d)
+++ uspace/srv/fs/fat/fat_ops.c	(revision 4f302225f2b25aadcba779f5a36656dd5a66959e)
@@ -956,5 +956,5 @@
 static int
 fat_mounted(service_id_t service_id, const char *opts, fs_index_t *index,
-    aoff64_t *size, unsigned *linkcnt)
+    aoff64_t *size)
 {
 	enum cache_mode cmode = CACHE_MODE_WB;
@@ -1105,5 +1105,4 @@
 	*index = ridxp->index;
 	*size = rootp->size;
-	*linkcnt = rootp->lnkcnt;
 
 	return EOK;
Index: uspace/srv/fs/locfs/locfs_ops.c
===================================================================
--- uspace/srv/fs/locfs/locfs_ops.c	(revision 6416ae5afd5db4eea1dd390eb1f25d4908b7387d)
+++ uspace/srv/fs/locfs/locfs_ops.c	(revision 4f302225f2b25aadcba779f5a36656dd5a66959e)
@@ -461,9 +461,8 @@
 
 static int locfs_mounted(service_id_t service_id, const char *opts,
-    fs_index_t *index, aoff64_t *size, unsigned *lnkcnt)
+    fs_index_t *index, aoff64_t *size)
 {
 	*index = 0;
 	*size = 0;
-	*lnkcnt = 0;
 	return EOK;
 }
Index: uspace/srv/fs/mfs/mfs_ops.c
===================================================================
--- uspace/srv/fs/mfs/mfs_ops.c	(revision 6416ae5afd5db4eea1dd390eb1f25d4908b7387d)
+++ uspace/srv/fs/mfs/mfs_ops.c	(revision 4f302225f2b25aadcba779f5a36656dd5a66959e)
@@ -296,5 +296,5 @@
 static int
 mfs_mounted(service_id_t service_id, const char *opts, fs_index_t *index,
-    aoff64_t *size, unsigned *linkcnt)
+    aoff64_t *size)
 {
 	enum cache_mode cmode;
@@ -353,5 +353,4 @@
 	*index = mroot->ino_i->index;
 	*size = mroot->ino_i->i_size;
-	*linkcnt = 1;
 
 	return mfs_node_put(fn);
Index: uspace/srv/fs/tmpfs/tmpfs_ops.c
===================================================================
--- uspace/srv/fs/tmpfs/tmpfs_ops.c	(revision 6416ae5afd5db4eea1dd390eb1f25d4908b7387d)
+++ uspace/srv/fs/tmpfs/tmpfs_ops.c	(revision 4f302225f2b25aadcba779f5a36656dd5a66959e)
@@ -427,6 +427,6 @@
 
 static int
-tmpfs_mounted(service_id_t service_id, const char *opts,
-    fs_index_t *index, aoff64_t *size, unsigned *lnkcnt)
+tmpfs_mounted(service_id_t service_id, const char *opts, fs_index_t *index,
+    aoff64_t *size)
 {
 	fs_node_t *rootfn;
@@ -454,5 +454,4 @@
 	*index = rootp->index;
 	*size = rootp->size;
-	*lnkcnt = rootp->lnkcnt;
 
 	return EOK;
Index: uspace/srv/fs/udf/udf_ops.c
===================================================================
--- uspace/srv/fs/udf/udf_ops.c	(revision 6416ae5afd5db4eea1dd390eb1f25d4908b7387d)
+++ uspace/srv/fs/udf/udf_ops.c	(revision 4f302225f2b25aadcba779f5a36656dd5a66959e)
@@ -305,5 +305,5 @@
 
 static int udf_mounted(service_id_t service_id, const char *opts,
-    fs_index_t *index, aoff64_t *size, unsigned *linkcnt)
+    fs_index_t *index, aoff64_t *size)
 {
 	enum cache_mode cmode;
@@ -411,5 +411,4 @@
 	*index = instance->volumes[DEFAULT_VOL].root_dir;
 	*size = node->data_size;
-	*linkcnt = node->link_cnt;
 	
 	return EOK;
