diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-04-12 19:26:09 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-04-12 19:26:09 -0700 |
| commit | 99ac3092f4b894ce0e1e045f38a99ee06ab2500d (patch) | |
| tree | bf5386406f7207e33fa592b5b63de5f928d3dd78 /include/linux | |
| parent | 957ce1abc8f00f5f3930f1f2d334d143cea9058d (diff) | |
[PATCH] ufs2_frag_map_fix : fixes wrong content reading in ufs2 code
From: Niraj Kumar <niraj17@iitbombay.org>
This is in continuation of the ufs2 read-only code that went into 2.6.5.
This patch fixes a bug where wrong content was being read off the disk
after around 4 MB mark.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/ufs_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ufs_fs.h b/include/linux/ufs_fs.h index 507187f51c58..6a21a49a76a7 100644 --- a/include/linux/ufs_fs.h +++ b/include/linux/ufs_fs.h @@ -896,7 +896,7 @@ extern void ufs_free_inode (struct inode *inode); extern struct inode * ufs_new_inode (struct inode *, int); /* inode.c */ -extern u64 ufs_frag_map (struct inode *, int); +extern u64 ufs_frag_map (struct inode *, sector_t); extern void ufs_read_inode (struct inode *); extern void ufs_put_inode (struct inode *); extern void ufs_write_inode (struct inode *, int); |
