search for: k0000

Displaying 1 result from an estimated 1 matches for "k0000".

Did you mean: 0000
2003 Feb 04
0
[PATCH] Fix signed use of i_blocks in ext3 truncate
...ot reserve enough credits for the transaction and the above error results. This is usually only possible on filesystems corrupted for other reasons, but it is reproducible if you create a single, non-sparse file larger than 1TB on ext3 and then try to delete it. --- linux-2.4-tmp/fs/ext3/inode.c.=K0000=.orig 2003-02-03 19:14:43.000000000 +0000 +++ linux-2.4-tmp/fs/ext3/inode.c 2003-02-03 19:17:35.000000000 +0000 @@ -87,6 +87,34 @@ return err; } +/* + * Work out how many blocks we need to progress with the next chunk of a + * truncate transaction. + */ + +static unsigned long blocks_for_trunc...