Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
2d9b9ec3
Commit
2d9b9ec3
authored
Apr 01, 2009
by
Benny Halevy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nfs41: cb_sequence protocol level data structures
Signed-off-by:
Benny Halevy
<
bhalevy@panasas.com
>
parent
34bc47c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
fs/nfs/callback.h
fs/nfs/callback.h
+35
-0
No files found.
fs/nfs/callback.h
View file @
2d9b9ec3
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment