1
0
Fork 0

Merge branch 'vhost' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost

hifive-unleashed-5.1
David S. Miller 2010-04-07 16:52:29 -07:00
commit 04b1a22350
1 changed files with 4 additions and 0 deletions

View File

@ -235,6 +235,10 @@ static int vq_memory_access_ok(void __user *log_base, struct vhost_memory *mem,
int log_all)
{
int i;
if (!mem)
return 0;
for (i = 0; i < mem->nregions; ++i) {
struct vhost_memory_region *m = mem->regions + i;
unsigned long a = m->userspace_addr;