diff options
| author | Brian Gerst <bgerst@didntduck.org> | 2002-03-11 20:51:25 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-03-11 20:51:25 -0800 |
| commit | 1b23ec3055eb85cf7dfd1d6ad45e68cf9b32ae36 (patch) | |
| tree | 31f3119e85c1fa3548818558e8d1d3db5ef4d996 /include/linux/minix_fs.h | |
| parent | ddd7dce99da550c4be77d474973155697434e8ee (diff) | |
[PATCH] struct superblock cleanup - minixfs
Switch to using kmalloc to allocate the minix superblock structure.
Diffstat (limited to 'include/linux/minix_fs.h')
| -rw-r--r-- | include/linux/minix_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/minix_fs.h b/include/linux/minix_fs.h index 5953da6a02ac..586b49bb61bd 100644 --- a/include/linux/minix_fs.h +++ b/include/linux/minix_fs.h @@ -134,7 +134,7 @@ extern struct dentry_operations minix_dentry_operations; static inline struct minix_sb_info *minix_sb(struct super_block *sb) { - return &sb->u.minix_sb; + return sb->u.generic_sbp; } static inline struct minix_inode_info *minix_i(struct inode *inode) |
