static int link_path_walk(const char *name, struct nameidata *nd)
 {
        int err;
+       int orig_depth = nd->depth;
 
        while (*name=='/')
                name++;
        }
        terminate_walk(nd);
 Err:
-       while (unlikely(nd->depth > 1))
+       while (unlikely(nd->depth > orig_depth))
                put_link(nd);
        return err;
 OK:
-       if (unlikely(nd->depth > 1)) {
+       if (unlikely(nd->depth > orig_depth)) {
                name = nd->stack[nd->depth - 1].name;
                err = walk_component(nd, LOOKUP_FOLLOW);
                put_link(nd);
        return -ECHILD;
 done:
        current->total_link_count = 0;
-       nd->depth++;
-       retval = link_path_walk(s, nd);
-       nd->depth--;
-       return retval;
+       return link_path_walk(s, nd);
 }
 
 static void path_cleanup(struct nameidata *nd)