Re: [PATCH] dz: test after postfix decrement fails in dz_console_putchar()

From: Johannes Weiner
Date: Wed Apr 09 2008 - 09:42:01 EST


Hi,

Roel Kluin <12o3l@xxxxxxxxxx> writes:

> When loops reaches 0 the postfix decrement still subtracts, so the test fails
>
> Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx>
> ---
> diff --git a/drivers/serial/dz.c b/drivers/serial/dz.c
> index 116211f..0dddd68 100644
> --- a/drivers/serial/dz.c
> +++ b/drivers/serial/dz.c
> @@ -819,7 +819,7 @@ static void dz_console_putchar(struct uart_port *uport, int ch)
> dz_out(dport, DZ_TCR, mask);
> iob();
> udelay(2);
> - } while (loops--);
> + } while (--loops);

It will run loops + 1 times. After your change it does run loops times.

> if (loops) /* Cannot send otherwise. */
> dz_out(dport, DZ_TDR, ch);

The intention was probably that this gets executed if the break in the
loop (trdy == dport->port.line) is reached. Without your fix, this
branch is also taken if the while-loop terminates with loops == -1
because of the postfix dec.

Your fix is correct but your changelog entry is wrong.

Hannes
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/