Index: uspace/lib/c/include/ipc/vfs.h
===================================================================
--- uspace/lib/c/include/ipc/vfs.h	(revision 4809715329144b78f536fee6fdaa4f2e6a1fc678)
+++ uspace/lib/c/include/ipc/vfs.h	(revision ef4cf62f093a143a195a846c005959ebeedd016d)
@@ -157,5 +157,5 @@
  * VFS_UNLINK.
  */
-#define L_UNLINK		128
+#define L_UNLINK		64
 
 /**
@@ -165,5 +165,5 @@
  * client.
  */
-#define L_OPEN			256
+#define L_OPEN			128
 
 /*
@@ -171,17 +171,10 @@
  */
 enum {
-	/**
-	 * WALK_PARTIAL requests that if the whole path cannot be traversed,
-	 * the walk() operation should return the last visited file, along
-	 * with an indication of how many directories have been traversed.
-	 */
-	//WALK_PARTIAL = (1 << 0),
+	WALK_MAY_CREATE = (1 << 0),
+	WALK_MUST_CREATE = (1 << 1),
 	
-	WALK_MAY_CREATE = (1 << 1),
-	WALK_MUST_CREATE = (1 << 2),
-	
-	WALK_REGULAR = (1 << 3),
-	WALK_DIRECTORY = (1 << 4),
-	WALK_MOUNT_POINT = (1 << 5),
+	WALK_REGULAR = (1 << 2),
+	WALK_DIRECTORY = (1 << 3),
+	WALK_MOUNT_POINT = (1 << 4),
 	
 	WALK_ALL_FLAGS = WALK_MAY_CREATE | WALK_MUST_CREATE | WALK_REGULAR | WALK_DIRECTORY,
