Searched refs:open_file (Results 1 – 9 of 9) sorted by relevance
/linux-4.19.296/fs/cifs/ |
D | file.c | 828 struct cifsFileInfo *open_file; in cifs_reopen_persistent_handles() local 844 open_file = list_entry(tmp, struct cifsFileInfo, tlist); in cifs_reopen_persistent_handles() 845 if (!open_file->invalidHandle) in cifs_reopen_persistent_handles() 847 cifsFileInfo_get(open_file); in cifs_reopen_persistent_handles() 848 list_add_tail(&open_file->rlist, &tmp_list); in cifs_reopen_persistent_handles() 853 open_file = list_entry(tmp, struct cifsFileInfo, rlist); in cifs_reopen_persistent_handles() 854 if (cifs_reopen_file(open_file, false /* do not flush */)) in cifs_reopen_persistent_handles() 856 list_del_init(&open_file->rlist); in cifs_reopen_persistent_handles() 857 cifsFileInfo_put(open_file); in cifs_reopen_persistent_handles() 1771 cifs_write(struct cifsFileInfo *open_file, __u32 pid, const char *write_data, in cifs_write() argument [all …]
|
D | smb1ops.c | 773 struct cifsFileInfo *open_file; in smb_set_file_info() local 780 open_file = find_writable_file(cinode, true); in smb_set_file_info() 781 if (open_file) { in smb_set_file_info() 782 fid.netfid = open_file->fid.netfid; in smb_set_file_info() 783 netpid = open_file->pid; in smb_set_file_info() 784 tcon = tlink_tcon(open_file->tlink); in smb_set_file_info() 829 if (open_file == NULL) in smb_set_file_info() 832 cifsFileInfo_put(open_file); in smb_set_file_info()
|
D | inode.c | 2162 struct cifsFileInfo *open_file; local 2178 open_file = find_writable_file(cifsInode, true); 2179 if (open_file) { 2180 tcon = tlink_tcon(open_file->tlink); 2183 rc = server->ops->set_file_size(xid, tcon, open_file, 2187 cifsFileInfo_put(open_file); 2249 struct cifsFileInfo *open_file; local 2337 open_file = find_writable_file(cifsInode, true); 2338 if (open_file) { 2339 u16 nfid = open_file->fid.netfid; [all …]
|
D | cifsacl.c | 1064 struct cifsFileInfo *open_file = NULL; in get_cifs_acl() local 1067 open_file = find_readable_file(CIFS_I(inode), true); in get_cifs_acl() 1068 if (!open_file) in get_cifs_acl() 1071 pntsd = get_cifs_acl_by_fid(cifs_sb, &open_file->fid, pacllen); in get_cifs_acl() 1072 cifsFileInfo_put(open_file); in get_cifs_acl()
|
D | smb2ops.c | 2168 struct cifsFileInfo *open_file = NULL; in get_smb2_acl() local 2171 open_file = find_readable_file(CIFS_I(inode), true); in get_smb2_acl() 2172 if (!open_file) in get_smb2_acl() 2175 pntsd = get_smb2_acl_by_fid(cifs_sb, &open_file->fid, pacllen); in get_smb2_acl() 2176 cifsFileInfo_put(open_file); in get_smb2_acl()
|
D | cifssmb.c | 97 struct cifsFileInfo *open_file = NULL; in cifs_mark_open_files_invalid() local 104 open_file = list_entry(tmp, struct cifsFileInfo, tlist); in cifs_mark_open_files_invalid() 105 open_file->invalidHandle = true; in cifs_mark_open_files_invalid() 106 open_file->oplock_break_cancelled = true; in cifs_mark_open_files_invalid()
|
/linux-4.19.296/fs/hostfs/ |
D | hostfs.h | 68 extern int open_file(char *path, int r, int w, int append);
|
D | hostfs_user.c | 70 int open_file(char *path, int r, int w, int append) in open_file() function
|
D | hostfs_kern.c | 330 fd = open_file(name, r, w, append); in hostfs_open()
|