sunrpc: svc: Remove an unused static function svc_ungetu32()
The svc_ungetu32 function is not used, you could remove it. Signed-off-by: Li zeming <zeming@nfschina.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
This commit is contained in:
parent
22ae4c114f
commit
3ed157d0d7
|
@ -220,13 +220,6 @@ static inline __be32 svc_getu32(struct kvec *iov)
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void svc_ungetu32(struct kvec *iov)
|
|
||||||
{
|
|
||||||
__be32 *vp = (__be32 *)iov->iov_base;
|
|
||||||
iov->iov_base = (void *)(vp - 1);
|
|
||||||
iov->iov_len += sizeof(*vp);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void svc_putu32(struct kvec *iov, __be32 val)
|
static inline void svc_putu32(struct kvec *iov, __be32 val)
|
||||||
{
|
{
|
||||||
__be32 *vp = iov->iov_base + iov->iov_len;
|
__be32 *vp = iov->iov_base + iov->iov_len;
|
||||||
|
|
Loading…
Reference in New Issue