瀏覽代碼

[http] Notify data transfer interface when underlying connection is ready

HTTP implements xfer_window_changed() on the underlying server
connection using http_step(), which does not propagate the window
change notification to the data transfer interface.  This breaks the
multipath-capable SAN boot code, which relies on the window change
notification to discover that the HTTP block device is ready for
commands to be issued.

Fix by sending xfer_window_changed() in http_step() once the
underlying connection has been determined to be ready.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 7 年之前
父節點
當前提交
c8cae7cc17
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3
    0
      src/net/tcp/httpcore.c

+ 3
- 0
src/net/tcp/httpcore.c 查看文件

@@ -352,6 +352,9 @@ static void http_step ( struct http_transaction *http ) {
352 352
 	if ( ! xfer_window ( &http->conn ) )
353 353
 		return;
354 354
 
355
+	/* Notify data transfer interface that window may have changed */
356
+	xfer_window_changed ( &http->xfer );
357
+
355 358
 	/* Do nothing until data transfer interface is ready */
356 359
 	if ( ! xfer_window ( &http->xfer ) )
357 360
 		return;

Loading…
取消
儲存