Lines Matching refs:collected
235 static __initdata char *collected; variable
242 collected = victim; in read_into()
246 collect = collected = buf; in read_into()
277 if (!memcmp(collected, "070701", 6)) { in do_header()
279 } else if (!memcmp(collected, "070702", 6)) { in do_header()
282 if (memcmp(collected, "070707", 6) == 0) in do_header()
288 parse_header(collected); in do_header()
297 collect = collected = symlink_buf; in do_header()
345 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
347 clean_path(collected, 0); in maybe_link()
348 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()
361 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
365 clean_path(collected, mode); in do_name()
372 wfile = filp_open(collected, openflags, mode); in do_name()
385 init_mkdir(collected, mode); in do_name()
386 init_chown(collected, uid, gid, 0); in do_name()
387 init_chmod(collected, mode); in do_name()
388 dir_add(collected, mtime); in do_name()
392 init_mknod(collected, mode, rdev); in do_name()
393 init_chown(collected, uid, gid, 0); in do_name()
394 init_chmod(collected, mode); in do_name()
395 do_utime(collected, mtime); in do_name()
425 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
426 clean_path(collected, 0); in do_symlink()
427 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
428 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
429 do_utime(collected, mtime); in do_symlink()