Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ec70738 authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Adrian Bunk
Browse files

BUG_ON() Conversion in fs/freevxfs/



this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.

Signed-off-by: default avatarEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent 2c2111c2
Loading
Loading
Loading
Loading
+3 −6
Original line number Original line Diff line number Diff line
@@ -42,24 +42,21 @@
static inline void
static inline void
vxfs_get_fshead(struct vxfs_oltfshead *fshp, struct vxfs_sb_info *infp)
vxfs_get_fshead(struct vxfs_oltfshead *fshp, struct vxfs_sb_info *infp)
{
{
	if (infp->vsi_fshino)
	BUG_ON(infp->vsi_fshino);
		BUG();
	infp->vsi_fshino = fshp->olt_fsino[0];
	infp->vsi_fshino = fshp->olt_fsino[0];
}
}


static inline void
static inline void
vxfs_get_ilist(struct vxfs_oltilist *ilistp, struct vxfs_sb_info *infp)
vxfs_get_ilist(struct vxfs_oltilist *ilistp, struct vxfs_sb_info *infp)
{
{
	if (infp->vsi_iext)
	BUG_ON(infp->vsi_iext);
		BUG();
	infp->vsi_iext = ilistp->olt_iext[0]; 
	infp->vsi_iext = ilistp->olt_iext[0]; 
}
}


static inline u_long
static inline u_long
vxfs_oblock(struct super_block *sbp, daddr_t block, u_long bsize)
vxfs_oblock(struct super_block *sbp, daddr_t block, u_long bsize)
{
{
	if (sbp->s_blocksize % bsize)
	BUG_ON(sbp->s_blocksize % bsize);
		BUG();
	return (block * (sbp->s_blocksize / bsize));
	return (block * (sbp->s_blocksize / bsize));
}
}