Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 153606
b: refs/heads/master
c: 2d9b9ec
h: refs/heads/master
v: v3
  • Loading branch information
Benny Halevy committed Jun 17, 2009
1 parent e356633 commit 25f8b6a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 34bc47c941a074f91c2455b4b08503d02c74b878
refs/heads/master: 2d9b9ec344b19b7b65c732b7000114df57684140
35 changes: 35 additions & 0 deletions trunk/fs/nfs/callback.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,41 @@ struct cb_recallargs {
uint32_t truncate;
};

#if defined(CONFIG_NFS_V4_1)

struct referring_call {
uint32_t rc_sequenceid;
uint32_t rc_slotid;
};

struct referring_call_list {
struct nfs4_sessionid rcl_sessionid;
uint32_t rcl_nrefcalls;
struct referring_call *rcl_refcalls;
};

struct cb_sequenceargs {
struct sockaddr_in *csa_addr;
struct nfs4_sessionid csa_sessionid;
uint32_t csa_sequenceid;
uint32_t csa_slotid;
uint32_t csa_highestslotid;
uint32_t csa_cachethis;
uint32_t csa_nrclists;
struct referring_call_list *csa_rclists;
};

struct cb_sequenceres {
uint32_t csr_status;
struct nfs4_sessionid csr_sessionid;
uint32_t csr_sequenceid;
uint32_t csr_slotid;
uint32_t csr_highestslotid;
uint32_t csr_target_highestslotid;
};

#endif /* CONFIG_NFS_V4_1 */

extern __be32 nfs4_callback_getattr(struct cb_getattrargs *args, struct cb_getattrres *res);
extern __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy);

Expand Down

0 comments on commit 25f8b6a

Please sign in to comment.