https://github.com/torvalds/linux
Raw File
Tip revision: d9f8bcbf67a0ee67c8cb0734f003dfe916bb5248 authored by Linus Torvalds on 17 November 2007, 05:16:36 UTC
Linux 2.6.24-rc3
Tip revision: d9f8bcb
nfs_fs_i.h
#ifndef _NFS_FS_I
#define _NFS_FS_I

#include <asm/types.h>
#include <linux/list.h>
#include <linux/nfs.h>

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