Lines Matching refs:collected
206 static __initdata char *collected; variable
213 collected = victim; in read_into()
217 collect = collected = buf; in read_into()
248 if (memcmp(collected, "070707", 6)==0) { in do_header()
252 if (memcmp(collected, "070701", 6)) { in do_header()
256 parse_header(collected); in do_header()
265 collect = collected = symlink_buf; in do_header()
313 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
315 clean_path(collected, 0); in maybe_link()
316 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()
329 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
333 clean_path(collected, mode); in do_name()
340 wfile = filp_open(collected, openflags, mode); in do_name()
352 init_mkdir(collected, mode); in do_name()
353 init_chown(collected, uid, gid, 0); in do_name()
354 init_chmod(collected, mode); in do_name()
355 dir_add(collected, mtime); in do_name()
359 init_mknod(collected, mode, rdev); in do_name()
360 init_chown(collected, uid, gid, 0); in do_name()
361 init_chmod(collected, mode); in do_name()
362 do_utime(collected, mtime); in do_name()
394 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
395 clean_path(collected, 0); in do_symlink()
396 init_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
397 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW); in do_symlink()
398 do_utime(collected, mtime); in do_symlink()