diff options
| author | Michael Brown | 2010-09-17 04:38:12 +0200 |
|---|---|---|
| committer | Michael Brown | 2010-09-17 06:47:34 +0200 |
| commit | a5909384a8e1ffbdd60a348f04d381f46c0383c0 (patch) | |
| tree | 0b5128598fa074073a49087fc4df952864160e95 | |
| parent | [arbel] Improve debugging output and facilities (diff) | |
| download | ipxe-a5909384a8e1ffbdd60a348f04d381f46c0383c0.tar.gz ipxe-a5909384a8e1ffbdd60a348f04d381f46c0383c0.tar.xz ipxe-a5909384a8e1ffbdd60a348f04d381f46c0383c0.zip | |
[arbel] Inform embedded SMA of partition key changes
Signed-off-by: Michael Brown <mcb30@ipxe.org>
| -rw-r--r-- | src/drivers/infiniband/arbel.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/drivers/infiniband/arbel.c b/src/drivers/infiniband/arbel.c index f8d2c2ea5..35ad88b36 100644 --- a/src/drivers/infiniband/arbel.c +++ b/src/drivers/infiniband/arbel.c @@ -1786,14 +1786,13 @@ static void arbel_close ( struct ib_device *ibdev ) { } /** - * Set port information + * Inform embedded subnet management agent of a received MAD * * @v ibdev Infiniband device - * @v mad Set port information MAD + * @v mad MAD * @ret rc Return status code */ -static int arbel_set_port_info ( struct ib_device *ibdev, - union ib_mad *mad ) { +static int arbel_inform_sma ( struct ib_device *ibdev, union ib_mad *mad ) { int rc; /* Send the MAD to the embedded SMA */ @@ -1917,7 +1916,8 @@ static struct ib_device_operations arbel_ib_operations = { .close = arbel_close, .mcast_attach = arbel_mcast_attach, .mcast_detach = arbel_mcast_detach, - .set_port_info = arbel_set_port_info, + .set_port_info = arbel_inform_sma, + .set_pkey_table = arbel_inform_sma, }; /*************************************************************************** |
