Home | History | Annotate | Download | only in debugfs

Lines Matching refs:ino

109 	ext2_ino_t	ino;
115 * If the string is of the form <ino>, then treat it as an
119 ino = strtoul(str+1, &end, 0);
121 return ino;
124 retval = ext2fs_namei(current_fs, root, cwd, str, &ino);
129 return ino;
354 int debugfs_read_inode_full(ext2_ino_t ino, struct ext2_inode * inode,
359 retval = ext2fs_read_inode_full(current_fs, ino, inode, bufsize);
361 com_err(cmd, retval, "while reading inode %u", ino);
367 int debugfs_read_inode(ext2_ino_t ino, struct ext2_inode * inode,
372 retval = ext2fs_read_inode(current_fs, ino, inode);
374 com_err(cmd, retval, "while reading inode %u", ino);
380 int debugfs_write_inode(ext2_ino_t ino, struct ext2_inode * inode,
385 retval = ext2fs_write_inode(current_fs, ino, inode);
387 com_err(cmd, retval, "while writing inode %u", ino);
393 int debugfs_write_new_inode(ext2_ino_t ino, struct ext2_inode * inode,
398 retval = ext2fs_write_new_inode(current_fs, ino, inode);
400 com_err(cmd, retval, "while creating inode %u", ino);