https://github.com/torvalds/linux
Raw File
Tip revision: 5ebe6afaf0057ac3eaeb98defd5456894b446d22 authored by Linus Torvalds on 04 May 2015, 02:22:23 UTC
Linux 4.1-rc2
Tip revision: 5ebe6af
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