Home | History | Annotate | Download | only in debugfs

Lines Matching refs:retval

112 	int		retval;
124 retval = ext2fs_namei(current_fs, root, cwd, str, &ino);
125 if (retval) {
126 com_err(str, retval, 0);
357 int retval;
359 retval = ext2fs_read_inode_full(current_fs, ino, inode, bufsize);
360 if (retval) {
361 com_err(cmd, retval, "while reading inode %u", ino);
370 int retval;
372 retval = ext2fs_read_inode(current_fs, ino, inode);
373 if (retval) {
374 com_err(cmd, retval, "while reading inode %u", ino);
383 int retval;
385 retval = ext2fs_write_inode(current_fs, ino, inode);
386 if (retval) {
387 com_err(cmd, retval, "while writing inode %u", ino);
396 int retval;
398 retval = ext2fs_write_new_inode(current_fs, ino, inode);
399 if (retval) {
400 com_err(cmd, retval, "while creating inode %u", ino);