2012-05-30 01:44:06

by Asai Thambi SP

[permalink] [raw]
Subject: [PATCH 08/11] mtip32xx: minor performance tweak


When checking for command completions if the register value is zero, proceed
to next register.

Signed-off-by: Asai Thambi S P <[email protected]>
---
drivers/block/mtip32xx/mtip32xx.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c
index acc1d6f..d0fa357 100644
--- a/drivers/block/mtip32xx/mtip32xx.c
+++ b/drivers/block/mtip32xx/mtip32xx.c
@@ -970,6 +970,8 @@ static inline void mtip_process_sdbf(struct driver_data *dd)
/* walk all bits in all slot groups */
for (group = 0; group < dd->slot_groups; group++) {
completed = readl(port->completed[group]);
+ if (!completed)
+ continue;

/* clear completed status register in the hardware.*/
writel(completed, port->completed[group]);
--
1.7.1