Skip to content

Commit

Permalink
pnfs: add a common GETDEVICELIST implementation
Browse files Browse the repository at this point in the history
At a simple helper to issue a GETDEVICELIST operation and pre-load
the device id cache based on the result.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
  • Loading branch information
Christoph Hellwig authored and Trond Myklebust committed Sep 10, 2014
1 parent 661373b commit 9dd2fcd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fs/nfs/pnfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,8 @@ bool nfs4_put_deviceid_node(struct nfs4_deviceid_node *);
void nfs4_mark_deviceid_unavailable(struct nfs4_deviceid_node *node);
bool nfs4_test_deviceid_unavailable(struct nfs4_deviceid_node *node);
void nfs4_deviceid_purge_client(const struct nfs_client *);
int nfs4_deviceid_getdevicelist(struct nfs_server *server,
const struct nfs_fh *fh);

static inline struct pnfs_layout_segment *
pnfs_get_lseg(struct pnfs_layout_segment *lseg)
Expand Down
29 changes: 29 additions & 0 deletions fs/nfs/pnfs_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,3 +359,32 @@ nfs4_deviceid_mark_client_invalid(struct nfs_client *clp)
rcu_read_unlock();
}

int
nfs4_deviceid_getdevicelist(struct nfs_server *server,
const struct nfs_fh *fh)
{
struct pnfs_devicelist *dlist;
struct nfs4_deviceid_node *d;
int error = 0, i;

dlist = kzalloc(sizeof(struct pnfs_devicelist), GFP_NOFS);
if (!dlist)
return -ENOMEM;

while (!dlist->eof) {
error = nfs4_proc_getdevicelist(server, fh, dlist);
if (error)
break;

for (i = 0; i < dlist->num_devs; i++) {
d = nfs4_find_get_deviceid(server, &dlist->dev_id[i],
NULL, GFP_NOFS);
if (d)
nfs4_put_deviceid_node(d);
}
}

kfree(dlist);
return error;
}
EXPORT_SYMBOL_GPL(nfs4_deviceid_getdevicelist);

0 comments on commit 9dd2fcd

Please sign in to comment.