2 * linux/include/linux/nfs_fs.h
4 * Copyright (C) 1992 Rick Sladkey
6 * OS-specific nfs filesystem definitions and declarations
9 #ifndef _LINUX_NFS_FS_H
10 #define _LINUX_NFS_FS_H
12 #include <linux/config.h>
15 #include <linux/pagemap.h>
16 #include <linux/rwsem.h>
17 #include <linux/wait.h>
18 #include <linux/uio.h>
20 #include <linux/nfs_fs_sb.h>
22 #include <linux/sunrpc/debug.h>
23 #include <linux/sunrpc/auth.h>
24 #include <linux/sunrpc/clnt.h>
26 #include <linux/nfs.h>
27 #include <linux/nfs2.h>
28 #include <linux/nfs3.h>
29 #include <linux/nfs4.h>
30 #include <linux/nfs_xdr.h>
31 #include <linux/rwsem.h>
32 #include <linux/workqueue.h>
33 #include <linux/mempool.h>
36 * Enable debugging support for nfs client.
43 #define NFS_MAX_FILE_IO_BUFFER_SIZE 32768
44 #define NFS_DEF_FILE_IO_BUFFER_SIZE 4096
47 * The upper limit on timeouts for the exponential backoff algorithm.
49 #define NFS_WRITEBACK_DELAY (5*HZ)
50 #define NFS_WRITEBACK_LOCKDELAY (60*HZ)
51 #define NFS_COMMIT_DELAY (5*HZ)
54 * superblock magic number for NFS
56 #define NFS_SUPER_MAGIC 0x6969
59 * These are the default flags for swap requests
61 #define NFS_RPC_SWAPFLAGS (RPC_TASK_SWAPPER|RPC_TASK_ROOTCREDS)
63 #define NFS_RW_SYNC 0x0001 /* O_SYNC handling */
64 #define NFS_RW_SWAP 0x0002 /* This is a swap request */
67 * When flushing a cluster of dirty pages, there can be different
70 #define FLUSH_AGING 0 /* only flush old buffers */
71 #define FLUSH_SYNC 1 /* file being synced, or contention */
72 #define FLUSH_WAIT 2 /* wait for completion */
73 #define FLUSH_STABLE 4 /* commit to stable storage */
74 #define FLUSH_LOWPRI 8 /* low priority background flush */
75 #define FLUSH_HIGHPRI 16 /* high priority memory reclaim flush */
80 * NFSv3/v4 Access mode cache entry
82 struct nfs_access_entry
{
83 unsigned long jiffies
;
84 struct rpc_cred
* cred
;
89 struct nfs_open_context
{
91 struct dentry
*dentry
;
92 struct rpc_cred
*cred
;
93 struct nfs4_state
*state
;
98 struct list_head list
;
99 wait_queue_head_t waitq
;
105 struct nfs_delegation
;
108 * nfs fs inode data in memory
112 * The 64bit 'inode number'
127 * read_cache_jiffies is when we started read-caching this inode,
128 * and read_cache_mtime is the mtime of the inode at that time.
129 * attrtimeo is for how long the cached information is assumed
130 * to be valid. A successful attribute revalidation doubles
131 * attrtimeo (up to acregmax/acdirmax), a failure resets it to
134 * We need to revalidate the cached attrs for this inode if
136 * jiffies - read_cache_jiffies > attrtimeo
138 * and invalidate any cached data/flush out any dirty pages if
141 * mtime != read_cache_mtime
143 unsigned long readdir_timestamp
;
144 unsigned long read_cache_jiffies
;
145 unsigned long attrtimeo
;
146 unsigned long attrtimeo_timestamp
;
147 __u64 change_attr
; /* v4 only */
149 /* "Generation counter" for the attribute cache. This is
150 * bumped whenever we update the metadata on the
153 unsigned long cache_change_attribute
;
155 * Counter indicating the number of outstanding requests that
156 * will cause a file data update.
158 atomic_t data_updates
;
160 struct nfs_access_entry cache_access
;
163 * This is the cookie verifier used for NFSv3 readdir
169 * This is the list of dirty unwritten pages.
172 struct list_head dirty
;
173 struct list_head commit
;
174 struct radix_tree_root nfs_page_tree
;
180 /* Open contexts for shared mmap writes */
181 struct list_head open_files
;
183 wait_queue_head_t nfs_i_wait
;
187 struct list_head open_states
;
188 struct nfs_delegation
*delegation
;
189 int delegation_state
;
190 struct rw_semaphore rwsem
;
191 #endif /* CONFIG_NFS_V4*/
193 struct inode vfs_inode
;
197 * Legal inode flag values
199 #define NFS_INO_STALE 0x0001 /* possible stale inode */
200 #define NFS_INO_ADVISE_RDPLUS 0x0002 /* advise readdirplus */
201 #define NFS_INO_REVALIDATING 0x0004 /* revalidating attrs */
202 #define NFS_INO_INVALID_ATTR 0x0008 /* cached attrs are invalid */
203 #define NFS_INO_INVALID_DATA 0x0010 /* cached data is invalid */
204 #define NFS_INO_INVALID_ATIME 0x0020 /* cached atime is invalid */
205 #define NFS_INO_INVALID_ACCESS 0x0040 /* cached access cred invalid */
207 static inline struct nfs_inode
*NFS_I(struct inode
*inode
)
209 return container_of(inode
, struct nfs_inode
, vfs_inode
);
211 #define NFS_SB(s) ((struct nfs_server *)(s->s_fs_info))
213 #define NFS_FH(inode) (&NFS_I(inode)->fh)
214 #define NFS_SERVER(inode) (NFS_SB(inode->i_sb))
215 #define NFS_CLIENT(inode) (NFS_SERVER(inode)->client)
216 #define NFS_PROTO(inode) (NFS_SERVER(inode)->rpc_ops)
217 #define NFS_ADDR(inode) (RPC_PEERADDR(NFS_CLIENT(inode)))
218 #define NFS_COOKIEVERF(inode) (NFS_I(inode)->cookieverf)
219 #define NFS_READTIME(inode) (NFS_I(inode)->read_cache_jiffies)
220 #define NFS_CHANGE_ATTR(inode) (NFS_I(inode)->change_attr)
221 #define NFS_ATTRTIMEO(inode) (NFS_I(inode)->attrtimeo)
222 #define NFS_MINATTRTIMEO(inode) \
223 (S_ISDIR(inode->i_mode)? NFS_SERVER(inode)->acdirmin \
224 : NFS_SERVER(inode)->acregmin)
225 #define NFS_MAXATTRTIMEO(inode) \
226 (S_ISDIR(inode->i_mode)? NFS_SERVER(inode)->acdirmax \
227 : NFS_SERVER(inode)->acregmax)
228 #define NFS_ATTRTIMEO_UPDATE(inode) (NFS_I(inode)->attrtimeo_timestamp)
230 #define NFS_FLAGS(inode) (NFS_I(inode)->flags)
231 #define NFS_REVALIDATING(inode) (NFS_FLAGS(inode) & NFS_INO_REVALIDATING)
232 #define NFS_STALE(inode) (NFS_FLAGS(inode) & NFS_INO_STALE)
234 #define NFS_FILEID(inode) (NFS_I(inode)->fileid)
236 static inline int nfs_caches_unstable(struct inode
*inode
)
238 return atomic_read(&NFS_I(inode
)->data_updates
) != 0;
241 static inline void NFS_CACHEINV(struct inode
*inode
)
243 if (!nfs_caches_unstable(inode
))
244 NFS_FLAGS(inode
) |= NFS_INO_INVALID_ATTR
| NFS_INO_INVALID_ACCESS
;
247 static inline int nfs_server_capable(struct inode
*inode
, int cap
)
249 return NFS_SERVER(inode
)->caps
& cap
;
252 static inline int NFS_USE_READDIRPLUS(struct inode
*inode
)
254 return NFS_FLAGS(inode
) & NFS_INO_ADVISE_RDPLUS
;
258 * nfs_save_change_attribute - Returns the inode attribute change cookie
259 * @inode - pointer to inode
260 * The "change attribute" is updated every time we finish an operation
261 * that will result in a metadata change on the server.
263 static inline long nfs_save_change_attribute(struct inode
*inode
)
265 return NFS_I(inode
)->cache_change_attribute
;
269 * nfs_verify_change_attribute - Detects NFS inode cache updates
270 * @inode - pointer to inode
271 * @chattr - previously saved change attribute
272 * Return "false" if metadata has been updated (or is in the process of
273 * being updated) since the change attribute was saved.
275 static inline int nfs_verify_change_attribute(struct inode
*inode
, unsigned long chattr
)
277 return !nfs_caches_unstable(inode
)
278 && chattr
== NFS_I(inode
)->cache_change_attribute
;
282 * linux/fs/nfs/inode.c
284 extern void nfs_zap_caches(struct inode
*);
285 extern struct inode
*nfs_fhget(struct super_block
*, struct nfs_fh
*,
287 extern int nfs_refresh_inode(struct inode
*, struct nfs_fattr
*);
288 extern int nfs_getattr(struct vfsmount
*, struct dentry
*, struct kstat
*);
289 extern int nfs_permission(struct inode
*, int, struct nameidata
*);
290 extern int nfs_access_get_cached(struct inode
*, struct rpc_cred
*, struct nfs_access_entry
*);
291 extern void nfs_access_add_cache(struct inode
*, struct nfs_access_entry
*);
292 extern int nfs_open(struct inode
*, struct file
*);
293 extern int nfs_release(struct inode
*, struct file
*);
294 extern int nfs_attribute_timeout(struct inode
*inode
);
295 extern int nfs_revalidate_inode(struct nfs_server
*server
, struct inode
*inode
);
296 extern int __nfs_revalidate_inode(struct nfs_server
*, struct inode
*);
297 extern int nfs_setattr(struct dentry
*, struct iattr
*);
298 extern void nfs_begin_attr_update(struct inode
*);
299 extern void nfs_end_attr_update(struct inode
*);
300 extern void nfs_begin_data_update(struct inode
*);
301 extern void nfs_end_data_update(struct inode
*);
302 extern void nfs_end_data_update_defer(struct inode
*);
303 extern struct nfs_open_context
*alloc_nfs_open_context(struct dentry
*dentry
, struct rpc_cred
*cred
);
304 extern struct nfs_open_context
*get_nfs_open_context(struct nfs_open_context
*ctx
);
305 extern void put_nfs_open_context(struct nfs_open_context
*ctx
);
306 extern void nfs_file_set_open_context(struct file
*filp
, struct nfs_open_context
*ctx
);
307 extern struct nfs_open_context
*nfs_find_open_context(struct inode
*inode
, int mode
);
308 extern void nfs_file_clear_open_context(struct file
*filp
);
310 /* linux/net/ipv4/ipconfig.c: trims ip addr off front of name, too. */
311 extern u32
root_nfs_parse_addr(char *name
); /*__init*/
314 * linux/fs/nfs/file.c
316 extern struct inode_operations nfs_file_inode_operations
;
317 extern struct file_operations nfs_file_operations
;
318 extern struct address_space_operations nfs_file_aops
;
320 static inline struct rpc_cred
*nfs_file_cred(struct file
*file
)
323 struct nfs_open_context
*ctx
;
325 ctx
= (struct nfs_open_context
*)file
->private_data
;
332 * linux/fs/nfs/direct.c
334 extern ssize_t
nfs_direct_IO(int, struct kiocb
*, const struct iovec
*, loff_t
,
336 extern ssize_t
nfs_file_direct_read(struct kiocb
*iocb
, char __user
*buf
,
337 size_t count
, loff_t pos
);
338 extern ssize_t
nfs_file_direct_write(struct kiocb
*iocb
, const char __user
*buf
,
339 size_t count
, loff_t pos
);
344 extern struct inode_operations nfs_dir_inode_operations
;
345 extern struct file_operations nfs_dir_operations
;
346 extern struct dentry_operations nfs_dentry_operations
;
348 extern int nfs_instantiate(struct dentry
*dentry
, struct nfs_fh
*fh
, struct nfs_fattr
*fattr
);
351 * linux/fs/nfs/symlink.c
353 extern struct inode_operations nfs_symlink_inode_operations
;
356 * linux/fs/nfs/unlink.c
358 extern int nfs_async_unlink(struct dentry
*);
359 extern void nfs_complete_unlink(struct dentry
*);
362 * linux/fs/nfs/write.c
364 extern int nfs_writepage(struct page
*page
, struct writeback_control
*wbc
);
365 extern int nfs_writepages(struct address_space
*, struct writeback_control
*);
366 extern int nfs_flush_incompatible(struct file
*file
, struct page
*page
);
367 extern int nfs_updatepage(struct file
*, struct page
*, unsigned int, unsigned int);
368 extern void nfs_writeback_done(struct rpc_task
*task
);
370 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
371 extern void nfs_commit_done(struct rpc_task
*);
375 * Try to write back everything synchronously (but check the
378 extern int nfs_sync_inode(struct inode
*, unsigned long, unsigned int, int);
379 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
380 extern int nfs_commit_inode(struct inode
*, unsigned long, unsigned int, int);
383 nfs_commit_inode(struct inode
*inode
, unsigned long idx_start
, unsigned int npages
, int how
)
390 nfs_have_writebacks(struct inode
*inode
)
392 return NFS_I(inode
)->npages
!= 0;
396 nfs_wb_all(struct inode
*inode
)
398 int error
= nfs_sync_inode(inode
, 0, 0, FLUSH_WAIT
);
399 return (error
< 0) ? error
: 0;
403 * Write back all requests on one page - we do this before reading it.
405 static inline int nfs_wb_page_priority(struct inode
*inode
, struct page
* page
, int how
)
407 int error
= nfs_sync_inode(inode
, page
->index
, 1,
408 how
| FLUSH_WAIT
| FLUSH_STABLE
);
409 return (error
< 0) ? error
: 0;
412 static inline int nfs_wb_page(struct inode
*inode
, struct page
* page
)
414 return nfs_wb_page_priority(inode
, page
, 0);
418 * Allocate and free nfs_write_data structures
420 extern mempool_t
*nfs_wdata_mempool
;
422 static inline struct nfs_write_data
*nfs_writedata_alloc(void)
424 struct nfs_write_data
*p
= mempool_alloc(nfs_wdata_mempool
, SLAB_NOFS
);
426 memset(p
, 0, sizeof(*p
));
427 INIT_LIST_HEAD(&p
->pages
);
432 static inline void nfs_writedata_free(struct nfs_write_data
*p
)
434 mempool_free(p
, nfs_wdata_mempool
);
437 /* Hack for future NFS swap support */
439 # define IS_SWAPFILE(inode) (0)
443 * linux/fs/nfs/read.c
445 extern int nfs_readpage(struct file
*, struct page
*);
446 extern int nfs_readpages(struct file
*, struct address_space
*,
447 struct list_head
*, unsigned);
448 extern void nfs_readpage_result(struct rpc_task
*);
451 * Allocate and free nfs_read_data structures
453 extern mempool_t
*nfs_rdata_mempool
;
455 static inline struct nfs_read_data
*nfs_readdata_alloc(void)
457 struct nfs_read_data
*p
= mempool_alloc(nfs_rdata_mempool
, SLAB_NOFS
);
459 memset(p
, 0, sizeof(*p
));
463 static inline void nfs_readdata_free(struct nfs_read_data
*p
)
465 mempool_free(p
, nfs_rdata_mempool
);
468 extern void nfs_readdata_release(struct rpc_task
*task
);
471 * linux/fs/mount_clnt.c
472 * (Used only by nfsroot module)
474 extern int nfsroot_mount(struct sockaddr_in
*, char *, struct nfs_fh
*,
482 nfs_size_to_loff_t(__u64 size
)
484 loff_t maxsz
= (((loff_t
) ULONG_MAX
) << PAGE_CACHE_SHIFT
) + PAGE_CACHE_SIZE
- 1;
487 return (loff_t
) size
;
491 nfs_fileid_to_ino_t(u64 fileid
)
493 ino_t ino
= (ino_t
) fileid
;
494 if (sizeof(ino_t
) < sizeof(u64
))
495 ino
^= fileid
>> (sizeof(u64
)-sizeof(ino_t
)) * 8;
501 extern void * nfs_root_data(void);
503 #define nfs_wait_event(clnt, wq, condition) \
506 if (clnt->cl_intr) { \
508 rpc_clnt_sigmask(clnt, &oldmask); \
509 __retval = wait_event_interruptible(wq, condition); \
510 rpc_clnt_sigunmask(clnt, &oldmask); \
512 wait_event(wq, condition); \
516 #define NFS_JUKEBOX_RETRY_TIME (5 * HZ)
523 * In a seqid-mutating op, this macro controls which error return
524 * values trigger incrementation of the seqid.
527 * The client MUST monotonically increment the sequence number for the
528 * CLOSE, LOCK, LOCKU, OPEN, OPEN_CONFIRM, and OPEN_DOWNGRADE
529 * operations. This is true even in the event that the previous
530 * operation that used the sequence number received an error. The only
531 * exception to this rule is if the previous operation received one of
532 * the following errors: NFSERR_STALE_CLIENTID, NFSERR_STALE_STATEID,
533 * NFSERR_BAD_STATEID, NFSERR_BAD_SEQID, NFSERR_BADXDR,
534 * NFSERR_RESOURCE, NFSERR_NOFILEHANDLE.
537 #define seqid_mutating_err(err) \
538 (((err) != NFSERR_STALE_CLIENTID) && \
539 ((err) != NFSERR_STALE_STATEID) && \
540 ((err) != NFSERR_BAD_STATEID) && \
541 ((err) != NFSERR_BAD_SEQID) && \
542 ((err) != NFSERR_BAD_XDR) && \
543 ((err) != NFSERR_RESOURCE) && \
544 ((err) != NFSERR_NOFILEHANDLE))
546 enum nfs4_client_state
{
551 * The nfs4_client identifies our client state to the server.
554 struct list_head cl_servers
; /* Global list of servers */
555 struct in_addr cl_addr
; /* Server identifier */
556 u64 cl_clientid
; /* constant */
557 nfs4_verifier cl_confirm
;
558 unsigned long cl_state
;
563 * The following rwsem ensures exclusive access to the server
564 * while we recover the state following a lease expiration.
566 struct rw_semaphore cl_sem
;
568 struct list_head cl_delegations
;
569 struct list_head cl_state_owners
;
570 struct list_head cl_unused
;
575 struct rpc_clnt
* cl_rpcclient
;
576 struct rpc_cred
* cl_cred
;
578 struct list_head cl_superblocks
; /* List of nfs_server structs */
580 unsigned long cl_lease_time
;
581 unsigned long cl_last_renewal
;
582 struct work_struct cl_renewd
;
583 struct work_struct cl_recoverd
;
585 wait_queue_head_t cl_waitq
;
586 struct rpc_wait_queue cl_rpcwaitq
;
588 /* used for the setclientid verifier */
589 struct timespec cl_boot_time
;
592 struct idmap
* cl_idmap
;
594 /* Our own IP address, as a null-terminated string.
595 * This is used to generate the clientid, and the callback address.
598 unsigned char cl_id_uniquifier
;
602 * NFS4 state_owners and lock_owners are simply labels for ordered
603 * sequences of RPC calls. Their sole purpose is to provide once-only
604 * semantics by allowing the server to identify replayed requests.
606 * The ->so_sema is held during all state_owner seqid-mutating operations:
607 * OPEN, OPEN_DOWNGRADE, and CLOSE. Its purpose is to properly serialize
610 struct nfs4_state_owner
{
611 struct list_head so_list
; /* per-clientid list of state_owners */
612 struct nfs4_client
*so_client
;
613 u32 so_id
; /* 32-bit identifier, unique */
614 struct semaphore so_sema
;
615 u32 so_seqid
; /* protected by so_sema */
618 struct rpc_cred
*so_cred
; /* Associated cred */
619 struct list_head so_states
;
620 struct list_head so_delegations
;
624 * struct nfs4_state maintains the client-side state for a given
625 * (state_owner,inode) tuple (OPEN) or state_owner (LOCK).
628 * In order to know when to OPEN_DOWNGRADE or CLOSE the state on the server,
629 * we need to know how many files are open for reading or writing on a
630 * given inode. This information too is stored here.
632 * LOCK: one nfs4_state (LOCK) to hold the lock stateid nfs4_state(OPEN)
635 struct nfs4_lock_state
{
636 struct list_head ls_locks
; /* Other lock stateids */
637 fl_owner_t ls_owner
; /* POSIX lock owner */
638 #define NFS_LOCK_INITIALIZED 1
642 nfs4_stateid ls_stateid
;
646 /* bits for nfs4_state->flags */
653 struct list_head open_states
; /* List of states for the same state_owner */
654 struct list_head inode_states
; /* List of states for the same inode */
655 struct list_head lock_states
; /* List of subservient lock stateids */
657 struct nfs4_state_owner
*owner
; /* Pointer to the open owner */
658 struct inode
*inode
; /* Pointer to the inode */
660 unsigned long flags
; /* Do we hold any locks? */
661 struct semaphore lock_sema
; /* Serializes file locking operations */
662 rwlock_t state_lock
; /* Protects the lock_states list */
664 nfs4_stateid stateid
;
666 unsigned int nreaders
;
667 unsigned int nwriters
;
668 int state
; /* State on the server (R,W, or RW) */
673 struct nfs4_exception
{
678 struct nfs4_state_recovery_ops
{
679 int (*recover_open
)(struct nfs4_state_owner
*, struct nfs4_state
*);
680 int (*recover_lock
)(struct nfs4_state
*, struct file_lock
*);
683 extern struct dentry_operations nfs4_dentry_operations
;
684 extern struct inode_operations nfs4_dir_inode_operations
;
687 extern int nfs4_map_errors(int err
);
688 extern int nfs4_proc_setclientid(struct nfs4_client
*, u32
, unsigned short);
689 extern int nfs4_proc_setclientid_confirm(struct nfs4_client
*);
690 extern int nfs4_proc_async_renew(struct nfs4_client
*);
691 extern int nfs4_proc_renew(struct nfs4_client
*);
692 extern int nfs4_do_close(struct inode
*inode
, struct nfs4_state
*state
, mode_t mode
);
693 extern struct inode
*nfs4_atomic_open(struct inode
*, struct dentry
*, struct nameidata
*);
694 extern int nfs4_open_revalidate(struct inode
*, struct dentry
*, int);
696 extern struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops
;
697 extern struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops
;
700 extern void nfs4_schedule_state_renewal(struct nfs4_client
*);
701 extern void nfs4_renewd_prepare_shutdown(struct nfs_server
*);
702 extern void nfs4_kill_renewd(struct nfs4_client
*);
705 extern void init_nfsv4_state(struct nfs_server
*);
706 extern void destroy_nfsv4_state(struct nfs_server
*);
707 extern struct nfs4_client
*nfs4_get_client(struct in_addr
*);
708 extern void nfs4_put_client(struct nfs4_client
*clp
);
709 extern int nfs4_init_client(struct nfs4_client
*clp
);
710 extern struct nfs4_client
*nfs4_find_client(struct in_addr
*);
711 extern u32
nfs4_alloc_lockowner_id(struct nfs4_client
*);
713 extern struct nfs4_state_owner
* nfs4_get_state_owner(struct nfs_server
*, struct rpc_cred
*);
714 extern void nfs4_put_state_owner(struct nfs4_state_owner
*);
715 extern void nfs4_drop_state_owner(struct nfs4_state_owner
*);
716 extern struct nfs4_state
* nfs4_get_open_state(struct inode
*, struct nfs4_state_owner
*);
717 extern void nfs4_put_open_state(struct nfs4_state
*);
718 extern void nfs4_close_state(struct nfs4_state
*, mode_t
);
719 extern struct nfs4_state
*nfs4_find_state(struct inode
*, struct rpc_cred
*, mode_t mode
);
720 extern void nfs4_increment_seqid(int status
, struct nfs4_state_owner
*sp
);
721 extern void nfs4_schedule_state_recovery(struct nfs4_client
*);
722 extern struct nfs4_lock_state
*nfs4_find_lock_state(struct nfs4_state
*state
, fl_owner_t
);
723 extern struct nfs4_lock_state
*nfs4_get_lock_state(struct nfs4_state
*state
, fl_owner_t
);
724 extern void nfs4_put_lock_state(struct nfs4_lock_state
*state
);
725 extern void nfs4_increment_lock_seqid(int status
, struct nfs4_lock_state
*ls
);
726 extern void nfs4_notify_setlk(struct nfs4_state
*, struct file_lock
*, struct nfs4_lock_state
*);
727 extern void nfs4_notify_unlck(struct nfs4_state
*, struct file_lock
*, struct nfs4_lock_state
*);
728 extern void nfs4_copy_stateid(nfs4_stateid
*, struct nfs4_state
*, fl_owner_t
);
732 struct nfs4_mount_data
;
734 #define init_nfsv4_state(server) do { } while (0)
735 #define destroy_nfsv4_state(server) do { } while (0)
736 #define nfs4_put_state_owner(inode, owner) do { } while (0)
737 #define nfs4_put_open_state(state) do { } while (0)
738 #define nfs4_close_state(a, b) do { } while (0)
739 #define nfs4_renewd_prepare_shutdown(server) do { } while (0)
742 #endif /* __KERNEL__ */
747 #define NFSDBG_VFS 0x0001
748 #define NFSDBG_DIRCACHE 0x0002
749 #define NFSDBG_LOOKUPCACHE 0x0004
750 #define NFSDBG_PAGECACHE 0x0008
751 #define NFSDBG_PROC 0x0010
752 #define NFSDBG_XDR 0x0020
753 #define NFSDBG_FILE 0x0040
754 #define NFSDBG_ROOT 0x0080
755 #define NFSDBG_CALLBACK 0x0100
756 #define NFSDBG_ALL 0xFFFF
761 # define ifdebug(fac) if (unlikely(nfs_debug & NFSDBG_##fac))
763 # define ifdebug(fac) if (0)
765 #endif /* __KERNEL */