xdr4.h (db985cbd67c45f875ef43cb5febfaa8cbd203c27) | xdr4.h (24bab491220faa446d945624086d838af41d616c) |
---|---|
1/* 2 * Server-side types for NFSv4. 3 * 4 * Copyright (c) 2002 The Regents of the University of Michigan. 5 * All rights reserved. 6 * 7 * Kendrick Smith <kmsmith@umich.edu> 8 * Andy Adamson <andros@umich.edu> --- 414 unchanged lines hidden (view full) --- 423struct nfsd4_destroy_clientid { 424 clientid_t clientid; 425}; 426 427struct nfsd4_reclaim_complete { 428 u32 rca_one_fs; 429}; 430 | 1/* 2 * Server-side types for NFSv4. 3 * 4 * Copyright (c) 2002 The Regents of the University of Michigan. 5 * All rights reserved. 6 * 7 * Kendrick Smith <kmsmith@umich.edu> 8 * Andy Adamson <andros@umich.edu> --- 414 unchanged lines hidden (view full) --- 423struct nfsd4_destroy_clientid { 424 clientid_t clientid; 425}; 426 427struct nfsd4_reclaim_complete { 428 u32 rca_one_fs; 429}; 430 |
431struct nfsd4_seek { 432 /* request */ 433 stateid_t seek_stateid; 434 loff_t seek_offset; 435 u32 seek_whence; 436 437 /* response */ 438 u32 seek_eof; 439 loff_t seek_pos; 440}; 441 |
|
431struct nfsd4_op { 432 int opnum; 433 __be32 status; 434 union { 435 struct nfsd4_access access; 436 struct nfsd4_close close; 437 struct nfsd4_commit commit; 438 struct nfsd4_create create; --- 29 unchanged lines hidden (view full) --- 468 struct nfsd4_backchannel_ctl backchannel_ctl; 469 struct nfsd4_bind_conn_to_session bind_conn_to_session; 470 struct nfsd4_create_session create_session; 471 struct nfsd4_destroy_session destroy_session; 472 struct nfsd4_sequence sequence; 473 struct nfsd4_reclaim_complete reclaim_complete; 474 struct nfsd4_test_stateid test_stateid; 475 struct nfsd4_free_stateid free_stateid; | 442struct nfsd4_op { 443 int opnum; 444 __be32 status; 445 union { 446 struct nfsd4_access access; 447 struct nfsd4_close close; 448 struct nfsd4_commit commit; 449 struct nfsd4_create create; --- 29 unchanged lines hidden (view full) --- 479 struct nfsd4_backchannel_ctl backchannel_ctl; 480 struct nfsd4_bind_conn_to_session bind_conn_to_session; 481 struct nfsd4_create_session create_session; 482 struct nfsd4_destroy_session destroy_session; 483 struct nfsd4_sequence sequence; 484 struct nfsd4_reclaim_complete reclaim_complete; 485 struct nfsd4_test_stateid test_stateid; 486 struct nfsd4_free_stateid free_stateid; |
487 488 /* NFSv4.2 */ 489 struct nfsd4_seek seek; |
|
476 } u; 477 struct nfs4_replay * replay; 478}; 479 480bool nfsd4_cache_this_op(struct nfsd4_op *); 481 482/* 483 * Memory needed just for the duration of processing one compound: --- 159 unchanged lines hidden --- | 490 } u; 491 struct nfs4_replay * replay; 492}; 493 494bool nfsd4_cache_this_op(struct nfsd4_op *); 495 496/* 497 * Memory needed just for the duration of processing one compound: --- 159 unchanged lines hidden --- |