https://github.com/torvalds/linux
Raw File
Tip revision: 08332893e37af6ae779367e78e444f8f9571511d authored by Linus Torvalds on 22 May 2017, 02:30:23 UTC
Linux 4.12-rc2
Tip revision: 0833289
nfs_fs_i.h
#ifndef _NFS_FS_I
#define _NFS_FS_I

struct nlm_lockowner;

/*
 * NFS lock info
 */
struct nfs_lock_info {
	u32		state;
	struct nlm_lockowner *owner;
	struct list_head list;
};

struct nfs4_lock_state;
struct nfs4_lock_info {
	struct nfs4_lock_state *owner;
};

#endif
back to top