Browse Source

restore_nameidata(): no need to clear now->stack

microoptimization: in all callers *now is in the frame we are about to leave.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Al Viro 9 năm trước cách đây
mục cha
commit
e1a63bbc40
1 tập tin đã thay đổi với 1 bổ sung3 xóa
  1. 1 3
      fs/namei.c

+ 1 - 3
fs/namei.c

@@ -534,10 +534,8 @@ static void restore_nameidata(void)
 	current->nameidata = old;
 	if (old)
 		old->total_link_count = now->total_link_count;
-	if (now->stack != now->internal) {
+	if (now->stack != now->internal)
 		kfree(now->stack);
-		now->stack = now->internal;
-	}
 }
 
 static int __nd_alloc_stack(struct nameidata *nd)