mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:04:41 +01:00
\n
-----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEq1nRK9aeMoq1VSgcnJ2qBz9kQNkFAmmMc1oACgkQnJ2qBz9k QNnwcQf/cV9BoA/RLKoYQ9WBQYIB5DCWW0JK+vsWFFdRH/imgLNZZeCZ5PscKvnv rjfo1HkrcQ4T+jjAQ4geRA828SXqmcKAiOQ9CTmuy+0Xgjkd79SjJ+C1nT+I0CHA /NnPWJktNX8jbpuhnBITo3J1eZ1tnuTUaHrQJRuBBKM1sPd0RvzZTVmteq66hxoA 1eD0HN/10Egh2l3wGMpIOTbtK505Jyxbbx1iKCz9jpqIQtsjyH/0NgBfkdLKai1C AKTaAneohH4meo6yPWrR1kRDSNDpcRVrcYcchuW+d6Oi1s1aPBBWxW9OxprYLpo+ x6E3njVixr+lz5xTfXjObBGFkl/LKQ== =Zhns -----END PGP SIGNATURE----- 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
This commit is contained in:
commit
541c43310e
3 changed files with 3 additions and 2 deletions
|
|
@ -388,7 +388,7 @@ Implementations for:
|
|||
|
||||
======================= ===========================================================
|
||||
Windows 95/98/NT/2000 http://www.chrysocome.net/explore2fs
|
||||
Windows 95 [1]_ http://www.yipton.net/content.html#FSDEXT2
|
||||
Windows 95 [1]_ http://www.yipton.net/content/fsdext2/
|
||||
DOS client [1]_ ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/
|
||||
OS/2 [2]_ ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/
|
||||
RISC OS client http://www.esw-heim.tu-clausthal.de/~marco/smorbrod/IscaFS/
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@ repeat:
|
|||
break;
|
||||
}
|
||||
len = rr->len - 5;
|
||||
if (retnamlen + len >= 254) {
|
||||
if (retnamlen + len > NAME_MAX) {
|
||||
truncate = 1;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -898,6 +898,7 @@ retry:
|
|||
sb_start_write(sb);
|
||||
sb_end_write(sb);
|
||||
put_super(sb);
|
||||
cond_resched();
|
||||
goto retry;
|
||||
}
|
||||
return sb;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue