staging: lustre: honor error code from ll_iget().
Commit020ecc6f32
("staging: lustre: llite: Remove IS_ERR tests") changed ll_prep_inode to assume any error from ll_iget() meant -ENOMEM because at that time it only returned NULL for errors. Commitc3397e7e67
("staging: lustre: llite: add error handler in inode prepare phase") changed ll_iget() to once again return meaningful codes, but nobody told ll_prep_inode(). So change ll_prep_inode() back to using PTR_ERR(*inode). Signed-off-by: NeilBrown <neilb@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2cd466fecc
commit
057d1df649
@ -2143,7 +2143,7 @@ int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
|
||||
md.posix_acl = NULL;
|
||||
}
|
||||
#endif
|
||||
rc = -ENOMEM;
|
||||
rc = PTR_ERR(*inode);
|
||||
CERROR("new_inode -fatal: rc %d\n", rc);
|
||||
goto out;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user