diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-21 22:00:56 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-21 22:00:56 +0000 |
commit | 168660f24dfc46c2702acbe4701a446f42a59578 (patch) | |
tree | f431368afbf6b1b71809cf3fd904d800ea126f4d /fs/hpfs | |
parent | 6420f767924fa73b0ea267864d96820815f4ba5a (diff) |
Merge with Linux 2.4.0-test5-pre3.
Diffstat (limited to 'fs/hpfs')
-rw-r--r-- | fs/hpfs/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/hpfs/buffer.c b/fs/hpfs/buffer.c index dc9ccf624..7ea14e4c4 100644 --- a/fs/hpfs/buffer.c +++ b/fs/hpfs/buffer.c @@ -206,7 +206,7 @@ void *hpfs_map_4sectors(struct super_block *s, unsigned secno, struct quad_buffe bail1: brelse(qbh->bh[0]); bail0: - kfree_s(data, 2048); + kfree(data); printk("HPFS: hpfs_map_4sectors: read error\n"); bail: return NULL; @@ -251,7 +251,7 @@ void hpfs_brelse4(struct quad_buffer_head *qbh) brelse(qbh->bh[2]); brelse(qbh->bh[1]); brelse(qbh->bh[0]); - kfree_s(qbh->data, 2048); + kfree(qbh->data); } void hpfs_mark_4buffers_dirty(struct quad_buffer_head *qbh) |