Commit b8bea9f6 authored by Jeff Layton's avatar Jeff Layton Committed by Chuck Lever
Browse files

nfsd: don't open-code clear_and_wake_up_bit

parent 9b78d919
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1174,9 +1174,7 @@ nfsd_file_do_acquire(struct svc_rqst *rqstp, struct svc_fh *fhp,
		status = nfserr_jukebox;
	if (status != nfs_ok)
		nfsd_file_unhash(nf);
	clear_bit_unlock(NFSD_FILE_PENDING, &nf->nf_flags);
	smp_mb__after_atomic();
	wake_up_bit(&nf->nf_flags, NFSD_FILE_PENDING);
	clear_and_wake_up_bit(NFSD_FILE_PENDING, &nf->nf_flags);
	goto out;
}