| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-05-07 13:33:30 -04:00
										 |  |  |  * XDR standard data types and function declarations | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de> | 
					
						
							| 
									
										
										
										
											2010-05-07 13:33:30 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Based on: | 
					
						
							|  |  |  |  *   RFC 4506 "XDR: External Data Representation Standard", May 2006 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _SUNRPC_XDR_H_
 | 
					
						
							|  |  |  | #define _SUNRPC_XDR_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __KERNEL__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/uio.h>
 | 
					
						
							|  |  |  | #include <asm/byteorder.h>
 | 
					
						
							| 
									
										
										
										
											2009-09-23 14:36:38 -04:00
										 |  |  | #include <asm/unaligned.h>
 | 
					
						
							| 
									
										
										
										
											2006-12-04 20:22:33 -05:00
										 |  |  | #include <linux/scatterlist.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Buffer adjustment | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define XDR_QUADLEN(l)		(((l) + 3) >> 2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Generic opaque `network object.' At the kernel level, this type | 
					
						
							|  |  |  |  * is used only by lockd. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define XDR_MAX_NETOBJ		1024
 | 
					
						
							|  |  |  | struct xdr_netobj { | 
					
						
							|  |  |  | 	unsigned int		len; | 
					
						
							|  |  |  | 	u8 *			data; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  |  * This is the legacy generic XDR function. rqstp is either a rpc_rqst | 
					
						
							|  |  |  |  * (client side) or svc_rqst pointer (server side). | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Encode functions always assume there's enough room in the buffer. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | typedef int	(*kxdrproc_t)(void *rqstp, __be32 *data, void *obj); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Basic structure for transmission/reception of a client XDR message. | 
					
						
							|  |  |  |  * Features a header (for a linear buffer containing RPC headers | 
					
						
							|  |  |  |  * and the data payload for short messages), and then an array of | 
					
						
							|  |  |  |  * pages. | 
					
						
							|  |  |  |  * The tail iovec allows you to append data after the page array. Its | 
					
						
							|  |  |  |  * main interest is for appending padding to the pages in order to | 
					
						
							|  |  |  |  * satisfy the int_32-alignment requirements in RFC1832. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * For the future, we might want to string several of these together | 
					
						
							|  |  |  |  * in a list if anybody wants to make use of NFSv4 COMPOUND | 
					
						
							|  |  |  |  * operations and/or has a need for scatter/gather involving pages. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct xdr_buf { | 
					
						
							|  |  |  | 	struct kvec	head[1],	/* RPC header + non-page data */ | 
					
						
							|  |  |  | 			tail[1];	/* Appended after page data */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-04 12:51:17 -05:00
										 |  |  | 	struct page **	pages;		/* Array of pages */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned int	page_base,	/* Start of page data */ | 
					
						
							| 
									
										
										
										
											2007-09-10 13:44:58 -04:00
										 |  |  | 			page_len,	/* Length of page data */ | 
					
						
							|  |  |  | 			flags;		/* Flags for data disposition */ | 
					
						
							|  |  |  | #define XDRBUF_READ		0x01		/* target of file read */
 | 
					
						
							|  |  |  | #define XDRBUF_WRITE		0x02		/* source of file write */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unsigned int	buflen,		/* Total length of storage buffer */ | 
					
						
							|  |  |  | 			len;		/* Length of XDR encoded message */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * pre-xdr'ed macros. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 17:16:58 -08:00
										 |  |  | #define	xdr_zero	cpu_to_be32(0)
 | 
					
						
							|  |  |  | #define	xdr_one		cpu_to_be32(1)
 | 
					
						
							|  |  |  | #define	xdr_two		cpu_to_be32(2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define	rpc_success		cpu_to_be32(RPC_SUCCESS)
 | 
					
						
							|  |  |  | #define	rpc_prog_unavail	cpu_to_be32(RPC_PROG_UNAVAIL)
 | 
					
						
							|  |  |  | #define	rpc_prog_mismatch	cpu_to_be32(RPC_PROG_MISMATCH)
 | 
					
						
							|  |  |  | #define	rpc_proc_unavail	cpu_to_be32(RPC_PROC_UNAVAIL)
 | 
					
						
							|  |  |  | #define	rpc_garbage_args	cpu_to_be32(RPC_GARBAGE_ARGS)
 | 
					
						
							|  |  |  | #define	rpc_system_err		cpu_to_be32(RPC_SYSTEM_ERR)
 | 
					
						
							|  |  |  | #define	rpc_drop_reply		cpu_to_be32(RPC_DROP_REPLY)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define	rpc_auth_ok		cpu_to_be32(RPC_AUTH_OK)
 | 
					
						
							|  |  |  | #define	rpc_autherr_badcred	cpu_to_be32(RPC_AUTH_BADCRED)
 | 
					
						
							|  |  |  | #define	rpc_autherr_rejectedcred cpu_to_be32(RPC_AUTH_REJECTEDCRED)
 | 
					
						
							|  |  |  | #define	rpc_autherr_badverf	cpu_to_be32(RPC_AUTH_BADVERF)
 | 
					
						
							|  |  |  | #define	rpc_autherr_rejectedverf cpu_to_be32(RPC_AUTH_REJECTEDVERF)
 | 
					
						
							|  |  |  | #define	rpc_autherr_tooweak	cpu_to_be32(RPC_AUTH_TOOWEAK)
 | 
					
						
							|  |  |  | #define	rpcsec_gsserr_credproblem	cpu_to_be32(RPCSEC_GSS_CREDPROBLEM)
 | 
					
						
							|  |  |  | #define	rpcsec_gsserr_ctxproblem	cpu_to_be32(RPCSEC_GSS_CTXPROBLEM)
 | 
					
						
							|  |  |  | #define	rpc_autherr_oldseqnum	cpu_to_be32(101)
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Miscellaneous XDR helper functions | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | __be32 *xdr_encode_opaque_fixed(__be32 *p, const void *ptr, unsigned int len); | 
					
						
							|  |  |  | __be32 *xdr_encode_opaque(__be32 *p, const void *ptr, unsigned int len); | 
					
						
							|  |  |  | __be32 *xdr_encode_string(__be32 *p, const char *s); | 
					
						
							| 
									
										
										
										
											2007-11-01 16:56:47 -04:00
										 |  |  | __be32 *xdr_decode_string_inplace(__be32 *p, char **sp, unsigned int *lenp, | 
					
						
							|  |  |  | 			unsigned int maxlen); | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | __be32 *xdr_encode_netobj(__be32 *p, const struct xdr_netobj *); | 
					
						
							|  |  |  | __be32 *xdr_decode_netobj(__be32 *p, struct xdr_netobj *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | void	xdr_inline_pages(struct xdr_buf *, unsigned int, | 
					
						
							|  |  |  | 			 struct page **, unsigned int, unsigned int); | 
					
						
							| 
									
										
										
										
											2010-09-21 16:55:48 -04:00
										 |  |  | void	xdr_terminate_string(struct xdr_buf *, const u32); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | static inline __be32 *xdr_encode_array(__be32 *p, const void *s, unsigned int len) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return xdr_encode_opaque(p, s, len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Decode 64bit quantities (NFSv3 support) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | static inline __be32 * | 
					
						
							|  |  |  | xdr_encode_hyper(__be32 *p, __u64 val) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-23 14:36:38 -04:00
										 |  |  | 	put_unaligned_be64(val, p); | 
					
						
							| 
									
										
										
										
											2009-08-14 17:18:44 +03:00
										 |  |  | 	return p + 2; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | static inline __be32 * | 
					
						
							|  |  |  | xdr_decode_hyper(__be32 *p, __u64 *valp) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-23 14:36:38 -04:00
										 |  |  | 	*valp = get_unaligned_be64(p); | 
					
						
							| 
									
										
										
										
											2009-08-14 17:18:49 +03:00
										 |  |  | 	return p + 2; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-20 00:17:54 -04:00
										 |  |  | static inline __be32 * | 
					
						
							|  |  |  | xdr_decode_opaque_fixed(__be32 *p, void *ptr, unsigned int len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	memcpy(ptr, p, len); | 
					
						
							|  |  |  | 	return p + XDR_QUADLEN(len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Adjust kvec to reflect end of xdr'ed data (RPC client XDR) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static inline int | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | xdr_adjust_iovec(struct kvec *iov, __be32 *p) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return iov->iov_len = ((u8 *) p - (u8 *) iov->iov_base); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * XDR buffer helper functions | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | extern void xdr_shift_buf(struct xdr_buf *, size_t); | 
					
						
							|  |  |  | extern void xdr_buf_from_iov(struct kvec *, struct xdr_buf *); | 
					
						
							| 
									
										
										
										
											2006-08-31 15:09:19 -04:00
										 |  |  | extern int xdr_buf_subsegment(struct xdr_buf *, struct xdr_buf *, unsigned int, unsigned int); | 
					
						
							| 
									
										
										
										
											2013-02-06 08:28:55 -05:00
										 |  |  | extern void xdr_buf_trim(struct xdr_buf *, unsigned int); | 
					
						
							| 
									
										
										
										
											2006-08-31 15:09:19 -04:00
										 |  |  | extern int xdr_buf_read_netobj(struct xdr_buf *, struct xdr_netobj *, unsigned int); | 
					
						
							|  |  |  | extern int read_bytes_from_xdr_buf(struct xdr_buf *, unsigned int, void *, unsigned int); | 
					
						
							|  |  |  | extern int write_bytes_to_xdr_buf(struct xdr_buf *, unsigned int, void *, unsigned int); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Helper structure for copying from an sk_buff. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-12-05 16:35:44 -05:00
										 |  |  | struct xdr_skb_reader { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct sk_buff	*skb; | 
					
						
							|  |  |  | 	unsigned int	offset; | 
					
						
							|  |  |  | 	size_t		count; | 
					
						
							| 
									
										
										
										
											2006-11-14 21:36:14 -08:00
										 |  |  | 	__wsum		csum; | 
					
						
							| 
									
										
										
										
											2006-12-05 16:35:44 -05:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-05 16:35:44 -05:00
										 |  |  | typedef size_t (*xdr_skb_read_actor)(struct xdr_skb_reader *desc, void *to, size_t len); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-05 16:35:44 -05:00
										 |  |  | size_t xdr_skb_read_bits(struct xdr_skb_reader *desc, void *to, size_t len); | 
					
						
							| 
									
										
										
										
											2005-08-11 16:25:20 -04:00
										 |  |  | extern int csum_partial_copy_to_xdr(struct xdr_buf *, struct sk_buff *); | 
					
						
							| 
									
										
										
										
											2005-06-22 17:16:24 +00:00
										 |  |  | extern ssize_t xdr_partial_copy_from_skb(struct xdr_buf *, unsigned int, | 
					
						
							| 
									
										
										
										
											2006-12-05 16:35:44 -05:00
										 |  |  | 		struct xdr_skb_reader *, xdr_skb_read_actor); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-31 15:09:19 -04:00
										 |  |  | extern int xdr_encode_word(struct xdr_buf *, unsigned int, u32); | 
					
						
							|  |  |  | extern int xdr_decode_word(struct xdr_buf *, unsigned int, u32 *); | 
					
						
							| 
									
										
										
										
											2005-06-22 17:16:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct xdr_array2_desc; | 
					
						
							|  |  |  | typedef int (*xdr_xcode_elem_t)(struct xdr_array2_desc *desc, void *elem); | 
					
						
							|  |  |  | struct xdr_array2_desc { | 
					
						
							|  |  |  | 	unsigned int elem_size; | 
					
						
							|  |  |  | 	unsigned int array_len; | 
					
						
							| 
									
										
										
										
											2005-08-10 18:15:12 -04:00
										 |  |  | 	unsigned int array_maxlen; | 
					
						
							| 
									
										
										
										
											2005-06-22 17:16:24 +00:00
										 |  |  | 	xdr_xcode_elem_t xcode; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int xdr_decode_array2(struct xdr_buf *buf, unsigned int base, | 
					
						
							| 
									
										
										
										
											2010-05-07 13:33:30 -04:00
										 |  |  | 			     struct xdr_array2_desc *desc); | 
					
						
							| 
									
										
										
										
											2005-06-22 17:16:24 +00:00
										 |  |  | extern int xdr_encode_array2(struct xdr_buf *buf, unsigned int base, | 
					
						
							|  |  |  | 			     struct xdr_array2_desc *desc); | 
					
						
							| 
									
										
										
										
											2011-12-07 11:55:27 -05:00
										 |  |  | extern void _copy_from_pages(char *p, struct page **pages, size_t pgbase, | 
					
						
							|  |  |  | 			     size_t len); | 
					
						
							| 
									
										
										
										
											2005-06-22 17:16:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Provide some simple tools for XDR buffer overflow-checking etc. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct xdr_stream { | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | 	__be32 *p;		/* start of available buffer */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct xdr_buf *buf;	/* XDR buffer to read/write */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | 	__be32 *end;		/* end of available buffer space */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct kvec *iov;	/* pointer to the current kvec */ | 
					
						
							| 
									
										
										
										
											2011-01-08 17:45:38 -05:00
										 |  |  | 	struct kvec scratch;	/* Scratch buffer */ | 
					
						
							|  |  |  | 	struct page **page_ptr;	/* pointer to the current page */ | 
					
						
							| 
									
										
										
										
											2012-06-20 09:58:35 -04:00
										 |  |  | 	unsigned int nwords;	/* Remaining decode buffer length */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  |  * These are the xdr_stream style generic XDR encode and decode functions. | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | typedef void	(*kxdreproc_t)(void *rqstp, struct xdr_stream *xdr, void *obj); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  | typedef int	(*kxdrdproc_t)(void *rqstp, struct xdr_stream *xdr, void *obj); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | extern void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p); | 
					
						
							|  |  |  | extern __be32 *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes); | 
					
						
							| 
									
										
										
										
											2013-08-26 16:04:46 -04:00
										 |  |  | extern void xdr_commit_encode(struct xdr_stream *xdr); | 
					
						
							| 
									
										
										
										
											2014-02-25 17:44:21 -05:00
										 |  |  | extern void xdr_truncate_encode(struct xdr_stream *xdr, size_t len); | 
					
						
							| 
									
										
										
										
											2014-03-06 13:22:18 -05:00
										 |  |  | extern int xdr_restrict_buflen(struct xdr_stream *xdr, int newbuflen); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | extern void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, | 
					
						
							|  |  |  | 		unsigned int base, unsigned int len); | 
					
						
							| 
									
										
										
										
											2012-06-21 17:14:46 -04:00
										 |  |  | extern unsigned int xdr_stream_pos(const struct xdr_stream *xdr); | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | extern void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p); | 
					
						
							| 
									
										
										
										
											2011-05-19 14:16:47 -04:00
										 |  |  | extern void xdr_init_decode_pages(struct xdr_stream *xdr, struct xdr_buf *buf, | 
					
						
							|  |  |  | 		struct page **pages, unsigned int len); | 
					
						
							| 
									
										
										
										
											2011-01-08 17:45:38 -05:00
										 |  |  | extern void xdr_set_scratch_buffer(struct xdr_stream *xdr, void *buf, size_t buflen); | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | extern __be32 *xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes); | 
					
						
							| 
									
										
										
										
											2012-06-21 17:05:37 -04:00
										 |  |  | extern unsigned int xdr_read_pages(struct xdr_stream *xdr, unsigned int len); | 
					
						
							| 
									
										
										
										
											2006-06-09 09:34:21 -04:00
										 |  |  | extern void xdr_enter_page(struct xdr_stream *xdr, unsigned int len); | 
					
						
							| 
									
										
										
										
											2006-12-04 20:22:33 -05:00
										 |  |  | extern int xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len, int (*actor)(struct scatterlist *, void *), void *data); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* __KERNEL__ */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* _SUNRPC_XDR_H_ */
 |