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 '6.11-rc7-SMB3-client-fix' of git://git.samba.org/sfrench/cifs-2.6

Pull smb client fix from Steve French:
"Fix for packet signing of write"

* tag '6.11-rc7-SMB3-client-fix' of git://git.samba.org/sfrench/cifs-2.6:
cifs: Fix signature miscalculation

+1 -1
+1 -1
fs/smb/client/cifsencrypt.c
··· 129 129 for (j = foffset / PAGE_SIZE; j < npages; j++) { 130 130 len = min_t(size_t, maxsize, PAGE_SIZE - offset); 131 131 p = kmap_local_page(folio_page(folio, j)); 132 - ret = crypto_shash_update(shash, p, len); 132 + ret = crypto_shash_update(shash, p + offset, len); 133 133 kunmap_local(p); 134 134 if (ret < 0) 135 135 return ret;