Lines Matching refs:collected
218 static __initdata char *collected; variable
225 collected = victim; in read_into()
229 collect = collected = buf; in read_into()
260 if (memcmp(collected, "070707", 6)==0) { in do_header()
264 if (memcmp(collected, "070701", 6)) { in do_header()
268 parse_header(collected); in do_header()
277 collect = collected = symlink_buf; in do_header()
325 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
327 clean_path(collected, 0); in maybe_link()
328 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()
341 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
345 clean_path(collected, mode); in do_name()
352 wfile = filp_open(collected, openflags, mode); in do_name()
364 init_mkdir(collected, mode); in do_name()
365 init_chown(collected, uid, gid, 0); in do_name()
366 init_chmod(collected, mode); in do_name()
367 dir_add(collected, mtime); in do_name()
371 init_mknod(collected, mode, rdev); in do_name()
372 init_chown(collected, uid, gid, 0); in do_name()
373 init_chmod(collected, mode); in do_name()
374 do_utime(collected, mtime); in do_name()
406 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
407 clean_path(collected, 0); in do_symlink()
408 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
409 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
410 do_utime(collected, mtime); in do_symlink()