Home
last modified time | relevance | path

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

/fs/ncpfs/
Dioctl.c641 void* newname; in __ncp_ioctl() local
663 newname = kmalloc(user.object_name_len, GFP_USER); in __ncp_ioctl()
664 if (!newname) in __ncp_ioctl()
666 if (copy_from_user(newname, user.object_name, user.object_name_len)) { in __ncp_ioctl()
667 kfree(newname); in __ncp_ioctl()
671 newname = NULL; in __ncp_ioctl()
682 server->auth.object_name = newname; in __ncp_ioctl()
/fs/
Dnamei.c2332 int, newdfd, const char __user *, newname) in SYSCALL_DEFINE3() argument
2344 error = user_path_parent(newdfd, newname, &nd, &to); in SYSCALL_DEFINE3()
2373 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname) in SYSCALL_DEFINE2() argument
2375 return sys_symlinkat(oldname, AT_FDCWD, newname); in SYSCALL_DEFINE2()
2426 int, newdfd, const char __user *, newname, int, flags) in SYSCALL_DEFINE5() argument
2443 error = user_path_parent(newdfd, newname, &nd, &to); in SYSCALL_DEFINE5()
2475 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname) in SYSCALL_DEFINE2() argument
2477 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0); in SYSCALL_DEFINE2()
2627 int, newdfd, const char __user *, newname) in SYSCALL_DEFINE4() argument
2641 error = user_path_parent(newdfd, newname, &newnd, &to); in SYSCALL_DEFINE4()
[all …]
/fs/nfs/
Dnfs4xdr.c1213 …e(struct xdr_stream *xdr, const struct qstr *oldname, const struct qstr *newname, struct compound_… in encode_rename() argument
1222 RESERVE_SPACE(4 + newname->len); in encode_rename()
1223 WRITE32(newname->len); in encode_rename()
1224 WRITEMEM(newname->name, newname->len); in encode_rename()