Missing return value from read_inode
rick-masters opened this issue · 1 comments
rick-masters commented
Commit e48c263 removed the return statement from read_inode in fs/inode.c.
Please revise to this:
static int read_inode(struct inode *i)
{
int errno;
inode_lock(i);
errno = i->sb->fsop->read_inode(i);
inode_unlock(i);
return errno;
}
mikaku commented
It is fixed now.
Thank you very much.