Implementation of the AES encryption for gss_krb5 needs to use read_bytes_from_xdr_buf() and write_bytes_to_xdr_buf(). The read function is already exported. Export the write function. Signed-off-by: Kevin Coffman --- net/sunrpc/xdr.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff -up linux-2.6.29.noarch/net/sunrpc/xdr.c.orig linux-2.6.29.noarch/net/sunrpc/xdr.c --- linux-2.6.29.noarch/net/sunrpc/xdr.c.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/net/sunrpc/xdr.c 2009-04-30 15:59:59.434558000 -0400 @@ -761,6 +761,7 @@ int write_bytes_to_xdr_buf(struct xdr_bu __write_bytes_to_xdr_buf(&subbuf, obj, len); return 0; } +EXPORT_SYMBOL(write_bytes_to_xdr_buf); int xdr_decode_word(struct xdr_buf *buf, unsigned int base, u32 *obj)