Searched refs:resolved_path (Results 1 – 3 of 3) sorted by relevance
/linux-6.14.4/fs/smb/client/ |
D | reparse.c | 255 char *resolved_path; in detect_directory_symlink_target() local 302 resolved_path = kzalloc(full_path_len + symname_len + 1, GFP_KERNEL); in detect_directory_symlink_target() 303 if (!resolved_path) { in detect_directory_symlink_target() 312 memcpy(resolved_path, full_path, full_path_len+1); in detect_directory_symlink_target() 313 path_sep = strrchr(resolved_path, sep); in detect_directory_symlink_target() 317 path_sep = resolved_path; in detect_directory_symlink_target() 323 oparms = CIFS_OPARMS(cifs_sb, tcon, resolved_path, in detect_directory_symlink_target() 376 kfree(resolved_path); in detect_directory_symlink_target()
|
/linux-6.14.4/fs/btrfs/ |
D | volumes.c | 749 char *resolved_path; in is_good_dev_path() local 767 resolved_path = d_path(&path, path_buf, PATH_MAX); in is_good_dev_path() 768 if (IS_ERR(resolved_path)) in is_good_dev_path() 770 if (strncmp(resolved_path, "/dev/", strlen("/dev/"))) in is_good_dev_path() 783 char *resolved_path; in get_canonical_dev_path() local 800 resolved_path = d_path(&path, path_buf, PATH_MAX); in get_canonical_dev_path() 801 if (IS_ERR(resolved_path)) { in get_canonical_dev_path() 802 ret = PTR_ERR(resolved_path); in get_canonical_dev_path() 805 ret = strscpy(canonical, resolved_path, PATH_MAX); in get_canonical_dev_path()
|
/linux-6.14.4/tools/lib/bpf/ |
D | libbpf.c | 12366 char resolved_path[512]; in bpf_program__attach_usdt() local 12385 err = resolve_full_path(binary_path, resolved_path, sizeof(resolved_path)); in bpf_program__attach_usdt() 12391 binary_path = resolved_path; in bpf_program__attach_usdt()
|