From: David S. Miller Date: Thu, 14 Feb 2013 19:49:01 +0000 (-0800) Subject: sunvdc: Fix off-by-one in generic_request(). X-Git-Tag: v3.8~5^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4d9605434c0fd4cc8639bf25cfc043418c52362;p=platform%2Fkernel%2Flinux-amlogic.git sunvdc: Fix off-by-one in generic_request(). The 'operations' bitmap corresponds one-for-one with the operation codes, no adjustment is necessary. Reported-by: Mark Kettenis Signed-off-by: David S. Miller --- diff --git a/drivers/block/sunvdc.c b/drivers/block/sunvdc.c index 564156a..5814deb 100644 --- a/drivers/block/sunvdc.c +++ b/drivers/block/sunvdc.c @@ -461,7 +461,7 @@ static int generic_request(struct vdc_port *port, u8 op, void *buf, int len) int op_len, err; void *req_buf; - if (!(((u64)1 << ((u64)op - 1)) & port->operations)) + if (!(((u64)1 << (u64)op) & port->operations)) return -EOPNOTSUPP; switch (op) {