hpilo: reduce frequency of IO operations
Change hpilo open and close logic to spin for 10usec between checking device, rather than every usec. Because the loop is coded to take up to 10ms, it seemed prudent to increase the interval between polling the device, to reduce the load on the system and allow more other work to happen. Signed-off-by: David Altobelli <david.altobelli@hp.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
63cd885426
commit
891f7d73ea
@@ -19,8 +19,12 @@
|
||||
#define MAX_ILO_DEV 1
|
||||
/* max number of files */
|
||||
#define MAX_OPEN (MAX_CCB * MAX_ILO_DEV)
|
||||
/* total wait time in usec */
|
||||
#define MAX_WAIT_TIME 10000
|
||||
/* per spin wait time in usec */
|
||||
#define WAIT_TIME 10
|
||||
/* spin counter for open/close delay */
|
||||
#define MAX_WAIT 10000
|
||||
#define MAX_WAIT (MAX_WAIT_TIME / WAIT_TIME)
|
||||
|
||||
/*
|
||||
* Per device, used to track global memory allocations.
|
||||
|
Reference in New Issue
Block a user