Index: uspace/srv/fs/fat/fat_ops.c
===================================================================
--- uspace/srv/fs/fat/fat_ops.c	(revision 32fb10edc2232e2616b6f6bbc068569cffca59f1)
+++ uspace/srv/fs/fat/fat_ops.c	(revision 06901c6b6ff445521bd4b5765646b3ceb0d9e210)
@@ -275,4 +275,9 @@
 
 	return node;
+}
+
+static void fat_node_put(void *node)
+{
+	/* TODO */
 }
 
@@ -415,4 +420,5 @@
 	.match = fat_match,
 	.node_get = fat_node_get,
+	.node_put = fat_node_put,
 	.create = NULL,
 	.destroy = NULL,
Index: uspace/srv/fs/tmpfs/tmpfs_ops.c
===================================================================
--- uspace/srv/fs/tmpfs/tmpfs_ops.c	(revision 32fb10edc2232e2616b6f6bbc068569cffca59f1)
+++ uspace/srv/fs/tmpfs/tmpfs_ops.c	(revision 06901c6b6ff445521bd4b5765646b3ceb0d9e210)
@@ -72,4 +72,5 @@
 static void *tmpfs_match(void *, const char *);
 static void *tmpfs_node_get(dev_handle_t, fs_index_t, fs_index_t);
+static void tmpfs_node_put(void *);
 static void *tmpfs_create_node(int);
 static bool tmpfs_link_node(void *, void *, const char *);
@@ -122,4 +123,5 @@
 	.match = tmpfs_match,
 	.node_get = tmpfs_node_get,
+	.node_put = tmpfs_node_put,
 	.create = tmpfs_create_node,
 	.destroy = tmpfs_destroy_node,
@@ -274,4 +276,9 @@
 		return NULL;
 	return hash_table_get_instance(lnk, tmpfs_dentry_t, dh_link); 
+}
+
+void tmpfs_node_put(void *node)
+{
+	/* nothing to do */
 }
 
