dect
/
linux-2.6
Archived
13
0
Fork 0

Fix bug in NVME_IOCTL_SUBMIT_IO

Missing 'break' in the switch statement meant that we'd fall through
to the 'return -EINVAL' case.
This commit is contained in:
Matthew Wilcox 2011-08-09 12:56:37 -04:00
parent 6bbf1acdde
commit 6413214c5d
1 changed files with 1 additions and 0 deletions

View File

@ -1054,6 +1054,7 @@ static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
case nvme_cmd_compare:
nents = nvme_map_user_pages(dev, io.opcode & 1, io.addr,
length, &sg);
break;
default:
return -EINVAL;
}