mirror of
https://github.com/adulau/aha.git
synced 2025-01-03 22:53:18 +00:00
IB/mthca: check return value in mthca_dev_lim call
Check error return on call to mthca_dev_lim for Tavor (as is done for memfree). Signed-off-by: Jack Morgenstein <jackm@mellanox.co.il> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
1d7d2f6f47
commit
aa2f936779
1 changed files with 4 additions and 0 deletions
|
@ -261,6 +261,10 @@ static int __devinit mthca_init_tavor(struct mthca_dev *mdev)
|
|||
}
|
||||
|
||||
err = mthca_dev_lim(mdev, &dev_lim);
|
||||
if (err) {
|
||||
mthca_err(mdev, "QUERY_DEV_LIM command failed, aborting.\n");
|
||||
goto err_disable;
|
||||
}
|
||||
|
||||
profile = default_profile;
|
||||
profile.num_uar = dev_lim.uar_size / PAGE_SIZE;
|
||||
|
|
Loading…
Reference in a new issue