David Gibson
5826cade43
[PATCH] ibmveth: Fix index increment calculation
...
On Thu, Oct 12, 2006 at 06:22:14PM +1000, David Gibson wrote:
> Your recent ibmveth commit, 751ae21c6cd1493e3d0a4935b08fb298b9d89773
> ("fix int rollover panic"), causes a rapid oops on my test machine
> (POWER5 LPAR).
>
> I've bisected it down to that commit, but am still investigating the
> cause of the crash itself.
Found the problem, I believe: an object lesson in the need for great
caution using ++.
[...]
@@ -213,6 +213,7 @@ static void ibmveth_replenish_buffer_poo
}
free_index = pool->consumer_index++ % pool->size;
+ pool->consumer_index = free_index;
index = pool->free_map[free_index];
ibmveth_assert(index != IBM_VETH_INVALID_MAP);
Since the ++ is used as post-increment, the increment is not included
in free_index, and so the added line effectively reverts the
increment. The produced_index side has an analagous bug.
The following change corrects this:
The recent commit 751ae21c6cd1493e3d0a4935b08fb298b9d89773 introduced
a bug in the producer/consumer index calculation in the ibmveth driver
- incautious use of the post-increment ++ operator resulted in an
increment being immediately reverted. This patch corrects the logic.
Without this patch, the driver oopses almost immediately after
activation on at least some machines.
Signed-off-by: David Gibson <dwg@au1.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2006-10-21 14:34:21 -04:00
..
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 07:01:25 -04:00
2006-10-10 16:15:33 -07:00
2006-10-05 15:10:12 +01:00
2006-10-21 14:08:24 -04:00
2006-10-11 03:58:26 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-10 16:29:37 -07:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-06 14:56:04 -04:00
2006-10-11 04:07:45 -04:00
2006-10-21 14:08:24 -04:00
2006-10-17 13:47:40 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 14:30:00 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-09-13 13:24:59 -04:00
2006-10-06 14:56:04 -04:00
2006-09-13 13:24:59 -04:00
2006-10-07 10:51:14 -07:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-11 03:56:33 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-06 14:56:04 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-08 12:32:36 -07:00
2006-09-13 13:24:59 -04:00
2006-10-20 10:26:35 -07:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-06 15:03:04 -04:00
2006-10-06 14:56:04 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-08-19 17:40:16 -04:00
2006-10-11 11:14:23 -07:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-06-25 17:43:33 -07:00
2006-10-11 03:56:12 -04:00
2006-09-13 14:30:00 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-07-02 13:58:51 -07:00
2006-10-05 15:10:12 +01:00
2006-10-21 14:34:21 -04:00
2006-08-01 16:19:15 +10:00
2006-10-03 08:04:19 -07:00
2006-10-21 14:20:02 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-21 14:09:51 -04:00
2006-10-06 14:56:04 -04:00
2006-10-06 20:47:23 -06:00
2006-09-13 13:24:59 -04:00
2006-10-20 00:32:41 -07:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-22 20:15:30 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-20 10:40:48 -07:00
2006-06-30 18:25:18 +02:00
2006-10-17 19:28:51 -07:00
2006-10-17 19:28:51 -07:00
2006-06-23 23:16:09 -07:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 14:30:00 -04:00
2006-09-27 08:26:19 -07:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-06 14:56:04 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-21 11:46:22 +10:00
2006-09-13 13:24:59 -04:00
2006-09-28 18:01:44 -07:00
2006-10-05 15:10:12 +01:00
2006-09-24 20:07:48 -07:00
2006-10-21 14:16:11 -04:00
2006-09-13 14:30:00 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-10 16:15:34 -07:00
2006-10-06 14:56:04 -04:00
2006-09-13 13:24:59 -04:00
2006-10-06 14:56:04 -04:00
2006-10-21 14:20:01 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-11 04:06:09 -04:00
2006-10-11 04:06:09 -04:00
2006-10-21 14:08:24 -04:00
2006-10-17 10:24:25 -07:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-07 10:51:15 -07:00
2006-10-21 14:08:24 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-10-02 19:46:18 -07:00
2006-10-11 04:04:27 -04:00
2006-10-11 04:04:27 -04:00
2006-10-11 04:04:27 -04:00
2006-10-05 15:10:12 +01:00
2006-09-27 15:41:24 +09:00
2006-10-11 11:17:06 -07:00
2006-09-13 13:24:59 -04:00
2006-10-11 11:17:06 -07:00
2006-10-17 19:28:51 -07:00
2006-06-23 23:16:02 -07:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-06 14:56:04 -04:00
2006-06-30 19:25:36 +02:00
2006-10-06 14:56:04 -04:00
2006-10-06 14:56:04 -04:00
2006-10-05 15:10:12 +01:00
2006-10-18 20:56:06 -07:00
2006-09-28 18:01:42 -07:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-02 07:57:14 -07:00
2006-09-13 13:24:59 -04:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-10-21 14:09:51 -04:00
2006-10-21 14:09:51 -04:00
2006-10-21 14:09:51 -04:00
2006-10-21 14:09:51 -04:00
2006-10-05 15:10:12 +01:00
2006-10-05 15:10:12 +01:00
2006-09-13 13:24:59 -04:00
2006-09-13 13:24:59 -04:00
2006-10-06 14:56:04 -04:00
2006-10-06 14:56:04 -04:00
2006-07-02 13:58:51 -07:00