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()
330 if (collected[name_len - 1] != '\0') { in do_name()
332 (int)name_len, collected); in do_name()
337 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
341 clean_path(collected, mode); in do_name()
348 wfile = filp_open(collected, openflags, mode); in do_name()
360 init_mkdir(collected, mode); in do_name()
361 init_chown(collected, uid, gid, 0); in do_name()
362 init_chmod(collected, mode); in do_name()
363 dir_add(collected, mtime); in do_name()
367 init_mknod(collected, mode, rdev); in do_name()
368 init_chown(collected, uid, gid, 0); in do_name()
369 init_chmod(collected, mode); in do_name()
370 do_utime(collected, mtime); in do_name()
402 if (collected[name_len - 1] != '\0') { in do_symlink()
404 (int)name_len, collected); in do_symlink()
408 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
409 clean_path(collected, 0); in do_symlink()
410 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
411 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
412 do_utime(collected, mtime); in do_symlink()