From 9d07aaadda67c3a435afd18ef40a8ebac9c078d8 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Fri, 26 Nov 2004 16:30:44 +0000 Subject: [PATCH] add comment about assumptions made in raw1394_get_port_info git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@152 53a565d1-3bb7-0310-b661-cf11e63c67ab --- src/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.c b/src/main.c index 8364e96..235a3a8 100644 --- a/src/main.c +++ b/src/main.c @@ -204,6 +204,11 @@ int raw1394_get_port_info(struct raw1394_handle *handle, CLEAR_REQ(&req); req.type = RAW1394_REQ_LIST_CARDS; req.generation = handle->generation; + /* IMPORTANT: raw1394 will be writing directly into the memory you + provide in pinf. The viability of this approach assumes that the + structure of libraw1394's raw1394_portinfo and the kernel's + raw1394_khost_list structs are the same!! + */ req.recvb = ptr2int(pinf); req.length = sizeof(struct raw1394_portinfo) * maxports;