Lines Matching refs:collected
189 static __initdata char *collected; variable
196 collected = victim; in read_into()
200 collect = collected = buf; in read_into()
231 if (memcmp(collected, "070707", 6)==0) { in do_header()
235 if (memcmp(collected, "070701", 6)) { in do_header()
239 parse_header(collected); in do_header()
248 collect = collected = symlink_buf; in do_header()
283 char *old = find_link(major, minor, ino, mode, collected); in maybe_link()
285 return (sys_link(old, collected) < 0) ? -1 : 1; in maybe_link()
308 if (strcmp(collected, "TRAILER!!!") == 0) { in do_name()
312 clean_path(collected, mode); in do_name()
319 wfd = sys_open(collected, openflags, mode); in do_name()
326 vcollected = kstrdup(collected, GFP_KERNEL); in do_name()
331 sys_mkdir(collected, mode); in do_name()
332 sys_chown(collected, uid, gid); in do_name()
333 sys_chmod(collected, mode); in do_name()
334 dir_add(collected, mtime); in do_name()
338 sys_mknod(collected, mode, rdev); in do_name()
339 sys_chown(collected, uid, gid); in do_name()
340 sys_chmod(collected, mode); in do_name()
341 do_utime(collected, mtime); in do_name()
367 collected[N_ALIGN(name_len) + body_len] = '\0'; in do_symlink()
368 clean_path(collected, 0); in do_symlink()
369 sys_symlink(collected + N_ALIGN(name_len), collected); in do_symlink()
370 sys_lchown(collected, uid, gid); in do_symlink()
371 do_utime(collected, mtime); in do_symlink()