Skip to content

Commit 380665b

Browse files
vijaykhemkacminyard
authored andcommitted
drivers: ipmi: Modify max length of IPMB packet
As per IPMB specification, maximum packet size supported is 255, modified Max length to 240 from 128 to accommodate more data. Signed-off-by: Vijay Khemka <[email protected]> Message-Id: <[email protected]> Signed-off-by: Corey Minyard <[email protected]>
1 parent 042f057 commit 380665b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/char/ipmi/ipmb_dev_int.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <linux/spinlock.h>
2020
#include <linux/wait.h>
2121

22-
#define MAX_MSG_LEN 128
22+
#define MAX_MSG_LEN 240
2323
#define IPMB_REQUEST_LEN_MIN 7
2424
#define NETFN_RSP_BIT_MASK 0x4
2525
#define REQUEST_QUEUE_MAX_LEN 256

0 commit comments

Comments
 (0)