Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64430
b: refs/heads/master
c: 28721c8
h: refs/heads/master
v: v3
  • Loading branch information
Jan-Bernd Themann authored and Jeff Garzik committed Aug 25, 2007
1 parent a92cfa8 commit 5fd76ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 18072a5bf7211d6899a2edc90c291c5c6fbc83d2
refs/heads/master: 28721c890c9b71cfee45e835bda4639777862e2f
6 changes: 6 additions & 0 deletions trunk/drivers/net/ehea/ehea_qmr.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ int ehea_destroy_cq(struct ehea_cq *cq)
if (!cq)
return 0;

hcp_epas_dtor(&cq->epas);

if ((hret = ehea_destroy_cq_res(cq, NORMAL_FREE)) == H_R_STATE) {
ehea_error_data(cq->adapter, cq->fw_handle);
hret = ehea_destroy_cq_res(cq, FORCE_FREE);
Expand Down Expand Up @@ -361,6 +363,8 @@ int ehea_destroy_eq(struct ehea_eq *eq)
if (!eq)
return 0;

hcp_epas_dtor(&eq->epas);

if ((hret = ehea_destroy_eq_res(eq, NORMAL_FREE)) == H_R_STATE) {
ehea_error_data(eq->adapter, eq->fw_handle);
hret = ehea_destroy_eq_res(eq, FORCE_FREE);
Expand Down Expand Up @@ -541,6 +545,8 @@ int ehea_destroy_qp(struct ehea_qp *qp)
if (!qp)
return 0;

hcp_epas_dtor(&qp->epas);

if ((hret = ehea_destroy_qp_res(qp, NORMAL_FREE)) == H_R_STATE) {
ehea_error_data(qp->adapter, qp->fw_handle);
hret = ehea_destroy_qp_res(qp, FORCE_FREE);
Expand Down

0 comments on commit 5fd76ff

Please sign in to comment.