Skip to content

Commit

Permalink
nfsd: clean up indentation, increase indentation in switch statement
Browse files Browse the repository at this point in the history
Trivial fix to clean up indentation, add in missing tabs.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
  • Loading branch information
Colin Ian King authored and J. Bruce Fields committed Nov 28, 2018
1 parent 97bce63 commit f50c9d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/nfsd/nfs4state.c
Original file line number Diff line number Diff line change
Expand Up @@ -6230,15 +6230,15 @@ nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
case NFS4_READ_LT:
case NFS4_READW_LT:
file_lock->fl_type = F_RDLCK;
break;
break;
case NFS4_WRITE_LT:
case NFS4_WRITEW_LT:
file_lock->fl_type = F_WRLCK;
break;
break;
default:
dprintk("NFSD: nfs4_lockt: bad lock type!\n");
status = nfserr_inval;
goto out;
goto out;
}

lo = find_lockowner_str(cstate->clp, &lockt->lt_owner);
Expand Down

0 comments on commit f50c9d7

Please sign in to comment.