static void make_bad_inode(void)
{
	if (fs_version < 2) {
		make_bad_inode_v1();
		return;
	}
	make_bad_inode_v2_v3();
}
Exemple #2
0
static void make_bad_inode(struct fs_control *ctl)
{
	if (fs_version < 2) {
		make_bad_inode_v1(ctl);
		return;
	}
	make_bad_inode_v2_v3(ctl);
}