diff options
author | Michael Brown <mcb30@ipxe.org> | 2011-06-24 19:25:53 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2011-06-28 14:45:07 +0100 |
commit | 1e90ff0eb73b105c964f65cce9b5619a07eaf3f3 (patch) | |
tree | 07464b8bcd7e7eab8163ef9e7bc3455264abf821 /src/net/infiniband | |
parent | 0cc03ac76a6c636d77cecca21d045ffb87f4945b (diff) | |
download | ipxe-1e90ff0eb73b105c964f65cce9b5619a07eaf3f3.tar.gz |
[infiniband] Send xfer_window_changed() when CMRC connection is established
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/infiniband')
-rw-r--r-- | src/net/infiniband/ib_cmrc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/infiniband/ib_cmrc.c b/src/net/infiniband/ib_cmrc.c index ed388b2f1..4b15314e5 100644 --- a/src/net/infiniband/ib_cmrc.c +++ b/src/net/infiniband/ib_cmrc.c @@ -180,6 +180,9 @@ static void ib_cmrc_changed ( struct ib_device *ibdev __unused, return; } + /* Notify upper connection of window change */ + xfer_window_changed ( &cmrc->xfer ); + /* If we are disconnected, close the upper connection */ if ( rc_cm != 0 ) { ib_cmrc_close ( cmrc, rc_cm ); |