History log of /openbmc/ipmitool/lib/ipmi_sol.c (Results 1 – 8 of 8)
Revision Date Author Comments
# 2d79e69f 25-Jul-2015 Zdenek Styblik <stybla@turnovfree.net>

Merge commit '2f5789750183d4ef8be125b8cb32019441dd0530'

Return codes of functions should be either used or evaluated - always. This
merge is necessary for shell scripting to, eg. signal

Merge commit '2f5789750183d4ef8be125b8cb32019441dd0530'

Return codes of functions should be either used or evaluated - always. This
merge is necessary for shell scripting to, eg. signal there was an error during
execution.

show more ...


# eb541367 11-Mar-2015 Zdenek Styblik <stybla@turnovfree.net>

ID:319 - Interface safe re-open

Currently, interface-management code in the ipmitool does not allow safe
interface re-opening (i.e. closing and opening again). It is because the session

ID:319 - Interface safe re-open

Currently, interface-management code in the ipmitool does not allow safe
interface re-opening (i.e. closing and opening again). It is because the session
is allocated in the interface setup callback while is freed in the close
callback. So, normal re-opening of the interface, which can be required for
example durng the HPM.1 upgrade, leads to segmentation fault. That's why in the
ipmi_hpmfwupg.c instead of normal closing interface, directly access the
interface data for subsequent re-opening.

Commit for Dmitry Bazhenov

show more ...


# 9fc4a39f 30-Dec-2014 Zdenek Styblik <stybla@turnovfree.net>

Remove dead(duplicate) code from ipmi_sol_main() - CID#1148996


# 0a1f5c03 22-Dec-2014 Zdenek Styblik <stybla@turnovfree.net>

Replace deprecated bzero() with memset()

Commit replaces deprecated bzero() with memset().


# 21fbd0e9 17-Oct-2014 Zdenek Styblik <stybla@turnovfree.net>

ID#340 - ipmitool sol session improperly closes on packet retry

Commit for Pat Donlin


# 8d5e8fcf 12-Apr-2014 Anton Blanchard <anton@samba.org>

Incorrect byteswap in SOL maximum payload code

max_inbound_payload_size, max_outbound_payload_size and port are
assembled byte by byte using shifts. This works correctly in both
litt

Incorrect byteswap in SOL maximum payload code

max_inbound_payload_size, max_outbound_payload_size and port are
assembled byte by byte using shifts. This works correctly in both
little and big endian and doing a subsequent byte swap is wrong.

To highlight this issue I dumped the values on a big endian machine:

max_inbound_payload_size 51200
max_outbound_payload_size 51200
port 28418

And after this fix:

max_inbound_payload_size 200
max_outbound_payload_size 200
port 623

Signed-off-by: Zdenek Styblik <stybla@turnovfree.net>

show more ...


# cab450a0 23-Mar-2014 Zdenek Styblik <stybla@turnovfree.net>

ID: 295 - inform user if SOL session disconnected

Currently if we are connected to ipmitool sol session and if service processor
goes down due to reset/reload, then user has no way to kn

ID: 295 - inform user if SOL session disconnected

Currently if we are connected to ipmitool sol session and if service processor
goes down due to reset/reload, then user has no way to know that sol session has
been disconnected. Commit aims to fix such case.

Patch-by: Mamatha Inamdar

show more ...


# c18ec02f 05-Feb-2014 Petter Reinholdtsen <pere@hungry.com>

Move all files one level up in the file hierarcy, to avoid the useless ipmitool directory.