blob: f24fc67af42ded3013cd45fba85f12cb33125469 [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_SB
3#define _NFS_FS_SB
4
5#include <linux/list.h>
6#include <linux/backing-dev.h>
Trond Myklebust9157c31d2012-01-17 22:04:24 -05007#include <linux/idr.h>
Steve Dicksonef818a22007-11-08 04:05:04 -05008#include <linux/wait.h>
Andy Adamson557134a2009-04-01 09:21:53 -04009#include <linux/nfs_xdr.h>
10#include <linux/sunrpc/xprt.h>
Steve Dicksonef818a22007-11-08 04:05:04 -050011
Arun Sharma600634972011-07-26 16:09:06 -070012#include <linux/atomic.h>
Elena Reshetova212bf412017-10-20 12:53:38 +030013#include <linux/refcount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Andy Adamson557134a2009-04-01 09:21:53 -040015struct nfs4_session;
Chuck Leverd9ef5a82006-03-20 13:44:13 -050016struct nfs_iostats;
Chuck Lever9289e7f2008-01-11 17:09:52 -050017struct nlm_host;
Andy Adamsoncccef3b2009-04-01 09:22:03 -040018struct nfs4_sequence_args;
19struct nfs4_sequence_res;
20struct nfs_server;
Trond Myklebust97dc1352010-06-16 09:52:26 -040021struct nfs4_minor_version_ops;
Chuck Lever79d4e1f2012-05-21 22:44:31 -040022struct nfs41_server_scope;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -050023struct nfs41_impl_id;
Chuck Leverd9ef5a82006-03-20 13:44:13 -050024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
David Howells24c8dbb2006-08-22 20:06:10 -040026 * The nfs_client identifies our client state to the server.
27 */
28struct nfs_client {
Elena Reshetova212bf412017-10-20 12:53:38 +030029 refcount_t cl_count;
Trond Myklebust2a4c8992012-06-14 13:08:38 -040030 atomic_t cl_mds_count;
David Howells24c8dbb2006-08-22 20:06:10 -040031 int cl_cons_state; /* current construction state (-ve: init error) */
32#define NFS_CS_READY 0 /* ready to be used */
33#define NFS_CS_INITING 1 /* busy initialising */
Andy Adamson76db6d92009-04-01 09:22:38 -040034#define NFS_CS_SESSION_INITING 2 /* busy initialising session */
David Howells24c8dbb2006-08-22 20:06:10 -040035 unsigned long cl_res_state; /* NFS resources state */
David Howells24c8dbb2006-08-22 20:06:10 -040036#define NFS_CS_CALLBACK 1 /* - callback started */
37#define NFS_CS_IDMAP 2 /* - idmap started */
Trond Myklebust5dd31772006-08-24 01:03:05 -040038#define NFS_CS_RENEWD 3 /* - renewd started */
Andy Adamsond3b4c9d2011-03-01 01:34:10 +000039#define NFS_CS_STOP_RENEW 4 /* no more state to renew */
Andy Adamsond6fb79d2011-03-01 01:34:11 +000040#define NFS_CS_CHECK_LEASE_TIME 5 /* need to check lease time */
Chuck Lever4bf590e2012-05-21 22:46:07 -040041 unsigned long cl_flags; /* behavior switches */
42#define NFS_CS_NORESVPORT 0 /* - use ephemeral src port */
43#define NFS_CS_DISCRTRY 1 /* - disconnect on RPC retry */
Chuck Lever89652612012-09-14 17:24:11 -040044#define NFS_CS_MIGRATION 2 /* - transparent state migr */
Trond Myklebust98f98cf2013-04-14 11:49:51 -040045#define NFS_CS_INFINITE_SLOTS 3 /* - don't limit TCP slots */
Trond Myklebust99875242013-09-24 12:06:07 -040046#define NFS_CS_NO_RETRANS_TIMEOUT 4 /* - Disable retransmit timeouts */
Chuck Lever8dcbec62017-06-08 11:52:44 -040047#define NFS_CS_TSM_POSSIBLE 5 /* - Maybe state migration */
Trond Myklebust4b1b69c2019-10-03 14:08:43 -040048#define NFS_CS_NOPING 6 /* - don't ping on connect */
Trond Myklebust52f98f1a22019-10-17 09:49:45 -040049#define NFS_CS_DS 7 /* - Server is a DS */
Trond Myklebuste6237b62019-10-17 11:13:54 -040050#define NFS_CS_REUSEPORT 8 /* - reuse src port on reconnect */
Chuck Lever6e4cffd2007-12-10 14:58:15 -050051 struct sockaddr_storage cl_addr; /* server identifier */
52 size_t cl_addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -040053 char * cl_hostname; /* hostname of server */
Jeff Laytonf11b2a12014-06-21 20:52:17 -040054 char * cl_acceptor; /* GSSAPI acceptor name */
David Howells24c8dbb2006-08-22 20:06:10 -040055 struct list_head cl_share_link; /* link in global client list */
56 struct list_head cl_superblocks; /* List of nfs_server structs */
57
58 struct rpc_clnt * cl_rpcclient;
David Howells8fa5c002006-08-22 20:06:12 -040059 const struct nfs_rpc_ops *rpc_ops; /* NFS protocol vector */
Trond Myklebust59dca3b2008-01-03 16:29:06 -050060 int cl_proto; /* Network transport protocol */
Bryan Schumakerab7017a2012-07-30 16:05:16 -040061 struct nfs_subversion * cl_nfs_mod; /* pointer to nfs version module */
David Howells24c8dbb2006-08-22 20:06:10 -040062
Benny Halevy94a417f2009-04-01 09:21:49 -040063 u32 cl_minorversion;/* NFSv4 minorversion */
Trond Myklebust66190792017-04-27 11:13:40 -040064 unsigned int cl_nconnect; /* Number of connections */
Olga Kornievskaia7e134202021-08-27 14:37:17 -040065 unsigned int cl_max_connect; /* max number of xprts allowed */
NeilBrown5e169232018-12-03 11:30:30 +110066 const char * cl_principal; /* used for machine cred */
Trond Myklebust7c67db32008-04-07 20:50:11 -040067
Bryan Schumaker89d77c82012-07-30 16:05:25 -040068#if IS_ENABLED(CONFIG_NFS_V4)
Andy Adamson0e201622013-09-06 14:14:00 -040069 struct list_head cl_ds_clients; /* auth flavor data servers */
David Howells24c8dbb2006-08-22 20:06:10 -040070 u64 cl_clientid; /* constant */
Trond Myklebustfd954ae12011-04-24 14:28:18 -040071 nfs4_verifier cl_confirm; /* Clientid verifier */
David Howells24c8dbb2006-08-22 20:06:10 -040072 unsigned long cl_state;
73
David Howells24c8dbb2006-08-22 20:06:10 -040074 spinlock_t cl_lock;
75
76 unsigned long cl_lease_time;
77 unsigned long cl_last_renewal;
David Howells52bad642006-11-22 14:54:01 +000078 struct delayed_work cl_renewd;
David Howells24c8dbb2006-08-22 20:06:10 -040079
80 struct rpc_wait_queue cl_rpcwaitq;
81
David Howells24c8dbb2006-08-22 20:06:10 -040082 /* idmapper */
83 struct idmap * cl_idmap;
84
Trond Myklebustceb3a162015-01-03 15:16:04 -050085 /* Client owner identifier */
86 const char * cl_owner_id;
87
Andy Adamsonf4eecd52011-01-06 02:04:30 +000088 u32 cl_cb_ident; /* v4.0 callback identifier */
Trond Myklebust97dc1352010-06-16 09:52:26 -040089 const struct nfs4_minor_version_ops *cl_mvops;
Chuck Leverc9fdeb22013-10-17 14:13:02 -040090 unsigned long cl_mig_gen;
David Howells14727282009-04-03 16:42:42 +010091
Chuck Leverabf79bb2013-08-09 12:49:11 -040092 /* NFSv4.0 transport blocking */
93 struct nfs4_slot_table *cl_slot_tbl;
94
Benny Halevy99fe60d2009-04-01 09:22:29 -040095 /* The sequence id to use for the next CREATE_SESSION */
96 u32 cl_seqid;
97 /* The flags used for obtaining the clientid during EXCHANGE_ID */
98 u32 cl_exchange_flags;
Chuck Lever722baaf2012-05-21 22:44:22 -040099 struct nfs4_session *cl_session; /* shared session */
Chuck Lever05f4c352012-09-14 17:24:32 -0400100 bool cl_preserve_clid;
Chuck Leveracdeb692012-05-21 22:46:16 -0400101 struct nfs41_server_owner *cl_serverowner;
Chuck Lever79d4e1f2012-05-21 22:44:31 -0400102 struct nfs41_server_scope *cl_serverscope;
Chuck Lever59155542012-05-21 22:44:41 -0400103 struct nfs41_impl_id *cl_implid;
Weston Andros Adamson2031cd12013-08-13 16:37:32 -0400104 /* nfs 4.1+ state protection modes: */
105 unsigned long cl_sp4_flags;
106#define NFS_SP4_MACH_CRED_MINIMAL 1 /* Minimal sp4_mach_cred - state ops
107 * must use machine cred */
Weston Andros Adamsonfa940722013-08-13 16:37:34 -0400108#define NFS_SP4_MACH_CRED_CLEANUP 2 /* CLOSE and LOCKU */
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -0400109#define NFS_SP4_MACH_CRED_SECINFO 3 /* SECINFO and SECINFO_NO_NAME */
Weston Andros Adamson3787d502013-08-13 16:37:36 -0400110#define NFS_SP4_MACH_CRED_STATEID 4 /* TEST_STATEID and FREE_STATEID */
Weston Andros Adamson8c21c622013-08-13 16:37:37 -0400111#define NFS_SP4_MACH_CRED_WRITE 5 /* WRITE */
112#define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */
Andrew Elble99ade3c2015-12-02 09:39:51 -0500113#define NFS_SP4_MACH_CRED_PNFS_CLEANUP 7 /* LAYOUTRETURN */
Jeff Laytona1d617d82016-09-17 18:17:39 -0400114#if IS_ENABLED(CONFIG_NFS_V4_1)
115 wait_queue_head_t cl_lock_waitq;
116#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500117#endif /* CONFIG_NFS_V4 */
Andy Adamson557134a2009-04-01 09:21:53 -0400118
Peng Tao1a04c6e2014-05-30 18:15:57 +0800119 /* Our own IP address, as a null-terminated string.
120 * This is used to generate the mv0 callback address.
121 */
122 char cl_ipaddr[48];
123
David Howells14727282009-04-03 16:42:42 +0100124#ifdef CONFIG_NFS_FSCACHE
125 struct fscache_cookie *fscache; /* client index cache cookie */
126#endif
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -0400127
Chuck Lever73ea6662012-05-21 22:44:50 -0400128 struct net *cl_net;
Olga Kornievskaiabc0c9072018-07-09 15:13:32 -0400129 struct list_head pending_cb_stateids;
David Howells24c8dbb2006-08-22 20:06:10 -0400130};
131
132/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * NFS client parameters stored in the superblock.
134 */
135struct nfs_server {
David Howells27951bd2006-08-22 20:06:11 -0400136 struct nfs_client * nfs_client; /* shared client and NFS4 state */
David Howells54ceac42006-08-22 20:06:13 -0400137 struct list_head client_link; /* List of other nfs_server structs
138 * that share the same client
139 */
140 struct list_head master_link; /* link in master servers list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct rpc_clnt * client; /* RPC client handle */
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000142 struct rpc_clnt * client_acl; /* ACL RPC client handle */
Chuck Lever9289e7f2008-01-11 17:09:52 -0500143 struct nlm_host *nlm_host; /* NLM client handle */
Tejun Heo003cb602010-02-02 14:39:01 +0900144 struct nfs_iostats __percpu *io_stats; /* I/O statistics */
Peter Zijlstra277866a2007-05-08 00:35:12 -0700145 atomic_long_t writeback; /* number of writeback pages */
Trond Myklebust75cfb202021-02-12 16:49:47 -0500146 unsigned int flags; /* various flags */
Trond Myklebust7b1355b2019-04-07 13:59:00 -0400147
148/* The following are for internal use only. Also see uapi/linux/nfs_mount.h */
149#define NFS_MOUNT_LOOKUP_CACHE_NONEG 0x10000
150#define NFS_MOUNT_LOOKUP_CACHE_NONE 0x20000
151#define NFS_MOUNT_NORESVPORT 0x40000
152#define NFS_MOUNT_LEGACY_INTERFACE 0x80000
153#define NFS_MOUNT_LOCAL_FLOCK 0x100000
154#define NFS_MOUNT_LOCAL_FCNTL 0x200000
Trond Myklebust91a575e2019-04-07 13:59:01 -0400155#define NFS_MOUNT_SOFTERR 0x400000
Trond Myklebustc74dfe92020-01-06 15:39:37 -0500156#define NFS_MOUNT_SOFTREVAL 0x800000
Trond Myklebusted7bcdb2021-02-12 16:49:48 -0500157#define NFS_MOUNT_WRITE_EAGER 0x01000000
158#define NFS_MOUNT_WRITE_WAIT 0x02000000
Trond Myklebust7b1355b2019-04-07 13:59:00 -0400159
Trond Myklebustd99f2482021-04-21 07:48:43 -0400160 unsigned int fattr_valid; /* Valid attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 unsigned int caps; /* server capabilities */
162 unsigned int rsize; /* read size */
163 unsigned int rpages; /* read size (in pages) */
164 unsigned int wsize; /* write size */
165 unsigned int wpages; /* write size (in pages) */
166 unsigned int wtmult; /* server disk block size */
167 unsigned int dtsize; /* readdir size */
Chuck Leverf22d6d72008-03-14 14:10:22 -0400168 unsigned short port; /* "port=" setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 unsigned int bsize; /* server block size */
Frank van der Linden04a5da62020-06-23 22:38:54 +0000170#ifdef CONFIG_NFS_V4_2
171 unsigned int gxasize; /* getxattr size */
172 unsigned int sxasize; /* setxattr size */
173 unsigned int lxasize; /* listxattr size */
174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 unsigned int acregmin; /* attr cache timeouts */
176 unsigned int acregmax;
177 unsigned int acdirmin;
178 unsigned int acdirmax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 unsigned int namelen;
David Howellsc6a6f192009-04-03 16:42:42 +0100180 unsigned int options; /* extra options enabled by mount */
Peng Tao2a92ee92015-09-26 02:24:37 +0800181 unsigned int clone_blksize; /* granularity of a CLONE operation */
David Howellsc6a6f192009-04-03 16:42:42 +0100182#define NFS_OPTION_FSCACHE 0x00000001 /* - local caching enabled */
Chuck Lever89652612012-09-14 17:24:11 -0400183#define NFS_OPTION_MIGRATION 0x00000002 /* - NFSv4 migration enabled */
David Howells54ceac42006-08-22 20:06:13 -0400184
Trond Myklebust7f08a332021-03-26 09:50:19 -0400185 enum nfs4_change_attr_type
186 change_attr_type;/* Description of change attribute */
187
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -0400188 struct nfs_fsid fsid;
David Howells54ceac42006-08-22 20:06:13 -0400189 __u64 maxfilesize; /* maximum file size */
Trond Myklebuste86d5a02019-10-04 16:38:56 -0400190 struct timespec64 time_delta; /* smallest time granularity */
Chuck Lever67ec9f42006-03-20 13:44:15 -0500191 unsigned long mount_time; /* when this fs was mounted */
Chuck Leverce6cda12013-10-17 14:12:56 -0400192 struct super_block *super; /* VFS super block */
David Howells54ceac42006-08-22 20:06:13 -0400193 dev_t s_dev; /* superblock dev numbers */
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400194 struct nfs_auth_info auth_info; /* parsed auth flavors */
David Howells54ceac42006-08-22 20:06:13 -0400195
David Howells08734042009-04-03 16:42:42 +0100196#ifdef CONFIG_NFS_FSCACHE
197 struct nfs_fscache_key *fscache_key; /* unique key for superblock */
198 struct fscache_cookie *fscache; /* superblock cookie */
199#endif
200
Trond Myklebusta00ed252011-07-31 16:39:04 -0400201 u32 pnfs_blksize; /* layout_blksize attr */
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400202#if IS_ENABLED(CONFIG_NFS_V4)
Fred Isamandae100c2011-07-30 20:52:37 -0400203 u32 attr_bitmask[3];/* V4 bitmask representing the set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 of attributes supported on this
205 filesystem */
David Quigleyaa9c2662013-05-22 12:50:44 -0400206 u32 attr_bitmask_nl[3];
207 /* V4 bitmask representing the
208 set of attributes supported
209 on this filesystem excluding
210 the label support bit. */
Kinglong Mee8c612822015-08-26 21:12:58 +0800211 u32 exclcreat_bitmask[3];
212 /* V4 bitmask representing the
213 set of attributes supported
214 on this filesystem for the
215 exclusive create. */
David Quigleya09df2c2013-05-22 12:50:41 -0400216 u32 cache_consistency_bitmask[3];
Trond Myklebusta65318b2009-03-11 14:10:28 -0400217 /* V4 bitmask representing the subset
218 of change attribute, size, ctime
219 and mtime attributes supported by
220 the server */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 u32 acl_bitmask; /* V4 bitmask representing the ACEs
222 that are supported on this
223 filesystem */
Chuck Lever264e6352012-03-01 17:02:05 -0500224 u32 fh_expire_type; /* V4 bitmask representing file
225 handle volatility type for
226 this filesystem */
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400227 struct pnfs_layoutdriver_type *pnfs_curr_ld; /* Active layout driver */
Fred Isamanf7e89172011-01-06 11:36:32 +0000228 struct rpc_wait_queue roc_rpcwaitq;
Fred Isaman2f9fd182011-07-30 20:52:46 -0400229 void *pnfs_ld_data; /* per mount point data */
Chuck Lever24d292b2010-12-24 01:32:43 +0000230
231 /* the following fields are protected by nfs_client->cl_lock */
232 struct rb_root state_owners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233#endif
Trond Myklebust9157c31d2012-01-17 22:04:24 -0500234 struct ida openowner_id;
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500235 struct ida lockowner_id;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500236 struct list_head state_owners_lru;
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400237 struct list_head layouts;
Chuck Leverd3978bb2010-12-24 01:33:04 +0000238 struct list_head delegations;
Olga Kornievskaia62164f32018-07-09 15:13:31 -0400239 struct list_head ss_copies;
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400240
241 unsigned long mig_gen;
242 unsigned long mig_status;
243#define NFS_MIG_IN_TRANSITION (1)
244#define NFS_MIG_FAILED (2)
Chuck Lever8dcbec62017-06-08 11:52:44 -0400245#define NFS_MIG_TSM_POSSIBLE (3)
Chuck Leverc9fdeb22013-10-17 14:13:02 -0400246
David Howells54ceac42006-08-22 20:06:13 -0400247 void (*destroy)(struct nfs_server *);
Steve Dicksonef818a22007-11-08 04:05:04 -0500248
249 atomic_t active; /* Keep trace of any activity to this server */
Chuck Lever3f8400d2008-03-14 14:10:30 -0400250
251 /* mountd-related mount options */
252 struct sockaddr_storage mountd_address;
253 size_t mountd_addrlen;
254 u32 mountd_version;
255 unsigned short mountd_port;
256 unsigned short mountd_protocol;
Benjamin Coddington7d6ddf82017-04-11 12:50:10 -0400257 struct rpc_wait_queue uoc_rpcwaitq;
Trond Myklebust8d8928d2018-03-05 12:03:00 -0500258
259 /* XDR related information */
260 unsigned int read_hdrsize;
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400261
262 /* User namespace info */
263 const struct cred *cred;
Olga Kornievskaiaec1ade62021-02-19 17:22:33 -0500264 bool has_sec_mnt_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
267/* Server capabilities */
268#define NFS_CAP_READDIRPLUS (1U << 0)
269#define NFS_CAP_HARDLINKS (1U << 1)
270#define NFS_CAP_SYMLINKS (1U << 2)
271#define NFS_CAP_ACLS (1U << 3)
272#define NFS_CAP_ATOMIC_OPEN (1U << 4)
Fred Isaman6e012602016-10-04 15:26:41 -0400273#define NFS_CAP_LGOPEN (1U << 5)
Trond Myklebust1ab5be42021-12-17 15:36:54 -0500274#define NFS_CAP_CASE_INSENSITIVE (1U << 6)
275#define NFS_CAP_CASE_PRESERVING (1U << 7)
Trond Myklebust0df5dd42010-04-11 16:48:44 -0400276#define NFS_CAP_POSIX_LOCK (1U << 14)
Trond Myklebustb064eca22011-02-22 15:44:32 -0800277#define NFS_CAP_UIDGID_NOMAP (1U << 15)
Trond Myklebust3b664862013-03-17 15:31:15 -0400278#define NFS_CAP_STATEID_NFSV41 (1U << 16)
Trond Myklebust49f9a0f2013-03-15 16:44:28 -0400279#define NFS_CAP_ATOMIC_OPEN_V1 (1U << 17)
David Quigleye64a4212013-05-22 12:50:39 -0400280#define NFS_CAP_SECURITY_LABEL (1U << 18)
Anna Schumaker1c6dcbe2014-09-26 13:58:48 -0400281#define NFS_CAP_SEEK (1U << 19)
Anna Schumakerf4ac1672014-11-25 13:18:15 -0500282#define NFS_CAP_ALLOCATE (1U << 20)
Anna Schumaker624bd5b2014-11-25 13:18:16 -0500283#define NFS_CAP_DEALLOCATE (1U << 21)
Trond Myklebust6c5a0d82015-06-27 11:45:46 -0400284#define NFS_CAP_LAYOUTSTATS (1U << 22)
Peng Taoe5341f32015-09-26 02:24:35 +0800285#define NFS_CAP_CLONE (1U << 23)
Anna Schumaker2e724482013-05-21 16:53:03 -0400286#define NFS_CAP_COPY (1U << 24)
Olga Kornievskaiacb95dee2018-07-09 15:13:29 -0400287#define NFS_CAP_OFFLOAD_CANCEL (1U << 25)
Trond Myklebust3eb86092019-02-08 10:31:05 -0500288#define NFS_CAP_LAYOUTERROR (1U << 26)
Olga Kornievskaia04915672019-06-04 16:14:30 -0400289#define NFS_CAP_COPY_NOTIFY (1U << 27)
Frank van der Lindenb78ef842020-06-23 22:38:55 +0000290#define NFS_CAP_XATTR (1U << 28)
Anna Schumakerc5675522014-05-28 13:41:22 -0400291#define NFS_CAP_READ_PLUS (1U << 29)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293#endif