Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag '5.7-rc5-smb3-fixes' of git://git.samba.org/sfrench/cifs-2.6

Pull cifs fixes from Steve French:
"Three small cifs/smb3 fixes, one for stable"

* tag '5.7-rc5-smb3-fixes' of git://git.samba.org/sfrench/cifs-2.6:
cifs: fix leaked reference on requeued write
cifs: Fix null pointer check in cifs_read
CIFS: Spelling s/EACCESS/EACCES/

+3 -3
+1 -1
fs/cifs/cifssmb.c
··· 2152 2152 } 2153 2153 } 2154 2154 2155 + kref_put(&wdata2->refcount, cifs_writedata_release); 2155 2156 if (rc) { 2156 - kref_put(&wdata2->refcount, cifs_writedata_release); 2157 2157 if (is_retryable_error(rc)) 2158 2158 continue; 2159 2159 i += nr_pages;
+1 -1
fs/cifs/file.c
··· 4060 4060 * than it negotiated since it will refuse the read 4061 4061 * then. 4062 4062 */ 4063 - if ((tcon->ses) && !(tcon->ses->capabilities & 4063 + if (!(tcon->ses->capabilities & 4064 4064 tcon->ses->server->vals->cap_large_files)) { 4065 4065 current_read_size = min_t(uint, 4066 4066 current_read_size, CIFSMaxBufSize);
+1 -1
fs/cifs/inode.c
··· 730 730 * cifs_backup_query_path_info - SMB1 fallback code to get ino 731 731 * 732 732 * Fallback code to get file metadata when we don't have access to 733 - * @full_path (EACCESS) and have backup creds. 733 + * @full_path (EACCES) and have backup creds. 734 734 * 735 735 * @data will be set to search info result buffer 736 736 * @resp_buf will be set to cifs resp buf and needs to be freed with