From: NeilBrown Date: Mon, 19 Dec 2016 00:19:31 +0000 (+1100) Subject: NFSv4.1: nfs4_fl_prepare_ds must be careful about reporting success. X-Git-Tag: v4.1.12-124.31.3~211 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=82e8a1994b8ce1edc2ee7124f481f06c49a5d23f;p=users%2Fjedix%2Flinux-maple.git NFSv4.1: nfs4_fl_prepare_ds must be careful about reporting success. Various places assume that if nfs4_fl_prepare_ds() turns a non-NULL 'ds', then ds->ds_clp will also be non-NULL. This is not necessasrily true in the case when the process received a fatal signal while nfs4_pnfs_ds_connect is waiting in nfs4_wait_ds_connect(). In that case ->ds_clp may not be set, and the devid may not recently have been marked unavailable. So add a test for ds_clp == NULL and return NULL in that case. Fixes: c23266d532b4 ("NFS4.1 Fix data server connection race") Signed-off-by: NeilBrown Acked-by: Olga Kornievskaia Acked-by: Adamson, Andy Signed-off-by: Trond Myklebust (cherry picked from commit cfd278c280f997cf2fe4662e0acab0fe465f637b) Orabug: 29617508 Signed-off-by: Calum Mackay Reviewed-by: John Sobecki Signed-off-by: Brian Maly --- diff --git a/fs/nfs/filelayout/filelayoutdev.c b/fs/nfs/filelayout/filelayoutdev.c index 4946ef40ba87..85ef38f9765f 100644 --- a/fs/nfs/filelayout/filelayoutdev.c +++ b/fs/nfs/filelayout/filelayoutdev.c @@ -283,7 +283,8 @@ nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg, u32 ds_idx) s->nfs_client->cl_rpcclient->cl_auth->au_flavor); out_test_devid: - if (filelayout_test_devid_unavailable(devid)) + if (ret->ds_clp == NULL || + filelayout_test_devid_unavailable(devid)) ret = NULL; out: return ret;