diff options
author | Evgeniy Dushistov <dushistov@mail.ru> | 2006-06-25 08:47:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 13:01:02 -0400 |
commit | 9695ef16ed4e00b59303f39f9a4a422a2c6a3b89 (patch) | |
tree | fba8946e86a523a5d53936cf5ec9e0a150037f73 /include/linux/ufs_fs.h | |
parent | b71034e5e67d1577424cebe7bbb7d0ce134a4cd8 (diff) |
[PATCH] ufs: wrong type cast
There are two ugly macros in ufs code:
#define UCPI_UBH ((struct ufs_buffer_head *)ucpi)
#define USPI_UBH ((struct ufs_buffer_head *)uspi)
when uspi looks like
struct {
struct ufs_buffer_head ;
}
and USPI_UBH has some sence,
ucpi looks like
struct {
struct not_ufs_buffer_head;
}
To prevent bugs in future, this patch convert macros to inline function and
fix "ucpi" structure.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/ufs_fs.h')
-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 9d2b519700e7..48394dae225d 100644 --- a/include/linux/ufs_fs.h +++ b/include/linux/ufs_fs.h | |||
@@ -666,7 +666,7 @@ struct ufs_buffer_head { | |||
666 | }; | 666 | }; |
667 | 667 | ||
668 | struct ufs_cg_private_info { | 668 | struct ufs_cg_private_info { |
669 | struct ufs_cylinder_group ucg; | 669 | struct ufs_buffer_head c_ubh; |
670 | __u32 c_cgx; /* number of cylidner group */ | 670 | __u32 c_cgx; /* number of cylidner group */ |
671 | __u16 c_ncyl; /* number of cyl's this cg */ | 671 | __u16 c_ncyl; /* number of cyl's this cg */ |
672 | __u16 c_niblk; /* number of inode blocks this cg */ | 672 | __u16 c_niblk; /* number of inode blocks this cg */ |