Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/include/linux/sunrpc/clnt.h |
| 4 | * |
| 5 | * Declarations for the high-level RPC client interface |
| 6 | * |
| 7 | * Copyright (C) 1995, 1996, Olaf Kirch <okir@monad.swb.de> |
| 8 | */ |
| 9 | |
| 10 | #ifndef _LINUX_SUNRPC_CLNT_H |
| 11 | #define _LINUX_SUNRPC_CLNT_H |
| 12 | |
Trond Myklebust | d77385f | 2011-10-17 16:08:10 -0700 | [diff] [blame] | 13 | #include <linux/types.h> |
Chuck Lever | a02d692 | 2009-08-09 15:09:34 -0400 | [diff] [blame] | 14 | #include <linux/socket.h> |
| 15 | #include <linux/in.h> |
| 16 | #include <linux/in6.h> |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/sunrpc/msg_prot.h> |
| 19 | #include <linux/sunrpc/sched.h> |
| 20 | #include <linux/sunrpc/xprt.h> |
| 21 | #include <linux/sunrpc/auth.h> |
| 22 | #include <linux/sunrpc/stats.h> |
| 23 | #include <linux/sunrpc/xdr.h> |
| 24 | #include <linux/sunrpc/timer.h> |
Trond Myklebust | 6739ffb | 2013-08-26 15:38:11 -0400 | [diff] [blame] | 25 | #include <linux/sunrpc/rpc_pipe_fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/signal.h> |
Trond Myklebust | 7d217ca | 2009-08-09 15:14:24 -0400 | [diff] [blame] | 27 | #include <linux/path.h> |
Jeff Layton | 4516fc0 | 2009-08-14 12:57:54 -0400 | [diff] [blame] | 28 | #include <net/ipv6.h> |
Trond Myklebust | ad01b2c | 2016-01-30 14:17:26 -0500 | [diff] [blame] | 29 | #include <linux/sunrpc/xprtmultipath.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | struct rpc_inode; |
| 32 | |
| 33 | /* |
| 34 | * The high-level client handle |
| 35 | */ |
| 36 | struct rpc_clnt { |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 37 | atomic_t cl_count; /* Number of references */ |
Trond Myklebust | 2f048db | 2013-09-04 21:51:44 -0400 | [diff] [blame] | 38 | unsigned int cl_clid; /* client id */ |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 39 | struct list_head cl_clients; /* Global list of clients */ |
| 40 | struct list_head cl_tasks; /* List of tasks */ |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 41 | spinlock_t cl_lock; /* spinlock */ |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 42 | struct rpc_xprt __rcu * cl_xprt; /* transport */ |
Christoph Hellwig | 499b498 | 2017-05-12 15:36:49 +0200 | [diff] [blame] | 43 | const struct rpc_procinfo *cl_procinfo; /* procedure info */ |
Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 44 | u32 cl_prog, /* RPC program number */ |
| 45 | cl_vers, /* RPC version number */ |
| 46 | cl_maxproc; /* max procedure number */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | struct rpc_auth * cl_auth; /* authenticator */ |
Chuck Lever | 11c556b | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 49 | struct rpc_stat * cl_stats; /* per-program statistics */ |
| 50 | struct rpc_iostats * cl_metrics; /* per-client statistics */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | unsigned int cl_softrtry : 1,/* soft timeouts */ |
Chuck Lever | 43d78ef | 2007-02-06 18:26:11 -0500 | [diff] [blame] | 53 | cl_discrtry : 1,/* disconnect before retry */ |
Trond Myklebust | 8a19a0b | 2013-09-24 12:00:27 -0400 | [diff] [blame] | 54 | cl_noretranstimeo: 1,/* No retransmit timeouts */ |
Olga Kornievskaia | b6b6152 | 2008-06-09 16:51:31 -0400 | [diff] [blame] | 55 | cl_autobind : 1,/* use getport() */ |
| 56 | cl_chatty : 1;/* be verbose */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | struct rpc_rtt * cl_rtt; /* RTO estimator data */ |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 59 | const struct rpc_timeout *cl_timeout; /* Timeout strategy */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Jeff Layton | 3c87ef6 | 2015-06-03 16:14:25 -0400 | [diff] [blame] | 61 | atomic_t cl_swapper; /* swapfile count */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | int cl_nodelen; /* nodename length */ |
Trond Myklebust | 03a9a42 | 2015-01-30 18:12:28 -0500 | [diff] [blame] | 63 | char cl_nodename[UNX_MAXNODENAME+1]; |
Trond Myklebust | 6739ffb | 2013-08-26 15:38:11 -0400 | [diff] [blame] | 64 | struct rpc_pipe_dir_head cl_pipedir_objects; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ |
| 66 | struct rpc_rtt cl_rtt_default; |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 67 | struct rpc_timeout cl_timeout_default; |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 68 | const struct rpc_program *cl_program; |
Jeff Layton | b4b9d2c | 2014-11-26 14:44:43 -0500 | [diff] [blame] | 69 | #if IS_ENABLED(CONFIG_SUNRPC_DEBUG) |
| 70 | struct dentry *cl_debugfs; /* debugfs directory */ |
| 71 | #endif |
Trond Myklebust | ad01b2c | 2016-01-30 14:17:26 -0500 | [diff] [blame] | 72 | struct rpc_xprt_iter cl_xpi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | /* |
| 76 | * General RPC program info |
| 77 | */ |
| 78 | #define RPC_MAXVERSION 4 |
| 79 | struct rpc_program { |
Trond Myklebust | 080b794 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 80 | const char * name; /* protocol name */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | u32 number; /* program number */ |
| 82 | unsigned int nrvers; /* number of versions */ |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 83 | const struct rpc_version ** version; /* version array */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | struct rpc_stat * stats; /* statistics */ |
Trond Myklebust | 080b794 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 85 | const char * pipe_dir_name; /* path to rpc_pipefs dir */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | struct rpc_version { |
| 89 | u32 number; /* version number */ |
| 90 | unsigned int nrprocs; /* number of procs */ |
Christoph Hellwig | 499b498 | 2017-05-12 15:36:49 +0200 | [diff] [blame] | 91 | const struct rpc_procinfo *procs; /* procedure array */ |
Christoph Hellwig | 1c5876d | 2017-05-08 23:27:10 +0200 | [diff] [blame] | 92 | unsigned int *counts; /* call counts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | /* |
| 96 | * Procedure information |
| 97 | */ |
| 98 | struct rpc_procinfo { |
| 99 | u32 p_proc; /* RPC procedure number */ |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 100 | kxdreproc_t p_encode; /* XDR encode function */ |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 101 | kxdrdproc_t p_decode; /* XDR decode function */ |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 102 | unsigned int p_arglen; /* argument hdr length (u32) */ |
| 103 | unsigned int p_replen; /* reply hdr length (u32) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | unsigned int p_timer; /* Which RTT timer to use */ |
Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 105 | u32 p_statidx; /* Which procedure to account */ |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 106 | const char * p_name; /* name of procedure */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | }; |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | #ifdef __KERNEL__ |
| 110 | |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 111 | struct rpc_create_args { |
Pavel Emelyanov | c653ce3 | 2010-09-29 16:04:45 +0400 | [diff] [blame] | 112 | struct net *net; |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 113 | int protocol; |
| 114 | struct sockaddr *address; |
| 115 | size_t addrsize; |
Frank van Maarseveen | d3bc9a1 | 2007-07-09 22:23:35 +0200 | [diff] [blame] | 116 | struct sockaddr *saddress; |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 117 | const struct rpc_timeout *timeout; |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 118 | const char *servername; |
Trond Myklebust | 03a9a42 | 2015-01-30 18:12:28 -0500 | [diff] [blame] | 119 | const char *nodename; |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 120 | const struct rpc_program *program; |
Benny Halevy | d5b337b | 2008-09-28 09:21:26 +0300 | [diff] [blame] | 121 | u32 prognumber; /* overrides program->number */ |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 122 | u32 version; |
| 123 | rpc_authflavor_t authflavor; |
| 124 | unsigned long flags; |
Olga Kornievskaia | 608207e | 2008-12-23 16:17:40 -0500 | [diff] [blame] | 125 | char *client_name; |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 126 | struct svc_xprt *bc_xprt; /* NFSv4.1 backchannel */ |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 127 | }; |
| 128 | |
Andy Adamson | fda0ab4 | 2016-09-09 09:22:26 -0400 | [diff] [blame] | 129 | struct rpc_add_xprt_test { |
| 130 | int (*add_xprt_test)(struct rpc_clnt *, |
| 131 | struct rpc_xprt *, |
| 132 | void *calldata); |
| 133 | void *data; |
| 134 | }; |
| 135 | |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 136 | /* Values for "flags" field */ |
| 137 | #define RPC_CLNT_CREATE_HARDRTRY (1UL << 0) |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 138 | #define RPC_CLNT_CREATE_AUTOBIND (1UL << 2) |
Trond Myklebust | 90c5755 | 2007-06-09 19:49:36 -0400 | [diff] [blame] | 139 | #define RPC_CLNT_CREATE_NONPRIVPORT (1UL << 3) |
| 140 | #define RPC_CLNT_CREATE_NOPING (1UL << 4) |
| 141 | #define RPC_CLNT_CREATE_DISCRTRY (1UL << 5) |
Olga Kornievskaia | b6b6152 | 2008-06-09 16:51:31 -0400 | [diff] [blame] | 142 | #define RPC_CLNT_CREATE_QUIET (1UL << 6) |
Trond Myklebust | b7993ce | 2013-04-14 11:42:00 -0400 | [diff] [blame] | 143 | #define RPC_CLNT_CREATE_INFINITE_SLOTS (1UL << 7) |
J. Bruce Fields | 33d90ac | 2013-04-11 15:06:36 -0400 | [diff] [blame] | 144 | #define RPC_CLNT_CREATE_NO_IDLE_TIMEOUT (1UL << 8) |
Trond Myklebust | 8a19a0b | 2013-09-24 12:00:27 -0400 | [diff] [blame] | 145 | #define RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT (1UL << 9) |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 146 | |
| 147 | struct rpc_clnt *rpc_create(struct rpc_create_args *args); |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 148 | struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *, |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 149 | const struct rpc_program *, u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | struct rpc_clnt *rpc_clone_client(struct rpc_clnt *); |
Chuck Lever | ba9b584 | 2012-09-14 17:24:02 -0400 | [diff] [blame] | 151 | struct rpc_clnt *rpc_clone_client_set_auth(struct rpc_clnt *, |
| 152 | rpc_authflavor_t); |
Trond Myklebust | 40b00b6b | 2013-10-17 14:12:23 -0400 | [diff] [blame] | 153 | int rpc_switch_client_transport(struct rpc_clnt *, |
| 154 | struct xprt_create *, |
| 155 | const struct rpc_timeout *); |
| 156 | |
Trond Myklebust | 4c402b4 | 2007-06-14 16:40:32 -0400 | [diff] [blame] | 157 | void rpc_shutdown_client(struct rpc_clnt *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | void rpc_release_client(struct rpc_clnt *); |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 159 | void rpc_task_release_client(struct rpc_task *); |
Chuck Lever | cce63cd | 2007-07-01 12:13:12 -0400 | [diff] [blame] | 160 | |
Stanislav Kinsbursky | f7a30c1 | 2012-01-13 12:52:51 +0400 | [diff] [blame] | 161 | int rpcb_create_local(struct net *); |
| 162 | void rpcb_put_local(struct net *); |
Stanislav Kinsbursky | 977ac31 | 2012-01-13 12:52:43 +0400 | [diff] [blame] | 163 | int rpcb_register(struct net *, u32, u32, int, unsigned short); |
| 164 | int rpcb_v4_register(struct net *net, const u32 program, |
| 165 | const u32 version, |
Chuck Lever | c2e1b09 | 2008-07-14 16:03:30 -0400 | [diff] [blame] | 166 | const struct sockaddr *address, |
Chuck Lever | 14aeb21 | 2008-08-18 19:34:00 -0400 | [diff] [blame] | 167 | const char *netid); |
Chuck Lever | 45160d6 | 2007-07-01 12:13:17 -0400 | [diff] [blame] | 168 | void rpcb_getport_async(struct rpc_task *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Trond Myklebust | 77de2c5 | 2007-10-25 18:40:21 -0400 | [diff] [blame] | 170 | void rpc_call_start(struct rpc_task *); |
Trond Myklebust | cbc2005 | 2008-02-14 11:11:30 -0500 | [diff] [blame] | 171 | int rpc_call_async(struct rpc_clnt *clnt, |
| 172 | const struct rpc_message *msg, int flags, |
| 173 | const struct rpc_call_ops *tk_ops, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 174 | void *calldata); |
Trond Myklebust | cbc2005 | 2008-02-14 11:11:30 -0500 | [diff] [blame] | 175 | int rpc_call_sync(struct rpc_clnt *clnt, |
| 176 | const struct rpc_message *msg, int flags); |
Trond Myklebust | 5e1550d | 2007-06-23 10:17:16 -0400 | [diff] [blame] | 177 | struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, |
| 178 | int flags); |
Trond Myklebust | f1f88fc | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 179 | int rpc_restart_call_prepare(struct rpc_task *); |
| 180 | int rpc_restart_call(struct rpc_task *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | void rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int); |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 182 | struct net * rpc_net_ns(struct rpc_clnt *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | size_t rpc_max_payload(struct rpc_clnt *); |
Chuck Lever | 6b26cc8 | 2016-05-02 14:40:40 -0400 | [diff] [blame] | 184 | size_t rpc_max_bc_payload(struct rpc_clnt *); |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 185 | void rpc_force_rebind(struct rpc_clnt *); |
Chuck Lever | ed39440 | 2006-08-22 20:06:17 -0400 | [diff] [blame] | 186 | size_t rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t); |
Chuck Lever | b454ae9 | 2008-01-07 18:34:48 -0500 | [diff] [blame] | 187 | const char *rpc_peeraddr2str(struct rpc_clnt *, enum rpc_display_format_t); |
Chuck Lever | 2e738fd | 2012-03-01 17:01:14 -0500 | [diff] [blame] | 188 | int rpc_localaddr(struct rpc_clnt *, struct sockaddr *, size_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Trond Myklebust | 3227886 | 2016-01-30 20:39:19 -0500 | [diff] [blame] | 190 | int rpc_clnt_iterate_for_each_xprt(struct rpc_clnt *clnt, |
| 191 | int (*fn)(struct rpc_clnt *, struct rpc_xprt *, void *), |
| 192 | void *data); |
| 193 | |
Trond Myklebust | 7f55489 | 2016-01-30 23:43:35 -0500 | [diff] [blame] | 194 | int rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt, |
| 195 | struct rpc_xprt_switch *xps, |
| 196 | struct rpc_xprt *xprt, |
| 197 | void *dummy); |
| 198 | int rpc_clnt_add_xprt(struct rpc_clnt *, struct xprt_create *, |
| 199 | int (*setup)(struct rpc_clnt *, |
| 200 | struct rpc_xprt_switch *, |
| 201 | struct rpc_xprt *, |
| 202 | void *), |
| 203 | void *data); |
Trond Myklebust | 26ae102 | 2017-02-08 11:17:55 -0500 | [diff] [blame] | 204 | void rpc_set_connect_timeout(struct rpc_clnt *clnt, |
| 205 | unsigned long connect_timeout, |
| 206 | unsigned long reconnect_timeout); |
Trond Myklebust | 7f55489 | 2016-01-30 23:43:35 -0500 | [diff] [blame] | 207 | |
Andy Adamson | fda0ab4 | 2016-09-09 09:22:26 -0400 | [diff] [blame] | 208 | int rpc_clnt_setup_test_and_add_xprt(struct rpc_clnt *, |
| 209 | struct rpc_xprt_switch *, |
| 210 | struct rpc_xprt *, |
| 211 | void *); |
| 212 | |
Jeff Layton | b4b9d2c | 2014-11-26 14:44:43 -0500 | [diff] [blame] | 213 | const char *rpc_proc_name(const struct rpc_task *task); |
Andy Adamson | 3b58a8a | 2016-09-09 09:22:23 -0400 | [diff] [blame] | 214 | |
| 215 | void rpc_clnt_xprt_switch_put(struct rpc_clnt *); |
Andy Adamson | dd69171 | 2016-09-09 09:22:24 -0400 | [diff] [blame] | 216 | void rpc_clnt_xprt_switch_add_xprt(struct rpc_clnt *, struct rpc_xprt *); |
Andy Adamson | 39e5d2d | 2016-09-09 09:22:25 -0400 | [diff] [blame] | 217 | bool rpc_clnt_xprt_switch_has_addr(struct rpc_clnt *clnt, |
| 218 | const struct sockaddr *sap); |
Kinglong Mee | c929ea0 | 2017-01-20 16:48:39 +0800 | [diff] [blame] | 219 | void rpc_cleanup_clids(void); |
Chuck Lever | fb14ae8 | 2018-02-28 15:30:54 -0500 | [diff] [blame] | 220 | |
| 221 | static inline int rpc_reply_expected(struct rpc_task *task) |
| 222 | { |
| 223 | return (task->tk_msg.rpc_proc != NULL) && |
| 224 | (task->tk_msg.rpc_proc->p_decode != NULL); |
| 225 | } |
| 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | #endif /* __KERNEL__ */ |
| 228 | #endif /* _LINUX_SUNRPC_CLNT_H */ |