mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
ovl: fix readdir error value
actor's return value is taken as a bool (filled/not filled) so we need to return the error in the context. Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
This commit is contained in:
parent
6787341a0f
commit
31e8ccea3c
1 changed files with 3 additions and 1 deletions
|
@ -131,8 +131,10 @@ static int ovl_cache_entry_add_rb(struct ovl_readdir_data *rdd,
|
||||||
}
|
}
|
||||||
|
|
||||||
p = ovl_cache_entry_new(rdd, name, len, ino, d_type);
|
p = ovl_cache_entry_new(rdd, name, len, ino, d_type);
|
||||||
if (p == NULL)
|
if (p == NULL) {
|
||||||
|
rdd->err = -ENOMEM;
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
list_add_tail(&p->l_node, rdd->list);
|
list_add_tail(&p->l_node, rdd->list);
|
||||||
rb_link_node(&p->node, parent, newp);
|
rb_link_node(&p->node, parent, newp);
|
||||||
|
|
Loading…
Reference in a new issue