blob: ccfcdc58066e4f10655e4f7f9bf75de84a913c14 [file] [log] [blame]
David Howells8ec442a2009-04-03 16:42:42 +01001/* NFS filesystem cache interface definitions
2 *
3 * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
12#ifndef _NFS_FSCACHE_H
13#define _NFS_FSCACHE_H
14
15#include <linux/nfs_fs.h>
16#include <linux/nfs_mount.h>
17#include <linux/nfs4_mount.h>
18#include <linux/fscache.h>
19
20#ifdef CONFIG_NFS_FSCACHE
21
22/*
23 * fscache-index.c
24 */
25extern struct fscache_netfs nfs_fscache_netfs;
26
27extern int nfs_fscache_register(void);
28extern void nfs_fscache_unregister(void);
29
30#else /* CONFIG_NFS_FSCACHE */
31static inline int nfs_fscache_register(void) { return 0; }
32static inline void nfs_fscache_unregister(void) {}
33
34#endif /* CONFIG_NFS_FSCACHE */
35#endif /* _NFS_FSCACHE_H */