Skip to content

Commit

Permalink
Allow building on 5.0 (abperiasamy#288)
Browse files Browse the repository at this point in the history
* Removed TYPE parameter in access_ok

Kernel 5.0 removed the TYPE parameter for access_ok, therefore the make will fail. This just literally removes 13 characters from Line 603.

* Allow older kernel versions with 5.0
  • Loading branch information
Nicholas George authored and harshavardhana committed Mar 21, 2019
1 parent 754aa52 commit 33d8e02
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions os_dep/linux/rtw_android.c
Expand Up @@ -600,7 +600,11 @@ int rtw_android_priv_cmd(struct net_device *net, struct ifreq *ifr, int cmd)
goto exit;
}

#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0)
if (!access_ok(priv_cmd.buf, priv_cmd.total_len)) {
#else
if (!access_ok(VERIFY_READ, priv_cmd.buf, priv_cmd.total_len)) {
#endif
DBG_871X("%s: failed to access memory\n", __FUNCTION__);
ret = -EFAULT;
goto exit;
Expand Down

0 comments on commit 33d8e02

Please sign in to comment.