Index: uspace/srv/fs/devfs/devfs.c
===================================================================
--- uspace/srv/fs/devfs/devfs.c	(revision 8810c637dd169b6a4102dd564f3f7db7f01d685a)
+++ uspace/srv/fs/devfs/devfs.c	(revision 5643a04ed018e70cbddfdc09c2514f7d18079d99)
@@ -51,5 +51,5 @@
 
 static vfs_info_t devfs_vfs_info = {
-	.name = "devfs",
+	.name = NAME,
 };
 
Index: uspace/srv/fs/fat/fat.c
===================================================================
--- uspace/srv/fs/fat/fat.c	(revision 8810c637dd169b6a4102dd564f3f7db7f01d685a)
+++ uspace/srv/fs/fat/fat.c	(revision 5643a04ed018e70cbddfdc09c2514f7d18079d99)
@@ -47,7 +47,8 @@
 #include "../../vfs/vfs.h"
 
+#define NAME	"fat"
 
 vfs_info_t fat_vfs_info = {
-	.name = "fat",
+	.name = NAME,
 };
 
@@ -83,5 +84,5 @@
 	}
 	
-	dprintf("VFS-FAT connection established.\n");
+	dprintf(NAME ": connection opened\n");
 	while (1) {
 		ipc_callid_t callid;
@@ -137,5 +138,5 @@
 	int rc;
 
-	printf("fat: HelenOS FAT file system server.\n");
+	printf(NAME ": HelenOS FAT file system server\n");
 
 	rc = fat_idx_init();
@@ -145,5 +146,5 @@
 	vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0);
 	if (vfs_phone < EOK) {
-		printf("fat: failed to connect to VFS\n");
+		printf(NAME ": failed to connect to VFS\n");
 		return -1;
 	}
@@ -155,7 +156,5 @@
 	}
 	
-	dprintf("FAT filesystem registered, fs_handle=%d.\n",
-	    fat_reg.fs_handle);
-
+	printf(NAME ": Accepting connections\n");
 	async_manager();
 	/* not reached */
@@ -163,5 +162,5 @@
 
 err:
-	printf("Failed to register the FAT file system (%d)\n", rc);
+	printf(NAME ": Failed to register file system (%d)\n", rc);
 	return rc;
 }
Index: uspace/srv/fs/tmpfs/tmpfs.c
===================================================================
--- uspace/srv/fs/tmpfs/tmpfs.c	(revision 8810c637dd169b6a4102dd564f3f7db7f01d685a)
+++ uspace/srv/fs/tmpfs/tmpfs.c	(revision 5643a04ed018e70cbddfdc09c2514f7d18079d99)
@@ -55,5 +55,5 @@
 
 vfs_info_t tmpfs_vfs_info = {
-	.name = "tmpfs",
+	.name = NAME,
 };
 
@@ -90,5 +90,5 @@
 	}
 	
-	dprintf("VFS-TMPFS connection established.\n");
+	dprintf(NAME ": connection opened\n");
 	while (1) {
 		ipc_callid_t callid;
