diff options
author | Corey Minyard <cminyard@mvista.com> | 2016-10-24 15:10:20 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-11-01 19:21:09 +0200 |
commit | f53b9f3625f1fc66e4514981e7d9315fa74516a7 (patch) | |
tree | a2eee429438fdf584048a643b75548672de9dc6f /tests | |
parent | 4059fa63b7fae7e92cd54bd905366c46d0b62e69 (diff) | |
download | qemu-f53b9f3625f1fc66e4514981e7d9315fa74516a7.tar.gz qemu-f53b9f3625f1fc66e4514981e7d9315fa74516a7.tar.bz2 qemu-f53b9f3625f1fc66e4514981e7d9315fa74516a7.zip |
ipmi: Add graceful shutdown handling to the external BMC
I misunderstood the workings of the power settings, the power off
is a force off operation and there needs to be a separate graceful
shutdown operation. So replace the force off operation with a
graceful shutdown.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ipmi-bt-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ipmi-bt-test.c b/tests/ipmi-bt-test.c index be9005eb85..65d05b3d43 100644 --- a/tests/ipmi-bt-test.c +++ b/tests/ipmi-bt-test.c @@ -309,7 +309,7 @@ static void test_connect(void) uint8_t msg[100]; unsigned int msglen; static uint8_t exp1[] = { 0xff, 0x01, 0xa1 }; /* A protocol version */ - static uint8_t exp2[] = { 0x08, 0x1f, 0xa1 }; /* A capabilities cmd */ + static uint8_t exp2[] = { 0x08, 0x3f, 0xa1 }; /* A capabilities cmd */ FD_ZERO(&readfds); FD_SET(emu_lfd, &readfds); |