Lines Matching refs:temp
94 struct dentry *temp;
117 for (temp = direntry; !IS_ROOT(temp);) {
118 namelen += (1 + temp->d_name.len);
119 temp = temp->d_parent;
120 if (temp == NULL) {
133 for (temp = direntry; !IS_ROOT(temp);) {
134 spin_lock(&temp->d_lock);
135 namelen -= 1 + temp->d_name.len;
137 spin_unlock(&temp->d_lock);
141 strncpy(full_path + namelen + 1, temp->d_name.name,
142 temp->d_name.len);
145 spin_unlock(&temp->d_lock);
146 temp = temp->d_parent;
147 if (temp == NULL) {