浏览代码

pNFS/flexfiles: Don't attempt to send layoutstats if there are no entries

If the list of mirrors is empty, then don't send an RPC call.

Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust 9 年之前
父节点
当前提交
46c98c6d1b
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      fs/nfs/flexfilelayout/flexfilelayout.c

+ 5 - 0
fs/nfs/flexfilelayout/flexfilelayout.c

@@ -2250,6 +2250,11 @@ ff_layout_prepare_layoutstats(struct nfs42_layoutstat_args *args)
 	args->num_dev = ff_layout_mirror_prepare_stats(args,
 			&ff_layout->generic_hdr, dev_count);
 	spin_unlock(&args->inode->i_lock);
+	if (!args->num_dev) {
+		kfree(args->devinfo);
+		args->devinfo = NULL;
+		return -ENOENT;
+	}
 
 	return 0;
 }