ovl: Use out_err instead of out_nomem
authorVivek Goyal <vgoyal@redhat.com>
Fri, 11 May 2018 15:49:28 +0000 (11:49 -0400)
committerMiklos Szeredi <mszeredi@redhat.com>
Fri, 20 Jul 2018 07:56:08 +0000 (09:56 +0200)
commit027065b726434d2a95a5cc516129be765e27ecf8
tree5f8c3aa847bf0eceab9c4cf9e384d46e4909378f
parent0c2888749363645d62cc48852d0af98d5ceef332
ovl: Use out_err instead of out_nomem

Right now we use goto out_nomem which assumes error code is -ENOMEM.  But
there are other errors returned like -ESTALE as well.  So instead of
out_nomem, use out_err which will do ERR_PTR(err).  That way one can put
error code in err and jump to out_err.

This just code reorganization and no change of functionality.

I am about to add more code and this organization helps laying more code
and error paths on top of it.

Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
fs/overlayfs/inode.c