[PATCH] ufs: truncate should allocate block for last byte
authorEvgeniy Dushistov <dushistov@mail.ru>
Sat, 1 Jul 2006 11:36:24 +0000 (04:36 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sat, 1 Jul 2006 16:56:03 +0000 (09:56 -0700)
commit10e5dce07e6f8f9cea1b54161a888bb099484f88
tree9c7949cf82763344d86ae302748f8e1d278b565a
parenteb28931e4a2c89e53d2b0c1a02a843240bff0806
[PATCH] ufs: truncate should allocate block for last byte

This patch fixes buggy behaviour of UFS
in such kind of scenario:
open(, O_TRUNC...)
ftruncate(, 1024)
ftruncate(, 0)

Such a scenario causes ufs_panic and remount read-only.  This happen
because of according to specification UFS should always allocate block for
last byte, and many parts of our implementation rely on this, but
`ufs_truncate' doesn't care about this.

To make possible return error code and to know about old size, this patch
removes `truncate' from ufs inode_operations and uses `setattr' method to
call ufs_truncate.

Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/ufs/balloc.c
fs/ufs/file.c
fs/ufs/inode.c
fs/ufs/truncate.c
fs/ufs/util.c
fs/ufs/util.h
include/linux/ufs_fs.h