nfsd: clean up svc_reserve_auth()
This is a void function attempting to return the return value from another void function, which seems harmless but extremely weird, and apparently makes some compilers complain. While we're there, clean up a little (e.g. the switch statement had a minor style problem and seemed overkill as long as there's only one case). Thanks to Trond for noticing this. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
c64e80d55d
commit
fbb7878c1a
1 changed files with 5 additions and 8 deletions
|
@ -409,16 +409,13 @@ char * svc_print_addr(struct svc_rqst *, char *, size_t);
|
||||||
* for all cases without actually generating the checksum, so we just use a
|
* for all cases without actually generating the checksum, so we just use a
|
||||||
* static value.
|
* static value.
|
||||||
*/
|
*/
|
||||||
static inline void
|
static inline void svc_reserve_auth(struct svc_rqst *rqstp, int space)
|
||||||
svc_reserve_auth(struct svc_rqst *rqstp, int space)
|
|
||||||
{
|
{
|
||||||
int added_space = 0;
|
int added_space = 0;
|
||||||
|
|
||||||
switch(rqstp->rq_authop->flavour) {
|
if (rqstp->rq_authop->flavour)
|
||||||
case RPC_AUTH_GSS:
|
added_space = RPC_MAX_AUTH_SIZE;
|
||||||
added_space = RPC_MAX_AUTH_SIZE;
|
svc_reserve(rqstp, space + added_space);
|
||||||
}
|
|
||||||
return svc_reserve(rqstp, space + added_space);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* SUNRPC_SVC_H */
|
#endif /* SUNRPC_SVC_H */
|
||||||
|
|
Loading…
Reference in a new issue