-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 297459 b: refs/heads/master c: 62b9510 h: refs/heads/master i: 297457: b9a6a7e 297455: 480224c v: v3
- Loading branch information
J. Bruce Fields
committed
Mar 19, 2012
1 parent
f19cf1d
commit 9a5616c
Showing
22 changed files
with
521 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 06effdbb49af5f6c7d20affaec74603914acc768 | ||
refs/heads/master: 62b9510cb373d5722fdaba71d961d8f695acfcd5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#ifndef _NFSD4_CURRENT_STATE_H | ||
#define _NFSD4_CURRENT_STATE_H | ||
|
||
#include "state.h" | ||
#include "xdr4.h" | ||
|
||
extern void clear_current_stateid(struct nfsd4_compound_state *cstate); | ||
/* | ||
* functions to set current state id | ||
*/ | ||
extern void nfsd4_set_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *); | ||
extern void nfsd4_set_openstateid(struct nfsd4_compound_state *, struct nfsd4_open *); | ||
extern void nfsd4_set_lockstateid(struct nfsd4_compound_state *, struct nfsd4_lock *); | ||
extern void nfsd4_set_closestateid(struct nfsd4_compound_state *, struct nfsd4_close *); | ||
|
||
/* | ||
* functions to consume current state id | ||
*/ | ||
extern void nfsd4_get_opendowngradestateid(struct nfsd4_compound_state *cstate, struct nfsd4_open_downgrade *); | ||
extern void nfsd4_get_delegreturnstateid(struct nfsd4_compound_state *, struct nfsd4_delegreturn *); | ||
extern void nfsd4_get_freestateid(struct nfsd4_compound_state *, struct nfsd4_free_stateid *); | ||
extern void nfsd4_get_setattrstateid(struct nfsd4_compound_state *, struct nfsd4_setattr *); | ||
extern void nfsd4_get_closestateid(struct nfsd4_compound_state *, struct nfsd4_close *); | ||
extern void nfsd4_get_lockustateid(struct nfsd4_compound_state *, struct nfsd4_locku *); | ||
extern void nfsd4_get_readstateid(struct nfsd4_compound_state *, struct nfsd4_read *); | ||
extern void nfsd4_get_writestateid(struct nfsd4_compound_state *, struct nfsd4_write *); | ||
|
||
#endif /* _NFSD4_CURRENT_STATE_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.