URL
https://opencores.org/ocsvn/test_project/test_project/trunk
Subversion Repositories test_project
[/] [test_project/] [trunk/] [linux_sd_driver/] [include/] [linux/] [nfs_fs_i.h] - Rev 82
Go to most recent revision | Compare with Previous | Blame | View Log
#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
Go to most recent revision | Compare with Previous | Blame | View Log