Re: powerpc: hv{cs,si}_close() both unsigned hp->count and hvcsd->open_countcannot be negative

From: roel kluin
Date: Sat Nov 29 2008 - 08:27:31 EST


Andreas Schwab wrote:
> roel kluin <roel.kluin@xxxxxxxxx> writes:
>
>> - if (--hvcsd->open_count == 0) {
>> + if (hvcsd->open_count == 1) {
>> + hvcsd->open_count--;
>
> This is not the same.

I think you're missing that I also decrement if (hvcsd->open_count > 1)
If not, please elaborate.

>
>> - if (--hp->count == 0) {
>> + if (hp->count == 1) {
>> + hp->count--;
>
> Likewise.

Same here.

Roel
--
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/