/* all arguments to this function must be checked for validity in caller */
 static inline int cifs_open_inode_helper(struct inode *inode,
-       struct cifsTconInfo *pTcon, int *oplock, FILE_ALL_INFO *buf,
+       struct cifsTconInfo *pTcon, __u32 oplock, FILE_ALL_INFO *buf,
        char *full_path, int xid)
 {
        struct cifsInodeInfo *pCifsInode = CIFS_I(inode);
                rc = cifs_get_inode_info(&inode, full_path, buf, inode->i_sb,
                                         xid, NULL);
 
-       if ((*oplock & 0xF) == OPLOCK_EXCLUSIVE) {
+       if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) {
                pCifsInode->clientCanCacheAll = true;
                pCifsInode->clientCanCacheRead = true;
                cFYI(1, "Exclusive Oplock granted on inode %p", inode);
-       } else if ((*oplock & 0xF) == OPLOCK_READ)
+       } else if ((oplock & 0xF) == OPLOCK_READ)
                pCifsInode->clientCanCacheRead = true;
 
        return rc;
                goto out;
        }
 
-       rc = cifs_open_inode_helper(inode, tcon, &oplock, buf, full_path, xid);
+       rc = cifs_open_inode_helper(inode, tcon, oplock, buf, full_path, xid);
        if (rc != 0)
                goto out;