blob: 98f9268fcfc2c2f619d1a4d2b8682515b2300b0b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _NFS_FS_I
3#define _NFS_FS_I
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005struct nlm_lockowner;
6
7/*
8 * NFS lock info
9 */
10struct nfs_lock_info {
11 u32 state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 struct nlm_lockowner *owner;
Christoph Hellwig26bcbf92006-03-20 13:44:40 -050013 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014};
15
Trond Myklebust8d0a8a92005-06-22 17:16:32 +000016struct nfs4_lock_state;
17struct nfs4_lock_info {
18 struct nfs4_lock_state *owner;
19};
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#endif