diff options
author | Max Asbock <masbock@us.ibm.com> | 2005-06-21 20:16:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 22:07:34 -0400 |
commit | f5ccc842318efcd7c05dee3203dfdbbafae47bd6 (patch) | |
tree | 5c14043ac9cdef239e38c3530d2ec1855fdadb73 /drivers/misc/ibmasm | |
parent | 2b071886170df456e230c38a3e504da4a11fff79 (diff) |
[PATCH] ibmasm driver: fix command buffer size
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 <masbock@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/misc/ibmasm')
-rw-r--r-- | drivers/misc/ibmasm/ibmasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/ibmasm/ibmasm.h b/drivers/misc/ibmasm/ibmasm.h index 6fec7fd8cd1a..1e83406382e7 100644 --- a/drivers/misc/ibmasm/ibmasm.h +++ b/drivers/misc/ibmasm/ibmasm.h | |||
@@ -52,7 +52,7 @@ | |||
52 | #define IBMASM_CMD_TIMEOUT_NORMAL 45 | 52 | #define IBMASM_CMD_TIMEOUT_NORMAL 45 |
53 | #define IBMASM_CMD_TIMEOUT_EXTRA 240 | 53 | #define IBMASM_CMD_TIMEOUT_EXTRA 240 |
54 | 54 | ||
55 | #define IBMASM_CMD_MAX_BUFFER_SIZE 0x4000 | 55 | #define IBMASM_CMD_MAX_BUFFER_SIZE 0x8000 |
56 | 56 | ||
57 | #define REVERSE_HEARTBEAT_TIMEOUT 120 | 57 | #define REVERSE_HEARTBEAT_TIMEOUT 120 |
58 | 58 | ||