diff options
author | Hal Rosenstock <halr@voltaire.com> | 2005-07-27 14:45:28 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 19:26:10 -0400 |
commit | df9f9ead746e9607099d7024f312133944173609 (patch) | |
tree | 3a7da0dcfd4a6c916dea2ba736abcd7e7d583998 /drivers/infiniband/include | |
parent | f68bcc2df8115b4ea45bfa4f8de22ec7232562b5 (diff) |
[PATCH] IB: Add ib_coalesce_recv_mad to MAD
Add implementation for ib_coalesce_recv_mad. Also, clear allocated MAD data
buffer in ib_create_send_mad.
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Hal Rosenstock <halr@voltaire.com>
Cc: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/infiniband/include')
-rw-r--r-- | drivers/infiniband/include/ib_mad.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/include/ib_mad.h b/drivers/infiniband/include/ib_mad.h index a6f06b8c4acf..e8a122122cba 100644 --- a/drivers/infiniband/include/ib_mad.h +++ b/drivers/infiniband/include/ib_mad.h | |||
@@ -365,8 +365,7 @@ int ib_post_send_mad(struct ib_mad_agent *mad_agent, | |||
365 | * This call copies a chain of received RMPP MADs into a single data buffer, | 365 | * This call copies a chain of received RMPP MADs into a single data buffer, |
366 | * removing duplicated headers. | 366 | * removing duplicated headers. |
367 | */ | 367 | */ |
368 | void ib_coalesce_recv_mad(struct ib_mad_recv_wc *mad_recv_wc, | 368 | void ib_coalesce_recv_mad(struct ib_mad_recv_wc *mad_recv_wc, void *buf); |
369 | void *buf); | ||
370 | 369 | ||
371 | /** | 370 | /** |
372 | * ib_free_recv_mad - Returns data buffers used to receive a MAD to the | 371 | * ib_free_recv_mad - Returns data buffers used to receive a MAD to the |