mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
pNFS: Fix NULL dereference in pnfs_generic_alloc_ds_commits
Signed-off-by: Fred Isaman <fred.isaman@gmail.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
5f0114832a
commit
c296cfe26b
@ -221,7 +221,7 @@ pnfs_generic_alloc_ds_commits(struct nfs_commit_info *cinfo,
|
||||
* If the layout segment is invalid, then let
|
||||
* pnfs_generic_retry_commit() clean up the bucket.
|
||||
*/
|
||||
if (!pnfs_is_valid_lseg(bucket->clseg) &&
|
||||
if (bucket->clseg && !pnfs_is_valid_lseg(bucket->clseg) &&
|
||||
!test_bit(NFS_LSEG_LAYOUTRETURN, &bucket->clseg->pls_flags))
|
||||
break;
|
||||
data = nfs_commitdata_alloc(false);
|
||||
|
Loading…
Reference in New Issue
Block a user