summaryrefslogtreecommitdiffstats
path: root/src/core/hw.c
diff options
context:
space:
mode:
authorMichael Brown2008-01-08 17:46:55 +0100
committerMichael Brown2008-01-08 17:46:55 +0100
commitf6a8158eed215954dafb7f622f6fd345b5b473d2 (patch)
tree74c855e3fb0a953ec463bfd4b5edb0248bd93ce8 /src/core/hw.c
parentAdded the embedded pxelinux payload patch from hpa. (diff)
downloadipxe-f6a8158eed215954dafb7f622f6fd345b5b473d2.tar.gz
ipxe-f6a8158eed215954dafb7f622f6fd345b5b473d2.tar.xz
ipxe-f6a8158eed215954dafb7f622f6fd345b5b473d2.zip
Make seek information part of the xfer metadata, rather than an entirely
separate xfer method. Add missing .alloc_iob entries to several xfer_interface_operations structures.
Diffstat (limited to 'src/core/hw.c')
-rw-r--r--src/core/hw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw.c b/src/core/hw.c
index 3502dbfb..65604ee0 100644
--- a/src/core/hw.c
+++ b/src/core/hw.c
@@ -36,8 +36,8 @@ static void hw_xfer_close ( struct xfer_interface *xfer, int rc ) {
static struct xfer_interface_operations hw_xfer_operations = {
.close = hw_xfer_close,
.vredirect = ignore_xfer_vredirect,
- .seek = ignore_xfer_seek,
.window = unlimited_xfer_window,
+ .alloc_iob = default_xfer_alloc_iob,
.deliver_iob = xfer_deliver_as_raw,
.deliver_raw = ignore_xfer_deliver_raw,
};