From: Jeff Layton Date: Fri, 11 May 2012 13:45:12 +0000 (-0400) Subject: nfsd: make test_share a bool return X-Git-Tag: v3.5-rc1~18^2~30 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=3a3286147f557f05e002be3ec7512b582373ae65;p=~emulex%2Finfiniband.git nfsd: make test_share a bool return All of the callers treat the return that way already. Signed-off-by: Jeff Layton Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 8034c2b67a2..88a897a484e 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -460,15 +460,15 @@ bmap_to_share_mode(unsigned long bmap) { return access; } -static int +static bool test_share(struct nfs4_ol_stateid *stp, struct nfsd4_open *open) { unsigned int access, deny; access = bmap_to_share_mode(stp->st_access_bmap); deny = bmap_to_share_mode(stp->st_deny_bmap); if ((access & open->op_share_deny) || (deny & open->op_share_access)) - return 0; - return 1; + return false; + return true; } static int nfs4_access_to_omode(u32 access)