Lines Matching full:collected
205 static __initdata char *collected; variable
212 collected = victim; in read_into()
216 collect = collected = buf; in read_into()
247 if (memcmp(collected, "070707", 6)==0) { in do_header()
251 if (memcmp(collected, "070701", 6)) { in do_header()
255 parse_header(collected); in do_header()
264 collect = collected = symlink_buf; in do_header()
312 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
314 clean_path(collected, 0); in maybe_link()
315 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()
328 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
332 clean_path(collected, mode); in do_name()
339 wfile = filp_open(collected, openflags, mode); in do_name()
351 init_mkdir(collected, mode); in do_name()
352 init_chown(collected, uid, gid, 0); in do_name()
353 init_chmod(collected, mode); in do_name()
354 dir_add(collected, mtime); in do_name()
358 init_mknod(collected, mode, rdev); in do_name()
359 init_chown(collected, uid, gid, 0); in do_name()
360 init_chmod(collected, mode); in do_name()
361 do_utime(collected, mtime); in do_name()
393 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
394 clean_path(collected, 0); in do_symlink()
395 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
396 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
397 do_utime(collected, mtime); in do_symlink()