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 'fs_for_v6.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs

Pull isofs fix from Jan Kara:
"Fix a case where isofs could be reading beyond end of the passed
file handle if its type was incorrectly set"

* tag 'fs_for_v6.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
isofs: Prevent the use of too small fid

+1 -1
+1 -1
fs/isofs/export.c
··· 180 180 return NULL; 181 181 182 182 return isofs_export_iget(sb, 183 - fh_len > 2 ? ifid->parent_block : 0, 183 + fh_len > 3 ? ifid->parent_block : 0, 184 184 ifid->parent_offset, 185 185 fh_len > 4 ? ifid->parent_generation : 0); 186 186 }