Skip to content

Commit

Permalink
[PATCH] ibmasm driver: fix command buffer size
Browse files Browse the repository at this point in the history
First of a series of patches for the ibmasm driver.  (that is the driver for
the IBM xSeries RSA service processor)

To summarize what they do:

[1] change a #define for the buffer size for commands

[2] Fix a bug where threads in the event handling code calling
    wait_event_interruptible() weren't woken up as expected.

[3] Redesigned how remote mouse and keyboard events received by the driver
    are handled.

[4] Fixed a race in the command reference counting logic.

This patch:

- change a #define for the buffer size for commands

Signed-off-by: Max Asbock <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Max Asbock authored and Linus Torvalds committed Jun 22, 2005
1 parent 2b07188 commit f5ccc84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/misc/ibmasm/ibmasm.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
#define IBMASM_CMD_TIMEOUT_NORMAL 45
#define IBMASM_CMD_TIMEOUT_EXTRA 240

#define IBMASM_CMD_MAX_BUFFER_SIZE 0x4000
#define IBMASM_CMD_MAX_BUFFER_SIZE 0x8000

#define REVERSE_HEARTBEAT_TIMEOUT 120

Expand Down

0 comments on commit f5ccc84

Please sign in to comment.