Index: uspace/app/trace/trace.c
===================================================================
--- uspace/app/trace/trace.c	(revision c8404d4baf23fe1c3c923857794f7785abae5e7b)
+++ uspace/app/trace/trace.c	(revision a5facfb86a78af274a63eecc25079a65df2b5e7f)
@@ -771,20 +771,26 @@
 
 	p = proto_new("vfs");
+	o = oper_new("open", 2, arg_def, V_INT_ERRNO, 0, resp_def);
+	proto_add_oper(p, VFS_IN_OPEN, o);
+	o = oper_new("open_node", 4, arg_def, V_INT_ERRNO, 0, resp_def);
+	proto_add_oper(p, VFS_IN_OPEN_NODE, o);
 	o = oper_new("read", 1, arg_def, V_ERRNO, 1, resp_def);
 	proto_add_oper(p, VFS_IN_READ, o);
 	o = oper_new("write", 1, arg_def, V_ERRNO, 1, resp_def);
 	proto_add_oper(p, VFS_IN_WRITE, o);
+	o = oper_new("seek", 3, arg_def, V_ERRNO, 0, resp_def);
+	proto_add_oper(p, VFS_IN_SEEK, o);
 	o = oper_new("truncate", 5, arg_def, V_ERRNO, 0, resp_def);
 	proto_add_oper(p, VFS_IN_TRUNCATE, o);
+	o = oper_new("fstat", 1, arg_def, V_ERRNO, 0, resp_def);
+	proto_add_oper(p, VFS_IN_FSTAT, o);
+	o = oper_new("close", 1, arg_def, V_ERRNO, 0, resp_def);
+	proto_add_oper(p, VFS_IN_CLOSE, o);
 	o = oper_new("mount", 2, arg_def, V_ERRNO, 0, resp_def);
 	proto_add_oper(p, VFS_IN_MOUNT, o);
 /*	o = oper_new("unmount", 0, arg_def);
 	proto_add_oper(p, VFS_IN_UNMOUNT, o);*/
-	o = oper_new("open", 2, arg_def, V_INT_ERRNO, 0, resp_def);
-	proto_add_oper(p, VFS_IN_OPEN, o);
-	o = oper_new("close", 1, arg_def, V_ERRNO, 0, resp_def);
-	proto_add_oper(p, VFS_IN_CLOSE, o);
-	o = oper_new("seek", 3, arg_def, V_ERRNO, 0, resp_def);
-	proto_add_oper(p, VFS_IN_SEEK, o);
+	o = oper_new("sync", 1, arg_def, V_ERRNO, 0, resp_def);
+	proto_add_oper(p, VFS_IN_SYNC, o);
 	o = oper_new("mkdir", 1, arg_def, V_ERRNO, 0, resp_def);
 	proto_add_oper(p, VFS_IN_MKDIR, o);
@@ -793,8 +799,14 @@
 	o = oper_new("rename", 0, arg_def, V_ERRNO, 0, resp_def);
 	proto_add_oper(p, VFS_IN_RENAME, o);
+	o = oper_new("stat", 0, arg_def, V_ERRNO, 0, resp_def);
+	proto_add_oper(p, VFS_IN_STAT, o);
 
 	proto_register(SERVICE_VFS, p);
 
 	p = proto_new("console");
+
+	o = oper_new("write", 1, arg_def, V_ERRNO, 1, resp_def);
+	proto_add_oper(p, VFS_IN_WRITE, o);
+
 	resp_def[0] = V_INTEGER; resp_def[1] = V_INTEGER;
 	resp_def[2] = V_INTEGER; resp_def[3] = V_CHAR;
