Re: [PATCH] fs: make generic_block_fiemap sig-tolerant PING2...

2014-12-19 Thread Andreas Dilger
On Dec 19, 2014, at 2:33 PM, Andrew Morton wrote: > > On Fri, 19 Dec 2014 12:13:50 +0300 Dmitry Monakhov > wrote: > >> --- a/Documentation/filesystems/fiemap.txt >> +++ b/Documentation/filesystems/fiemap.txt >> @@ -196,7 +196,8 @@ struct fiemap_extent_info { >> }; >> >> It is intended that th

Re: [PATCH] fs: make generic_block_fiemap sig-tolerant PING2...

2014-12-19 Thread Andrew Morton
On Fri, 19 Dec 2014 12:13:50 +0300 Dmitry Monakhov wrote: > --- a/Documentation/filesystems/fiemap.txt > +++ b/Documentation/filesystems/fiemap.txt > @@ -196,7 +196,8 @@ struct fiemap_extent_info { > }; > > It is intended that the file system should not need to access any of this > -structure

Re: [PATCH] fs: make generic_block_fiemap sig-tolerant PING2...

2014-12-19 Thread Dmitry Monakhov
Andrew Morton writes: > On Wed, 10 Dec 2014 16:49:18 +0300 Dmitry Monakhov > wrote: > >> >> Hello. Someone please take care of this patch. >> >> W/o that patch unprivileged user may abuse system resources simply by >> spawning >> wast number of unkilable busyloops (works on ext2/ext3): >> >

Re: [PATCH] fs: make generic_block_fiemap sig-tolerant PING2...

2014-12-18 Thread Andrew Morton
On Wed, 10 Dec 2014 16:49:18 +0300 Dmitry Monakhov wrote: > > Hello. Someone please take care of this patch. > > W/o that patch unprivileged user may abuse system resources simply by spawning > wast number of unkilable busyloops (works on ext2/ext3): > > truncate --size 1T test > for ((i=0;i<1

Re: [PATCH] fs: make generic_block_fiemap sig-tolerant PING2...

2014-12-10 Thread Dmitry Monakhov
Hello. Someone please take care of this patch. W/o that patch unprivileged user may abuse system resources simply by spawning wast number of unkilable busyloops (works on ext2/ext3): truncate --size 1T test for ((i=0;i<1024;i++)) do filefrag test > /dev/null & done Dmitry Monakhov write