use crate::{
blockdev::*, bmalloc::InodeNumber, disknode::*, error::*, ext4::Ext4FileSystem,
loopfile::get_file_inode,
};
pub fn get_inode_with_num<B: BlockDevice>(
fs: &mut Ext4FileSystem,
device: &mut Jbd2Dev<B>,
path: &str,
) -> Ext4Result<Option<(InodeNumber, Ext4Inode)>> {
get_file_inode(fs, device, path)
}