block/xd.c: fix brace typo
Fix extra brace typo that is causing build errors. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
This commit is contained in:
parent
1676effca4
commit
511d37af66
|
@ -322,7 +322,7 @@ static void do_xd_request (struct request_queue * q)
|
||||||
int res = -EIO;
|
int res = -EIO;
|
||||||
int retry;
|
int retry;
|
||||||
|
|
||||||
if (req->cmd_type != REQ_TYPE_FS) {
|
if (req->cmd_type != REQ_TYPE_FS)
|
||||||
goto done;
|
goto done;
|
||||||
if (block + count > get_capacity(req->rq_disk))
|
if (block + count > get_capacity(req->rq_disk))
|
||||||
goto done;
|
goto done;
|
||||||
|
|
Loading…
Reference in New Issue