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

Pull quota and isofs updates from Jan Kara:

- a fix for quotactl livelock during filesystem freezing

- a small improvement for isofs

- a documentation fix for ext2

* tag 'fs_for_v6.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
isofs: support full length file names (255 instead of 253)
quota: fix livelock between quotactl and freeze_super
doc : fix a broken link in ext2.rst

+3 -2
+1 -1
Documentation/filesystems/ext2.rst
··· 388 388 389 389 ======================= =========================================================== 390 390 Windows 95/98/NT/2000 http://www.chrysocome.net/explore2fs 391 - Windows 95 [1]_ http://www.yipton.net/content.html#FSDEXT2 391 + Windows 95 [1]_ http://www.yipton.net/content/fsdext2/ 392 392 DOS client [1]_ ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/ 393 393 OS/2 [2]_ ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/ 394 394 RISC OS client http://www.esw-heim.tu-clausthal.de/~marco/smorbrod/IscaFS/
+1 -1
fs/isofs/rock.c
··· 271 271 break; 272 272 } 273 273 len = rr->len - 5; 274 - if (retnamlen + len >= 254) { 274 + if (retnamlen + len > NAME_MAX) { 275 275 truncate = 1; 276 276 break; 277 277 }
+1
fs/quota/quota.c
··· 898 898 sb_start_write(sb); 899 899 sb_end_write(sb); 900 900 put_super(sb); 901 + cond_resched(); 901 902 goto retry; 902 903 } 903 904 return sb;