The patch titled IPMI: increase KCS message size has been added to the -mm tree. Its filename is ipmi-increase-kcs-message-size.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: IPMI: increase KCS message size From: Corey Minyard <minyard@xxxxxxx> Increase the maximum message size a KCS interface supports to the maximum message size the rest of the driver supports. Some systems really support messages this big. Signed-off-by: Corey Minyard <cminyard@xxxxxxxxxx> Cc: Patrick Schoeller <Patrick.Schoeller@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/ipmi/ipmi_kcs_sm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/char/ipmi/ipmi_kcs_sm.c~ipmi-increase-kcs-message-size drivers/char/ipmi/ipmi_kcs_sm.c --- a/drivers/char/ipmi/ipmi_kcs_sm.c~ipmi-increase-kcs-message-size +++ a/drivers/char/ipmi/ipmi_kcs_sm.c @@ -93,8 +93,8 @@ enum kcs_states { state machine. */ }; -#define MAX_KCS_READ_SIZE 80 -#define MAX_KCS_WRITE_SIZE 80 +#define MAX_KCS_READ_SIZE IPMI_MAX_MSG_LENGTH +#define MAX_KCS_WRITE_SIZE IPMI_MAX_MSG_LENGTH /* Timeouts in microseconds. */ #define IBF_RETRY_TIMEOUT 1000000 _ Patches currently in -mm which might be from minyard@xxxxxxx are ipmi-fix-device-model-name.patch ipmi-remove-interface-number-limits.patch ipmi-pass-sysfs-name-from-lower-level-driver.patch ipmi-allow-hot-system-interface-remove.patch ipmi-add-maintenance-mode.patch ipmi-fix-request-events.patch ipmi-add-poll-delay.patch ipmi-system-interface-hotplug.patch ipmi-add-pigeonpoint-poweroff.patch ipmi-fix-pci-warning.patch ipmi-fix-bt-long-busy.patch ipmi-increase-kcs-message-size.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html