Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _NFS_FS_I
0003 #define _NFS_FS_I
0004 
0005 struct nlm_lockowner;
0006 
0007 /*
0008  * NFS lock info
0009  */
0010 struct nfs_lock_info {
0011     u32     state;
0012     struct nlm_lockowner *owner;
0013     struct list_head list;
0014 };
0015 
0016 struct nfs4_lock_state;
0017 struct nfs4_lock_info {
0018     struct nfs4_lock_state *owner;
0019 };
0020 
0021 #endif