Lines Matching refs:collected
241 static __initdata char *collected; variable
248 collected = victim; in read_into()
252 collect = collected = buf; in read_into()
283 if (!memcmp(collected, "070701", 6)) { in do_header()
285 } else if (!memcmp(collected, "070702", 6)) { in do_header()
288 if (memcmp(collected, "070707", 6) == 0) in do_header()
294 parse_header(collected); in do_header()
303 collect = collected = symlink_buf; in do_header()
351 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
353 clean_path(collected, 0); in maybe_link()
354 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()
367 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
371 clean_path(collected, mode); in do_name()
378 wfile = filp_open(collected, openflags, mode); in do_name()
391 init_mkdir(collected, mode); in do_name()
392 init_chown(collected, uid, gid, 0); in do_name()
393 init_chmod(collected, mode); in do_name()
394 dir_add(collected, mtime); in do_name()
398 init_mknod(collected, mode, rdev); in do_name()
399 init_chown(collected, uid, gid, 0); in do_name()
400 init_chmod(collected, mode); in do_name()
401 do_utime(collected, mtime); in do_name()
431 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
432 clean_path(collected, 0); in do_symlink()
433 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
434 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
435 do_utime(collected, mtime); in do_symlink()