Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.12 20 lines 269 B view raw
1#ifndef _NFS_FS_I 2#define _NFS_FS_I 3 4struct nlm_lockowner; 5 6/* 7 * NFS lock info 8 */ 9struct nfs_lock_info { 10 u32 state; 11 struct nlm_lockowner *owner; 12 struct list_head list; 13}; 14 15struct nfs4_lock_state; 16struct nfs4_lock_info { 17 struct nfs4_lock_state *owner; 18}; 19 20#endif