Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 25 of 28) sorted by relevance

12

/linux/fs/cifs/
A Dxattr.c103 const char *full_path; in cifs_xattr_set() local
115 if (IS_ERR(full_path)) { in cifs_xattr_set()
116 rc = PTR_ERR(full_path); in cifs_xattr_set()
144 full_path, value, size); in cifs_xattr_set()
191 size, inode, full_path, aclflags); in cifs_xattr_set()
290 const char *full_path; in cifs_xattr_get() local
302 if (IS_ERR(full_path)) { in cifs_xattr_get()
303 rc = PTR_ERR(full_path); in cifs_xattr_get()
409 const char *full_path; in cifs_listxattr() local
427 if (IS_ERR(full_path)) { in cifs_listxattr()
[all …]
A Ddir.c43 char *full_path = NULL; in cifs_build_path_to_root() local
48 return full_path; in cifs_build_path_to_root()
57 if (full_path == NULL) in cifs_build_path_to_root()
58 return full_path; in cifs_build_path_to_root()
65 return full_path; in cifs_build_path_to_root()
177 const char *full_path; in cifs_do_create() local
190 if (IS_ERR(full_path)) { in cifs_do_create()
308 oparms.path = full_path; in cifs_do_create()
574 const char *full_path; in cifs_mknod() local
593 if (IS_ERR(full_path)) { in cifs_mknod()
[all …]
A Dsmb2inode.c55 struct cifs_sb_info *cifs_sb, const char *full_path, in smb2_compound_op() argument
159 full_path); in smb2_compound_op()
273 full_path); in smb2_compound_op()
534 cifs_get_readable_path(tcon, full_path, &cfile); in smb2_query_path_info()
535 rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, in smb2_query_path_info()
543 cifs_get_readable_path(tcon, full_path, &cfile); in smb2_query_path_info()
585 cifs_get_readable_path(tcon, full_path, &cfile); in smb311_posix_query_path_info()
586 rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, in smb311_posix_query_path_info()
595 cifs_get_readable_path(tcon, full_path, &cfile); in smb311_posix_query_path_info()
712 const char *full_path, __u64 size, in smb2_set_path_size() argument
[all …]
A Dinode.c402 full_path);
998 full_path,
1070 full_path);
1138 full_path, data,
1175 full_path);
1582 const char *full_path; local
1855 const char *full_path; local
1931 const char *full_path; local
2352 const char *full_path; local
2654 const char *full_path; local
[all …]
A Dlink.c600 const char *full_path; in cifs_get_link() local
622 full_path = build_path_from_dentry(direntry, page); in cifs_get_link()
623 if (IS_ERR(full_path)) { in cifs_get_link()
627 return ERR_CAST(full_path); in cifs_get_link()
638 rc = query_mf_symlink(xid, tcon, cifs_sb, full_path, in cifs_get_link()
672 const char *full_path; in cifs_symlink() local
692 full_path = build_path_from_dentry(direntry, page); in cifs_symlink()
693 if (IS_ERR(full_path)) { in cifs_symlink()
694 rc = PTR_ERR(full_path); in cifs_symlink()
698 cifs_dbg(FYI, "Full path: %s\n", full_path); in cifs_symlink()
[all …]
A Dcifs_dfs_ref.c311 char *full_path; in cifs_dfs_do_automount() local
331 full_path = build_path_from_dentry_optional_prefix(mntpt, page, true); in cifs_dfs_do_automount()
332 if (IS_ERR(full_path)) { in cifs_dfs_do_automount()
333 mnt = ERR_CAST(full_path); in cifs_dfs_do_automount()
337 convert_delimiter(full_path, '\\'); in cifs_dfs_do_automount()
338 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path); in cifs_dfs_do_automount()
340 mnt = cifs_dfs_do_mount(mntpt, cifs_sb, full_path); in cifs_dfs_do_automount()
341 cifs_dbg(FYI, "%s: cifs_dfs_do_mount:%s , mnt:%p\n", __func__, full_path + 1, mnt); in cifs_dfs_do_automount()
A Dsmb1ops.c517 struct cifs_sb_info *cifs_sb, const char *full_path) in cifs_is_path_accessible() argument
526 rc = CIFSSMBQPathInfo(xid, tcon, full_path, file_info, in cifs_is_path_accessible()
555 rc = SMBQueryInformation(xid, tcon, full_path, data, in cifs_query_path_info()
572 oparms.path = full_path; in cifs_query_path_info()
800 oparms.path = full_path; in smb_set_file_info()
950 cifs_dbg(FYI, "%s: path: %s\n", __func__, full_path); in cifs_query_symlink()
963 rc = cifs_unix_dfs_readlink(xid, tcon, full_path, in cifs_query_symlink()
976 oparms.path = full_path; in cifs_query_symlink()
1028 const char *full_path, umode_t mode, dev_t dev) in cifs_make_node() argument
1067 rc = cifs_get_inode_info_unix(&newinode, full_path, in cifs_make_node()
[all …]
A Dreaddir.c372 const char *full_path) in _initiate_cifs_search() argument
455 const char *full_path) in initiate_cifs_search() argument
460 rc = _initiate_cifs_search(xid, file, full_path); in initiate_cifs_search()
713 struct file *file, const char *full_path, in find_cifs_entry() argument
767 rc = initiate_cifs_search(xid, file, full_path); in find_cifs_entry()
951 const char *full_path; in cifs_readdir() local
956 full_path = build_path_from_dentry(file_dentry(file), page); in cifs_readdir()
957 if (IS_ERR(full_path)) { in cifs_readdir()
958 rc = PTR_ERR(full_path); in cifs_readdir()
967 rc = initiate_cifs_search(xid, file, full_path); in cifs_readdir()
[all …]
A Dconnect.c3158 return full_path; in build_unc_path_to_root()
3263 s = full_path; in cifs_are_all_path_components_accessible()
3308 char *full_path; in is_path_remote() local
3326 kfree(full_path); in is_path_remote()
3340 kfree(full_path); in is_path_remote()
3423 char *full_path; in connect_dfs_root() local
3461 kfree(full_path); in connect_dfs_root()
3470 char *full_path; in __follow_dfs_link() local
3504 kfree(full_path); in __follow_dfs_link()
3514 char *full_path; in follow_dfs_link() local
[all …]
A Dsmb2proto.h74 const char *full_path, FILE_ALL_INFO *data,
77 const char *full_path, __u64 size,
79 extern int smb2_set_file_info(struct inode *inode, const char *full_path,
83 const char *full_path,
88 extern void smb2_mkdir_setinfo(struct inode *inode, const char *full_path,
A Dfile.c227 oparms.path = full_path; in cifs_nt_open()
526 const char *full_path; in cifs_open() local
549 if (IS_ERR(full_path)) { in cifs_open()
550 rc = PTR_ERR(full_path); in cifs_open()
706 const char *full_path; in cifs_reopen_file() local
733 if (IS_ERR(full_path)) { in cifs_reopen_file()
737 return PTR_ERR(full_path); in cifs_reopen_file()
789 oparms.path = full_path; in cifs_reopen_file()
2149 if (IS_ERR(full_path)) { in cifs_get_writable_path()
2152 return PTR_ERR(full_path); in cifs_get_writable_path()
[all …]
A Dtrace.h300 const char *full_path),
301 TP_ARGS(xid, tid, sesid, full_path),
306 __string(path, full_path)
312 __assign_str(path, full_path);
324 const char *full_path), \
325 TP_ARGS(xid, tid, sesid, full_path))
A Dcifsproto.h185 extern int cifs_posix_open(const char *full_path, struct inode **inode,
199 extern int cifs_get_inode_info(struct inode **inode, const char *full_path,
208 unsigned int xid, const char *full_path, __u32 dosattr);
209 extern int cifs_rename_pending_delete(const char *full_path,
A Dcifsfs.c760 char *full_path = NULL; in cifs_get_root() local
767 full_path = cifs_build_path_to_root(ctx, cifs_sb, in cifs_get_root()
769 if (full_path == NULL) in cifs_get_root()
772 cifs_dbg(FYI, "Get root dentry for %s\n", full_path); in cifs_get_root()
776 p = s = full_path; in cifs_get_root()
802 kfree(full_path); in cifs_get_root()
A Dmisc.c792 const char *full_path; in cifs_close_deferred_file_under_dentry() local
799 full_path = build_path_from_dentry(cfile->dentry, page); in cifs_close_deferred_file_under_dentry()
800 if (strstr(full_path, path)) { in cifs_close_deferred_file_under_dentry()
A Dsmb2ops.c1029 struct cifs_sb_info *cifs_sb, const char *full_path) in smb2_is_path_accessible() argument
1037 if ((*full_path == 0) && tcon->crfid.is_valid) in smb2_is_path_accessible()
1040 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_is_path_accessible()
1065 struct cifs_sb_info *cifs_sb, const char *full_path, in smb2_get_srv_inum() argument
3032 struct cifs_sb_info *cifs_sb, const char *full_path, in smb2_query_symlink() argument
3061 cifs_dbg(FYI, "%s: path: %s\n", __func__, full_path); in smb2_query_symlink()
3072 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_query_symlink()
3221 struct cifs_sb_info *cifs_sb, const char *full_path, in smb2_query_reparse_tag() argument
3241 cifs_dbg(FYI, "%s: path: %s\n", __func__, full_path); in smb2_query_reparse_tag()
5267 const char *full_path, umode_t mode, dev_t dev) in smb2_make_node() argument
[all …]
A Dcifsglob.h324 const char *full_path,
494 const char *full_path,
/linux/drivers/acpi/acpica/
A Dnsnames.c217 if (!full_path) { in acpi_ns_build_normalized_path()
228 ACPI_PATH_PUT8(full_path, path_size, in acpi_ns_build_normalized_path()
252 left = full_path; in acpi_ns_build_normalized_path()
253 right = full_path + length - 1; in acpi_ns_build_normalized_path()
342 char *full_path = NULL; in acpi_ns_build_prefixed_pathname() local
366 full_path = in acpi_ns_build_prefixed_pathname()
369 if (!full_path) { in acpi_ns_build_prefixed_pathname()
376 strcat(full_path, prefix_path); in acpi_ns_build_prefixed_pathname()
378 strcat(full_path, "."); in acpi_ns_build_prefixed_pathname()
383 strcat(full_path, external_path); in acpi_ns_build_prefixed_pathname()
[all …]
A Duterror.c174 char *full_path; in acpi_ut_prefixed_namespace_error() local
204 full_path = in acpi_ut_prefixed_namespace_error()
208 full_path ? full_path : "Could not get pathname", in acpi_ut_prefixed_namespace_error()
211 if (full_path) { in acpi_ut_prefixed_namespace_error()
212 ACPI_FREE(full_path); in acpi_ut_prefixed_namespace_error()
A Dacnamesp.h257 char *full_path, u32 path_size, u8 no_trailing);
/linux/drivers/block/rnbd/
A Drnbd-srv.c606 char *full_path; in rnbd_srv_get_full_path() local
610 if (!full_path) in rnbd_srv_get_full_path()
626 kfree(full_path); in rnbd_srv_get_full_path()
630 snprintf(full_path, PATH_MAX, "%s/%s", in rnbd_srv_get_full_path()
635 a = strchr(full_path, '/'); in rnbd_srv_get_full_path()
649 return full_path; in rnbd_srv_get_full_path()
702 char *full_path; in process_msg_open() local
734 if (IS_ERR(full_path)) { in process_msg_open()
735 ret = PTR_ERR(full_path); in process_msg_open()
802 kfree(full_path); in process_msg_open()
[all …]
/linux/tools/bpf/bpftool/
A Dcommon.c554 char full_path[64]; in read_sysfs_netdev_hex_int() local
556 snprintf(full_path, sizeof(full_path), "/sys/class/net/%s/device/%s", in read_sysfs_netdev_hex_int()
559 return read_sysfs_hex_int(full_path); in read_sysfs_netdev_hex_int()
/linux/fs/btrfs/
A Dsend.c2746 struct fs_path *full_path; member
2754 ref->full_path = path; in set_ref_path()
2790 new->full_path = NULL; in dup_ref()
2802 fs_path_free(cur->full_path); in __free_recorded_refs()
3793 fs_path_free(ref->full_path); in update_ref_path()
3849 fs_path_reset(ref->full_path); in refresh_ref_path()
3859 set_ref_path(ref, ref->full_path); in refresh_ref_path()
4006 cur->full_path); in process_recorded_refs()
4163 cur->full_path); in process_recorded_refs()
4166 cur->full_path); in process_recorded_refs()
[all …]
/linux/tools/perf/util/
A Dannotate.h85 full_path, member
/linux/tools/perf/
A Dbuiltin-annotate.c517 OPT_BOOLEAN('P', "full-paths", &annotate.opts.full_path, in cmd_annotate()

Completed in 91 milliseconds

12