nfs: fix fl_type tests in NFSv4 code
[linux-2.6-block.git] / fs / nfs / nfs4xdr.c
index 610ebccbde5d6769389a2c239cc212035925f298..6cbd602e26d5c1c04b809143d1600914564881a6 100644 (file)
@@ -1236,7 +1236,7 @@ static void encode_link(struct xdr_stream *xdr, const struct qstr *name, struct
 
 static inline int nfs4_lock_type(struct file_lock *fl, int block)
 {
-       if ((fl->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) == F_RDLCK)
+       if (fl->fl_type == F_RDLCK)
                return block ? NFS4_READW_LT : NFS4_READ_LT;
        return block ? NFS4_WRITEW_LT : NFS4_WRITE_LT;
 }