Skip to content

Commit

Permalink
IB/ipath: fix label name in interrupt handler
Browse files Browse the repository at this point in the history
Names that are the opposite of their intended meanings are not so helpful.

Signed-off-by: Bryan O'Sullivan <bos@pathscale.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
  • Loading branch information
Bryan O'Sullivan authored and Roland Dreier committed May 1, 2006
1 parent ae15f54 commit d562a5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/infiniband/hw/ipath/ipath_intr.c
Original file line number Diff line number Diff line change
Expand Up @@ -665,14 +665,14 @@ static void handle_layer_pioavail(struct ipath_devdata *dd)

ret = __ipath_layer_intr(dd, IPATH_LAYER_INT_SEND_CONTINUE);
if (ret > 0)
goto clear;
goto set;

ret = __ipath_verbs_piobufavail(dd);
if (ret > 0)
goto clear;
goto set;

return;
clear:
set:
set_bit(IPATH_S_PIOINTBUFAVAIL, &dd->ipath_sendctrl);
ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
dd->ipath_sendctrl);
Expand Down

0 comments on commit d562a5a

Please sign in to comment.