[PATCH] IB/mthca: release mutex on doorbell alloc error path

Release mutex on error return path from mthca_alloc_db().

Signed-off-by: Roland Dreier <roland@topspin.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Roland Dreier 2005-04-16 15:26:20 -07:00 коммит произвёл Linus Torvalds
Родитель 55645e9b0a
Коммит 2714eb5a4f
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -337,7 +337,8 @@ int mthca_alloc_db(struct mthca_dev *dev, int type, u32 qn, u32 **db)
break;
default:
return -1;
ret = -EINVAL;
goto out;
}
for (i = start; i != end; i += dir)