1. NAME

xdr_reserve_space - Reserve buffer space for sending

2. SYNOPSIS

__be32 * xdr_reserve_space(struct xdr_stream *  xdr , size_t  nbytes );

3. ARGUMENTS

xdr
    pointer to xdr_stream

nbytes
    number of bytes to reserve

4. DESCRIPTION

Checks that we have enough buffer space to encode AqnbytesAq more bytes of data. If so, update the total xdr_buf length, and adjust the length of the current kvec.

5. COPYRIGHT