Home
last modified time | relevance | path

Searched refs:to_name (Results 1 – 1 of 1) sorted by relevance

/fs/hostfs/
Dhostfs_kern.c699 char *from_name, *to_name; in hostfs_link() local
704 to_name = dentry_name(to, 0); in hostfs_link()
705 if (to_name == NULL) { in hostfs_link()
709 err = link_file(to_name, from_name); in hostfs_link()
711 kfree(to_name); in hostfs_link()
811 char *from_name, *to_name; in hostfs_rename() local
816 if ((to_name = inode_dentry_name(to_ino, to)) == NULL) { in hostfs_rename()
820 err = rename_file(from_name, to_name); in hostfs_rename()
822 kfree(to_name); in hostfs_rename()