[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20221103013510.3062-1-zeming@nfschina.com>
Date: Thu, 3 Nov 2022 09:35:10 +0800
From: Li zeming <zeming@...china.com>
To: chuck.lever@...cle.com, jlayton@...nel.org,
trond.myklebust@...merspace.com, anna@...nel.org
Cc: linux-nfs@...r.kernel.org, linux-kernel@...r.kernel.org,
Li zeming <zeming@...china.com>
Subject: [PATCH] sunrpc: svc: Remove unnecessary (void*) conversions
The iov_base pointer does not need to cast the type.
Signed-off-by: Li zeming <zeming@...china.com>
---
include/linux/sunrpc/svc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h
index daecb009c05b..4b0eead91c94 100644
--- a/include/linux/sunrpc/svc.h
+++ b/include/linux/sunrpc/svc.h
@@ -222,7 +222,7 @@ static inline __be32 svc_getu32(struct kvec *iov)
static inline void svc_ungetu32(struct kvec *iov)
{
- __be32 *vp = (__be32 *)iov->iov_base;
+ __be32 *vp = iov->iov_base;
iov->iov_base = (void *)(vp - 1);
iov->iov_len += sizeof(*vp);
}
--
2.18.2
Powered by blists - more mailing lists