blob: f2b7cb540e61997ce427e132f7d0f20cada5a46e [file] [log] [blame]
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001/******************************************************************************
2
3(c) 2008 NetApp. All Rights Reserved.
4
5NetApp provides this source code under the GPL v2 License.
6The GPL v2 license is available at
7http://opensource.org/licenses/gpl-license.php.
8
9THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
10"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
11LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
12A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
13CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
14EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
15PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
16PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
17LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
18NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
19SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
20
21******************************************************************************/
22
23/*
24 * Functions and macros used internally by RPC
25 */
26
27#ifndef _NET_SUNRPC_SUNRPC_H
28#define _NET_SUNRPC_SUNRPC_H
29
Benny Halevy69518672009-09-10 12:25:04 +030030#include <linux/net.h>
31
32/*
33 * Header for dynamically allocated rpc buffers.
34 */
35struct rpc_buffer {
36 size_t len;
37 char data[];
38};
39
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040040static inline int rpc_reply_expected(struct rpc_task *task)
41{
42 return (task->tk_msg.rpc_proc != NULL) &&
43 (task->tk_msg.rpc_proc->p_decode != NULL);
44}
45
NeilBrownef11ce22014-05-12 11:22:47 +100046static inline int sock_is_loopback(struct sock *sk)
47{
48 struct dst_entry *dst;
49 int loopback = 0;
50 rcu_read_lock();
51 dst = rcu_dereference(sk->sk_dst_cache);
52 if (dst && dst->dev &&
53 (dst->dev->features & NETIF_F_LOOPBACK))
54 loopback = 1;
55 rcu_read_unlock();
56 return loopback;
57}
58
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030059int svc_send_common(struct socket *sock, struct xdr_buf *xdr,
60 struct page *headpage, unsigned long headoffset,
61 struct page *tailpage, unsigned long tailoffset);
62
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +040063int rpc_clients_notifier_register(void);
64void rpc_clients_notifier_unregister(void);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040065#endif /* _NET_SUNRPC_SUNRPC_H */
66