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.9-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6

Pull cifs fixes from Steve French:
"Three small cifs/smb3 fixes, one for stable fixing mkdir path with
the 'idsfromsid' mount option"

* tag '5.9-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6:
SMB3: Fix mkdir when idsfromsid configured on mount
cifs: Convert to use the fallthrough macro
cifs: Fix an error pointer dereference in cifs_mount()

+4 -2
+1
fs/cifs/connect.c
··· 4886 4886 full_path = build_unc_path_to_root(vol, cifs_sb, !!count); 4887 4887 if (IS_ERR(full_path)) { 4888 4888 rc = PTR_ERR(full_path); 4889 + full_path = NULL; 4889 4890 break; 4890 4891 } 4891 4892 /* Chase referral */
+1
fs/cifs/smb2inode.c
··· 115 115 vars->oparms.fid = &fid; 116 116 vars->oparms.reconnect = false; 117 117 vars->oparms.mode = mode; 118 + vars->oparms.cifs_sb = cifs_sb; 118 119 119 120 rqst[num_rqst].rq_iov = &vars->open_iov[0]; 120 121 rqst[num_rqst].rq_nvec = SMB2_CREATE_IOV_SIZE;
+2 -2
fs/cifs/smb2pdu.c
··· 3913 3913 case MID_RESPONSE_MALFORMED: 3914 3914 credits.value = le16_to_cpu(shdr->CreditRequest); 3915 3915 credits.instance = server->reconnect_instance; 3916 - /* fall through */ 3916 + fallthrough; 3917 3917 default: 3918 3918 rdata->result = -EIO; 3919 3919 } ··· 4146 4146 case MID_RESPONSE_MALFORMED: 4147 4147 credits.value = le16_to_cpu(rsp->sync_hdr.CreditRequest); 4148 4148 credits.instance = server->reconnect_instance; 4149 - /* fall through */ 4149 + fallthrough; 4150 4150 default: 4151 4151 wdata->result = -EIO; 4152 4152 break;