Home | History | Annotate | Download | only in debugfs

Lines Matching full:ino

107 	ext2_ino_t	ino;
113 * If the string is of the form <ino>, then treat it as an
117 ino = strtoul(str+1, &end, 0);
119 return ino;
122 retval = ext2fs_namei(current_fs, root, cwd, str, &ino);
127 return ino;
348 int debugfs_read_inode_full(ext2_ino_t ino, struct ext2_inode * inode,
353 retval = ext2fs_read_inode_full(current_fs, ino, inode, bufsize);
355 com_err(cmd, retval, "while reading inode %u", ino);
361 int debugfs_read_inode(ext2_ino_t ino, struct ext2_inode * inode,
366 retval = ext2fs_read_inode(current_fs, ino, inode);
368 com_err(cmd, retval, "while reading inode %u", ino);
374 int debugfs_write_inode(ext2_ino_t ino, struct ext2_inode * inode,
379 retval = ext2fs_write_inode(current_fs, ino, inode);
381 com_err(cmd, retval, "while writing inode %u", ino);
387 int debugfs_write_new_inode(ext2_ino_t ino, struct ext2_inode * inode,
392 retval = ext2fs_write_new_inode(current_fs, ino, inode);
394 com_err(cmd, retval, "while creating inode %u", ino);