]> git.ipfire.org Git - thirdparty/linux.git/blame - include/linux/nfs_fs_i.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/linux.git] / include / linux / nfs_fs_i.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _NFS_FS_I
3#define _NFS_FS_I
4
1da177e4
LT
5struct nlm_lockowner;
6
7/*
8 * NFS lock info
9 */
10struct nfs_lock_info {
11 u32 state;
1da177e4 12 struct nlm_lockowner *owner;
26bcbf96 13 struct list_head list;
1da177e4
LT
14};
15
8d0a8a9d
TM
16struct nfs4_lock_state;
17struct nfs4_lock_info {
18 struct nfs4_lock_state *owner;
19};
20
1da177e4 21#endif