Searched hist:"2 f83fd8c" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/fs/overlayfs/ |
H A D | super.c | 2f83fd8c Mon Jan 05 22:52:13 CST 2015 hujianyang <hujianyang@huawei.com> ovl: Fix kernel panic while mounting overlayfs
The function ovl_fill_super() in recently multi-layer support version will incorrectly return 0 at error handling path and then cause kernel panic.
This failure can be reproduced by mounting a overlayfs with upperdir and workdir in different mounts.
And also, If the memory allocation of *lower_mnt* fail, this function may return an zero either.
This patch fix this problem by setting *err* to proper error number before jumping to error handling path.
Signed-off-by: hujianyang <hujianyang@huawei.com> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz> 2f83fd8c Mon Jan 05 22:52:13 CST 2015 hujianyang <hujianyang@huawei.com> ovl: Fix kernel panic while mounting overlayfs The function ovl_fill_super() in recently multi-layer support version will incorrectly return 0 at error handling path and then cause kernel panic. This failure can be reproduced by mounting a overlayfs with upperdir and workdir in different mounts. And also, If the memory allocation of *lower_mnt* fail, this function may return an zero either. This patch fix this problem by setting *err* to proper error number before jumping to error handling path. Signed-off-by: hujianyang <hujianyang@huawei.com> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
|